Jump to content

Layout Tab Management / Index


Cad_User

Recommended Posts

Hi,

 

I create lots of layout tabs with long (ish) names. To save scrolling through the tabs using the arrow buttons to select the one I want, is there a way to generate an index tab so all tabs are listed on it and can be selected from that "index" Tab/list?

 

Thanks,

Link to comment
Share on other sites

The variable CTAB is current layout tab so jumps to that layout, you could do a lisp and have a dialouge with tab names and just pick usefull when off the screen.

 

(setvar "ctab" "D22")
Simple 2nd choice
(defun C:got ()
(setq ans (getstring "\nenter tab name"))
(setvar "CTAB" ans)
)

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