Message 1 of 11
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
The following is going to be laughable, I'm sure. I don't speak this language, but I gave it a try.
I need to do this:
(defun c: SwitchAnnoQuick (/ MyAnno)
(setq MyAnno (getvar "cannoscale"))
(if (MyAnno=1:1)
(command cannoscale 1:2)
(command cannoscale 1:1)
(command cannoscale MyAnno))
In English: Change my cannoscale to 1:1 and back unless it is already 1:1, in which case change it to 1:2 and back.
Any help is appreciated. Thanks!
Solved! Go to Solution.