Message 1 of 5
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
I have used ^C^C_model macro with keyboard hotkey for switching to model tab from layout tab. This worked with ACAD LT 2014, but now with ACAD 2018 I get message "Start tab is currently turned off". I have turned start tab off on purpose. Is there any other macro I could use to jump from layout tab to model tab?
I also found this lisp code but don't know how to apply it to keyboard shortcut. I would like to use macro primarily if there is one. But also would like to know how to bind lisp to keyboard shortcut.
(defun C:TI ()
(if (= 0 (getvar "tilemode"))
(setvar "tilemode" 1)
(setvar "tilemode" 0)
)
(princ))
AutoCAD 2025
Solved! Go to Solution.