how to I make a toggle icon so that I can change the background color between black and white? I am always back and forth, depending what I'm working on.
I tried that on F12 and it will only make View 1 active, not change the background color.
Hi Travis,
One of the following key-ins should work for you.
For Connect:
calculator userPrefsP->flags.invertBackground=!userPrefsP->flags.invertBackground;update all
For V8i:
mdl keyin calculat calculator userPrefsP->extFlags.invertBackground=!userPrefsP->extFlags.invertBackground;update all
These key-ins will invert the backgrounds of all open view windows simultaneously.
It is a bit quicker than the other suggestion because it doesn't close and then open each window.It just does a simple update all.
Regards,Ron