Display full version of the post: Is there a FRAME default to set at 0 all the time?

AmarARCH
15.08.2012, 14:17


Wondering if there's an ability to set my default value of FRAME (or IMAGEFRAME) to zero all the time. Since upgrading to AutoCAD 2013, the default is 3, which makes the frames show but not print. Makes the screen far busier than it needs to be, especially if I've XCLIP blocks, etc. on an elevation, for example. In order to make them go away, I have to take the extra second or second-and-a-half to make it go away. Yes, that sounded extreeeeemely lazy, but with design a lot of stuff has to happen when you need it quickest and not after you've jumped through a hoop or two.

John Connor
15.08.2012, 18:28
Would this work?

Normal
0


false
false
false







MicrosoftInternetExplorer4






/* Style Definitions */
table.MsoNormalTable
{mso-style-name:"Table Normal";
mso-tstyle-rowband-size:0;
mso-tstyle-colband-size:0;
mso-style-noshow:yes;
mso-style-parent:"";
mso-padding-alt:0in 5.4pt 0in 5.4pt;
mso-para-margin:0in;
mso-para-margin-bottom:.0001pt;
mso-pagination:widow-orphan;
font-size:10.0pt;
font-family:"Times New Roman";
mso-ansi-language:#0400;
mso-fareast-language:#0400;
mso-bidi-language:#0400;}

(defun c:frm ( / )

   (command “_frame”  “1”)

)




AmarARCH
15.08.2012, 18:53


I'm not sure what advice you're offering, John. You mean for me to enter all of that into my CAD?? I can manually change the value to 0, but I'm looking for a default setting to keep it at 0 at all times.

John Connor
15.08.2012, 19:46

It's small lisp routine.  Any number of ways to load it.FRAME & IMAGEFRAME are both system variables that are saved with a drawing.  It's not like it is saved in the Registry.John Connor2012-08-15 19:49:48

AmarARCH
15.08.2012, 19:56


I guess I'm not grasping the concept.. So how do you recommend I enter this information to potentially correct my FRAME quandry?

John Connor
15.08.2012, 23:35

The concept is to use a lisp routine to set the system variable for you.How to auto load a lisp routine:http://www.lee-mac.com/autoloading.htmlJohn Connor2012-08-15 23:51:32

AmarARCH
16.08.2012, 00:09


AutoCAD 2013? Lisp are not allowed.

heinsite
16.08.2012, 04:06
[QUOTE=AmarARCH] AutoCAD 2013? Lisp are not allowed.[/QUOTE]


 
LISP routines can be loaded and run in the full version of AutoCAD, but it sounds like you may be running AutoCAD LT?  If so, LT does not let you load and run LISP routines.  You would have to modify the startup file or do what you want with a script if that's the case.
 
Dave.

John Connor
16.08.2012, 12:15

Your profile and your question both mention AutoCAD 2013.  Neither one say it is the "LT" version so I assumed you were running the full version.If you are running AutoCAD LT then you might have to look at using a diesel macro.

John Connor2012-08-16 12:16:43

AmarARCH
16.08.2012, 16:23


Dave & John, thanks.. Yeah, looks like I need to add those two letters to my profile description ("LT"). I appreciate the help. I'll look into diesel macros, John. Thanks, guys!