Cad_User Posted January 17, 2013 Posted January 17, 2013 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, Quote
KFW Posted January 17, 2013 Posted January 17, 2013 Try "Tabsort" by Lee-Mac, that's what i use. Quote
Cad_User Posted January 17, 2013 Author Posted January 17, 2013 Thanks guys, That's a pretty nifty lisp tool! Quote
BIGAL Posted January 18, 2013 Posted January 18, 2013 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) ) Quote
Recommended Posts
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.