I wanted to use the new features of 1.4 to blink status lights for my chess program, to tell me
when it's my move even when I have another window obscuring the chess window. However, my O/S
also blinks a little box on screen every time the status of those keys (caps lock, num lock, and
scroll lock) changes, which is annoying. And I can't find how to turn that notification off with XP.
So I found another, entirely different way. I blink the icon! MS Paint will reverse the colors
of an icon. So I toggle between them with:
blink = blink XOR 1
f$ = "icon" + CHR$(48 + blink) + ".png"
i& = _LOADIMAGE(f$): _ICON i&: _FREEIMAGE i&
All the Windows performance monitors change the icon to reflect CPU load - must be several pictures
or icon files for that, or maybe they're created on the fly. QB64 could do that too.
The power and versatility of QB64 continues to amaze me.