CNCzone.com-The Largest Machinist Community on the net!



Home Page Mark Forums Read Today's Posts My Replies Classifieds Reviews Photo Gallery Web Links Share Files Advertise With Us Ad List
Go Back   CNCzone.com-The Largest Machinist Community on the net! > CAD Software > Autodesk Software (Autocad, Inventor etc)


Autodesk Software (Autocad, Inventor etc) Discuss Autodesk Software (Autocad, Inventor etc) software here.


This forum is sponsored by:

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Ban this user!
Old 04-22-2009, 10:45 AM
 
Join Date: Feb 2006
Location: USA
Posts: 72
NIL8r is on a distinguished road
Need help writing Script for AC2006 -LT

I'm trying to load a series of DXF files contained in one folder into AutoCad 2006 LT. I'm thinking that a script file would be the best way to get this done.
Because all of the DXF files are created with a corner at x0,y0 I'd like to also step each location so the files don't overlap.

Can someone help point me in the right location with commands?
I've tried using the _insert command, but I'm not sure of the format.
Reply With Quote

  #2  
Old 04-22-2009, 12:43 PM
ger21's Avatar
Community Moderator
 
Join Date: Mar 2003
Location: Shelby Twp, MI....USA
Posts: 20,441
ger21 is on a distinguished road
Buy me a Beer?

You want to merge all the files together? Not sure if you can do that. You might have to copy and paste the contents into a new drawing.
__________________
Gerry

Mach3 2010 Screenset
http://home.comcast.net/~cncwoodworker/2010.html

(Note: The opinions expressed in this post are my own and are not necessarily those of CNCzone and its management)
Reply With Quote

  #3   Ban this user!
Old 04-22-2009, 01:32 PM
 
Join Date: Feb 2006
Location: USA
Posts: 72
NIL8r is on a distinguished road

Creating a new file would be fine. I just would like to import the DXF files so that they are all in one location instead of a bunch of small DXF files.

I was going to use the "_insert" command, but I've only written very basic scripts. I'm not familiar with the command format for this and also need to perform a step over for each file that will be imported.

Any ideas?
Reply With Quote

  #4  
Old 04-22-2009, 07:35 PM
ger21's Avatar
Community Moderator
 
Join Date: Mar 2003
Location: Shelby Twp, MI....USA
Posts: 20,441
ger21 is on a distinguished road
Buy me a Beer?

insert drawing1 2,3 1 1 0

drawing1 = filename
2,3 is insertion point
1 = X scale
1 = Y scale
0 = Rotation angle

There must be a space at the end to complete the command. The space is like hitting "enter".

One thing, though. Insert gives you blocks, which you may need to explode?? I don't use scripts, so can't give you much more help. I just spent a few minutes in the help file to figure out the example I posted.
__________________
Gerry

Mach3 2010 Screenset
http://home.comcast.net/~cncwoodworker/2010.html

(Note: The opinions expressed in this post are my own and are not necessarily those of CNCzone and its management)
Reply With Quote

  #5   Ban this user!
Old 04-22-2009, 11:35 PM
 
Join Date: Feb 2006
Location: USA
Posts: 72
NIL8r is on a distinguished road

Thanks for the reply. I was able to find that in the help menu as well.
I couldn't figure out how to pull each file from the directory to import it automatically within a script file.
In the end, I created a program in BASIC to print each file name and automatically step the position using variables and output the result to a file with an SCR extension. I then ran the new script file in AutoCad.

The BASIC generated output script file read something like this:
insert file1.dxf 0,0 1 1 0
insert file2.dxf 0.5,0 1 1 0
insert file3.dxf 1,0 1 1 0
etc.

Thanks for the help.
Reply With Quote

Sponsored Links
Reply




Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Writing Nc Script For Haas Vf SCQ BobCad-Cam 7 05-04-2012 04:35 PM
Newbie- VB6,VB.net,VB script,What one??? hydrospin01 Visual Basic 11 05-24-2008 08:09 PM
Lookahead script Rikard L Visual Basic 2 09-11-2007 01:28 PM
Lookahead Script Rikard L General CNC (Mill and Lathe) Control Software (NC) 0 09-10-2007 02:06 PM
Backup Script.. Rekd Mastercam 3 09-11-2003 09:34 AM




All times are GMT -5. The time now is 11:39 AM.





Powered by vBulletin® Version 3.8.7
Copyright ©2000 - 2012, vBulletin Solutions, Inc.
Content Relevant URLs by vBSEO
Template-Modifications by TMS

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361