Jump to content

Display of dialog box


MURAl_KMD

Recommended Posts

Which autocad variable controls the display of dialog box display

when we use below autolisp codes

(note: for most commands which displays dialogs box used at command prompt)

 

(command "._layer" ......)
(command "._rename" ......)
& so on

 

 

Thank you in advance

Link to comment
Share on other sites

Thank you Dadgad

If i am not wrong, CMDECHO is not the reason for the issue.

 

Once a faced problem that most of the lisp programs not working, and traced out that the programs

having commands which open dialogs doesn't work. - example : (command "._layer" ....)

After doing "Reset Settings to Default" issue was cleared.

Not able to find the actual system variable.

Link to comment
Share on other sites

FILEDIA is what you looking for

but it is better to add - next to command

(command "_.[b]-[/b]layer" ......)
(command "_.[b]-[/b]rename" ......)

instead of

(command "._layer" ......)
(command "._rename" ......)

Link to comment
Share on other sites

May be this issue due to some bug.

 

Is there any way to display dialog box while we type following at command prompt.

(command "._layer")
or
(command "._rename")

 

 

FILEDIA and CMDDIA doesn't do this

 

Already i started to practice

(command "_.-layer" ......)

(command "_.-rename" ......)

 

 

Thank you Roy and asos

Link to comment
Share on other sites

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...