.dwg to .dwt script file problems
.dwg to .dwt script file problems
(OP)
I dont knormally have a problem with script files but this one is messing me around. I want to open a file and save it under a diffent file type. EG: .DWG to .DWT
An extract of my script flie looks like this but its the last bit after the zoom extents thats messing me around.
open c:\Temp\New\A2sa.dwg zoom e
open c:\Temp\New\A2vic.dwg zoom e
open c:\Temp\New\A2wa.dwg zoom e
open c:\Temp\New\A3bang.dwg zoom e
open c:\Temp\New\A3nsw.dwg zoom e
An extract of my script flie looks like this but its the last bit after the zoom extents thats messing me around.
open c:\Temp\New\A2sa.dwg zoom e
open c:\Temp\New\A2vic.dwg zoom e
open c:\Temp\New\A2wa.dwg zoom e
open c:\Temp\New\A3bang.dwg zoom e
open c:\Temp\New\A3nsw.dwg zoom e





RE: .dwg to .dwt script file problems
The extension .DWT is used for template files, however, your script doesn't indicate that you are attempting to open such a file, but a .dwg file. So, what's the problem?
RE: .dwg to .dwt script file problems
Try this in your script:
fileopen <drawing.dwg>
saveas Template <enter key>
Good luck