Jump to content

Recommended Posts

Posted

Hi all,

 

As I am a keyboard-shortcut-lover I was wondering if it's possible to close the layer-manager with a typing command? I know you can open it with "LA". Anybody knows if you can close it in a similar way?

 

Thank you very much

Posted

The escape-button doesn't work but meanwhile I found it though. You can close the layermanager by typing "layerclose" (quite logic, I just didn't find out right away). By making a shortcut in the pqg-file, you don't have to type the whole word.

 

Thanks for your quick response eldon!

Posted

It must a version difference.

 

When I have my Layer Properties Manager dialogue box open, the command line is disabled, hence the use of the Escape key :o

Posted
It must a version difference.

 

In the newer versions, it depends on which manager you have open. If you have the LAYER manager open, the Esc key will not close it. But if you have the CLASSICLAYER manager open, the Esc key will close it.

Posted

Alt+F4 works for the layermanager, not if using the layerproperties palette.

Posted

Little toggle LISP:

 

(defun c:LA (/)
 (if (zerop (getvar 'layermanagerstate))
   (progn
     (initdia)
     (command "_.layer")
   )
   (command "_.layerclose")
 )
 (princ)
)

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