Author Topic: I'm in 2006, but I wanna AutoSAVE to 2002....  (Read 3347 times)

0 Members and 1 Guest are viewing this topic.

SaMo2

  • Guest
I'm in 2006, but I wanna AutoSAVE to 2002....
« on: November 17, 2005, 04:20:15 PM »
We just got ACAD2006 installed here at the office, but we still have a lot of consultants that don't.
-
I know that in ACAD2002, it saved to an earlier version as a default.
Is there some sort of LISP or other macro that could automate ACAD2006, so that we one saves or saves as, it saves it back to ACAD2002 format?
-
I understand that I could go to FILE>EXPORT TO AUTOCAD> and then choose 2002, but I was hoping for something more automatic and seamless so that one does not even have to think about it.

Does anyone know if this is possible? Thanks.

Just curious.

-SaMo2

David Hall

  • Automatic Duh Generator
  • King Gator
  • Posts: 4076
Re: I'm in 2006, but I wanna AutoSAVE to 2002....
« Reply #1 on: November 17, 2005, 04:22:28 PM »
options, open & save, set to acad2000
Everyone has a photographic memory, Some just don't have film.
They say money can't buy happiness, but it can buy Bacon and that's a close second.
Sometimes the question is more important than the answer. (Thanks Kerry for reminding me)

deegeecees

  • Guest
Re: I'm in 2006, but I wanna AutoSAVE to 2002....
« Reply #2 on: November 17, 2005, 04:25:17 PM »
Quote
Does anyone know if this is possible? Thanks.

Yes. Yes it is possible.






 :evil:

SaMo2

  • Guest
Re: I'm in 2006, but I wanna AutoSAVE to 2002....
« Reply #3 on: November 17, 2005, 04:27:52 PM »
options, open & save, set to acad2000

Wow... that was easy....

Have you had much difficulty with PROXY GRAPHICS not showing up when the 2002 people try to use the 2006 drawing that has been "dumbed down" for their use?

MP

  • Seagull
  • Posts: 17750
  • Have thousands of dwgs to process? Contact me.
Re: I'm in 2006, but I wanna AutoSAVE to 2002....
« Reply #4 on: November 17, 2005, 04:29:42 PM »
If I understand correctly all you have to do is go into Options, Open and Save tab, and select "AutoCAD 2000/LT 2000 Drawing (*.dwg)"

Lisp wise it would be --

Code: [Select]
(vla-put-saveastype
    (vla-get-opensave
        (vla-get-preferences
            (vlax-get-acad-object)
        )
    )   
    ac2000_dwg
)
Engineering Technologist • CAD Automation Practitioner
Automation ▸ Design ▸ Drafting ▸ Document Control ▸ Client
cadanalyst@gmail.comhttp://cadanalyst.slack.comhttp://linkedin.com/in/cadanalyst

Bob Wahr

  • Guest
Re: I'm in 2006, but I wanna AutoSAVE to 2002....
« Reply #5 on: November 17, 2005, 04:35:57 PM »
options, open & save, set to acad2000

Wow... that was easy....

Have you had much difficulty with PROXY GRAPHICS not showing up when the 2002 people try to use the 2006 drawing that has been "dumbed down" for their use?
No.  Autocad 2006 doesn't do anything that needs to be proxied for 2000.  ADT still will but the object enablers will enable the objects as per usual.

Serge J. Gianolla

  • Guest
Re: I'm in 2006, but I wanna AutoSAVE to 2002....
« Reply #6 on: November 17, 2005, 04:39:44 PM »
Careful though, it is called saveas and that is all it does. Sometimes users are under the impression it does more, for instance making a WBlock will be saved in the current format regardless of the settings in dialogue box options. If you have xrefs attached to your drawings too, I think recalling that only the host dwg is saved to specified format - not the attached ones! Don't have 2000, cannot check it anymore.

deegeecees

  • Guest
Re: I'm in 2006, but I wanna AutoSAVE to 2002....
« Reply #7 on: November 17, 2005, 05:02:55 PM »
Lest we forget "Refedit" as well. It will save to the current version when you accept the changes. I "was" working on a project that would keep a runnig text file of the refedit dwgs and objectdbx them back into submission (2000), but I scrubbed it when I changed jobs this summer.

Note to self:
*Dig that out, it could be useful*

SaMo2

  • Guest
Re: I'm in 2006, but I wanna AutoSAVE to 2002....
« Reply #8 on: November 17, 2005, 05:44:24 PM »
Well, here's an update...
After I changed the settings in the Open&Save Dialog, I now get the following message when I try to save (to 2000 format I reckon):

!
Saving AEC objects to a previous version file format is not supported. This is because previous versions are unaware of changes in future versions due to file format and object functionality changes.
They can be viewed in the previous version if Proxy Graphics are enabled, but the AEC commands will be disabled.
You can also utilize the Export To AutoCAD functionality from the original authoring application to save this drawing to AutoCAD-only objects.
!


What tha F*!@ is that supposed to mean!?!?

It lets me click one button, the OK button, after that.
Also it gives me an option of "Do Not Show Me This Again" but I am afraid to click that...

It sounds ominous... how can I be sure that I am not screwing something up here?

-SaMo2

Serge J. Gianolla

  • Guest
Re: I'm in 2006, but I wanna AutoSAVE to 2002....
« Reply #9 on: November 17, 2005, 05:52:02 PM »
Where are these AEC objects coming from, you mentioned AutoCAD 2006 earlier on? Are you using vanilla AutoCAD?
Safe bet, make copy of your file, then try if loss of objects... happens!

Bob Wahr

  • Guest
Re: I'm in 2006, but I wanna AutoSAVE to 2002....
« Reply #10 on: November 17, 2005, 05:56:07 PM »
Yeah, I forgot about that.  Save in 2004 format.  When you need to give your drawings to r2000 consultants, save a copy for them because chances are that they don't care about your ADT objects anyway.

ronjonp

  • Needs a day job
  • Posts: 7531
Re: I'm in 2006, but I wanna AutoSAVE to 2002....
« Reply #11 on: November 17, 2005, 05:57:22 PM »
Quote
No.  Autocad 2006 doesn't do anything that needs to be proxied for 2000.  ADT still will but the object enablers will enable the objects as per usual.

I think tables will turn to proxy entities when saved back.

Windows 11 x64 - AutoCAD /C3D 2023

Custom Build PC

MP

  • Seagull
  • Posts: 17750
  • Have thousands of dwgs to process? Contact me.
Re: I'm in 2006, but I wanna AutoSAVE to 2002....
« Reply #12 on: November 17, 2005, 05:58:41 PM »
Code: [Select]
(vla-put-saveastype
    (vla-get-opensave
        (vla-get-preferences
            (vlax-get-acad-object)
        )
    )   
    ac2004_dwg
)

Engineering Technologist • CAD Automation Practitioner
Automation ▸ Design ▸ Drafting ▸ Document Control ▸ Client
cadanalyst@gmail.comhttp://cadanalyst.slack.comhttp://linkedin.com/in/cadanalyst

Bob Wahr

  • Guest
Re: I'm in 2006, but I wanna AutoSAVE to 2002....
« Reply #13 on: November 17, 2005, 06:04:41 PM »
I think tables will turn to proxy entities when saved back.
I stand corrected, I don't use tables so I forgot about them.  Thanks.

sinc

  • Guest
Re: I'm in 2006, but I wanna AutoSAVE to 2002....
« Reply #14 on: November 17, 2005, 06:20:49 PM »
!
Saving AEC objects to a previous version file format is not supported. This is because previous versions are unaware of changes in future versions due to file format and object functionality changes.
They can be viewed in the previous version if Proxy Graphics are enabled, but the AEC commands will be disabled.
You can also utilize the Export To AutoCAD functionality from the original authoring application to save this drawing to AutoCAD-only objects.
!


What tha F*!@ is that supposed to mean!?!?

That's simply a reminder that if you send the drawing to someone else and they say "I can't see <some feature or other>, it's missing from the drawing!", then you should ask them "Do you have PROXYSHOW set to 1?"
 ^-^