Creating text with a transparent background is a problem that’s probably as old as the merry Palm OS function WinDrawChars. Many developers(including me) used abstruse techniques to create it(I used a bitmap lookup table, more on that if anyone is interested) – but I now found the official, PalmSource-approved, Palm TX safe way.
WinPushDrawState();
WinSetDrawMode(winOverlay);
WinPaintChar(char,xpos,ypos);
WinPopDrawState();
Simple, huh…. . And by the way, it really works well – even in the simulator!
Related posts:

Hi hi …
I ve found that too when i started kLauncher … it s always interested to read carrefully the palm os SDK … A lots of good informations are in it.