Load .vlx in autocad startup

Load .vlx in autocad startup

Angelswing91
Contributor Contributor
8,365 Views
4 Replies
Message 1 of 5

Load .vlx in autocad startup

Angelswing91
Contributor
Contributor

Hi all, 

 

It seems i have a problem... in my autocad map 3D not working Appload (i think it was disabled), all my LISP files loaded in CUI, but there i can load only lisp files. 

I have few .vlx files from internet, so i can't load it. I found a way create a lisp, in the same location (command "load" "addv.vlx"), but for for all .vlx and i don't know why... 

Any suggestions how i can fix it, or anybody knows more options to load .vlx on startup?

8,366 Views
4 Replies
Replies (4)
Message 2 of 5

CodeDing
Advisor
Advisor

@Angelswing91 ,

 

Here's the method I recommend.

Open your acaddoc.lsp file (this will help you open it).

(startapp "notepad" (findfile "acaddoc.lsp"))

Then, add your .vlx files to be loaded within your acaddoc.lsp file.

(load "MyFile.vlx" "\nThere was an error loading MyFile.")

Now, these .vlx files will be loaded every time you open a drawing automatically.

 

Best,

~DD

0 Likes
Message 3 of 5

Sea-Haven
Mentor
Mentor

have you tried Appload and add the vlx to the "start up suite"

Message 4 of 5

vladimir_michl
Advisor
Advisor

It is not (command "load" file... but just (load file...

Also the APPLOAD cannot be easily "disabled" - try ._APPLOAD and just drag the VLX file to its briefcase icon.

 

Vladimir Michl, www.cadstudio.cz - www.cadforum.cz

 

0 Likes
Message 5 of 5

pbejse
Mentor
Mentor

@Angelswing91 wrote:

I have few .vlx files from internet, so i can't load it...


Does it say Unable to load addv.VLX file? or nothing at all? if its the former, one time or another the user selected "Do Not Load" when give the security warning AND secureload system variable is 1.

 

crocodile.png

 

Turn SECURELOAD to 0 OR re-compile the VLX file and click Always load upon apploading.

 

HTH