Author Topic: DCL file question  (Read 2424 times)

0 Members and 1 Guest are viewing this topic.

TJAM51

  • Guest
DCL file question
« on: September 10, 2004, 11:17:24 AM »
If I had the following button how could I get this to load a lisp rotuine or if the routine was already loaded how could it propmt for the command of the lisp routine?


: button {
                label = "Insert Block";
                key = "insert";
                fixed_width = true;
                width = 8;
                mnemonic = "I";
                is_tab_stop = true;

Keith™

  • Villiage Idiot
  • Seagull
  • Posts: 16899
  • Superior Stupidity at its best
DCL file question
« Reply #1 on: September 10, 2004, 11:28:36 AM »
That is not handled in the DCL it is handled in the LISP by using "action_tile" as such ...

Code: [Select]

(action_tile "insert" "(do_this_command)")
Proud provider of opinion and arrogance since November 22, 2003 at 09:35:31 am
CadJockey Militia Field Marshal

Find me on https://parler.com @kblackie

Craig

  • Guest
DCL file question
« Reply #2 on: September 10, 2004, 12:30:53 PM »
TJAM, Keith is correct. Do realize all the DCL file is nothing but a pretty little user interface that combines mutliple items/selections that usually wouldn't work scrolling across the command line.  The LISP is what actually does all the work.

TJAM51

  • Guest
DCL file question
« Reply #3 on: September 10, 2004, 12:32:41 PM »
Understand and thanks :D