Author Topic: Appload  (Read 2278 times)

0 Members and 1 Guest are viewing this topic.

Luke

  • Guest
Appload
« on: April 24, 2007, 10:58:48 AM »
Full Version Vanilla AutoCAD 2008.

I feel like I should know this...
Is there a way to APPLOAD from the command line? 

I don't want the pop up menu.  I want to create a button to load a lisp, run the lisp and update the fields I select in the drawing. 

Dinosaur

  • Guest
Re: Appload
« Reply #1 on: April 24, 2007, 11:02:45 AM »
assuming your routine is in the search path

(load"your_routine")

deegeecees

  • Guest
Re: Appload
« Reply #2 on: April 24, 2007, 11:10:44 AM »
Put this in the button:

(load"yourLisp");(yourCommand)

or if you have created a command:

(load"yourLisp");yourCommand

Luke

  • Guest
Re: Appload
« Reply #3 on: April 24, 2007, 11:26:40 AM »
That did it.  Thanks!

deegeecees

  • Guest
Re: Appload
« Reply #4 on: April 24, 2007, 11:41:27 AM »
No problem whatsoever.

 :-)