Author Topic: toggle TILEMODE  (Read 1984 times)

0 Members and 1 Guest are viewing this topic.

Jim Yadon

  • Guest
toggle TILEMODE
« on: July 08, 2010, 10:15:44 AM »
Hi Folks.

I am hoping someone can point me to a function we had here years ago. It was a lisp that toggled TILEMODE by altering the current bit. I used to have I embedded in my routines I carried with me but alas, I shed them a couple of year sback and cannot locate any copies of them.

Any help is appreciated.
Thanks,
Jim

Lee Mac

  • Seagull
  • Posts: 12915
  • London, England
toggle TILEMODE
« Reply #1 on: July 08, 2010, 10:17:18 AM »
Code: [Select]
(setvar 'TILEMODE (- 1 (getvar 'TILEMODE)))

?

Jim Yadon

  • Guest
toggle TILEMODE
« Reply #2 on: July 08, 2010, 10:22:41 AM »
Hi Folks.

I am hoping someone can point me to a function we had here years ago. It was a lisp that toggled TILEMODE by altering the current bit. I used to have I embedded in my routines I carried with me but alas, I shed them a couple of year sback and cannot locate any copies of them.

Any help is appreciated.
Thanks,
Jim

That was close Lee.
I just answered my own question...
http://www.theswamp.org/index.php?topic=9655.msg124429#msg124429

Lee Mac

  • Seagull
  • Posts: 12915
  • London, England
toggle TILEMODE
« Reply #3 on: July 08, 2010, 10:26:36 AM »
I prefer mine  :-D