Jump to content

Is there a way to determine (by lisp) if a command is in progress?


Recommended Posts

Posted

Hello,

 

Is there a way to determine (by lisp) if a command is in progress?

I want to make a macro that can do either the first thing (if a command is in progress) or or the second thing if there is no command in progress.

 

TNx.

Posted

Cmdactive maybe?

(if (> (getvar 'CmdActive) 0))
     (do first);if True
     (do second);if nil
)

You'll probably run into problems if you try and execute functions/commands while a command is active.

Posted

YOu mean like this:

 

 

(if (> (getvar 'CmdActive) 0)
     (do first);if True
     (do second);if nil
)

 

 

Thank you. I will try and post my reaction soon.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Unfortunately, your content contains terms that we do not allow. Please edit your content to remove the highlighted words below.
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...