vote up 2 vote down star
2

Since the early days, Palm OS has had a special "easter egg" mode that's enabled by making the right gesture in one of the Preference panels. On current Palm Treo and Centro devices, this is turned on by doing a clockwise swirl above the "Tips" button in the Power panel.

Some applications, like the Blazer web browser, enable special features when easter eggs are active. How can I detect this in my own program?

flag

1  
I used to do a lot of PalmOS dev about 6 years ago and your blog and posts on the PalmOS Usenet groups were a HUGE help. Glad to see you're still at it. – Mark Biek Oct 2 '08 at 20:05
Did you just ask that question so you could post an answer to it? it seems that you answered it the same minute you asked it... – Omar Kooheji Oct 14 '08 at 16:09
You are allowed to do that, it says in the FAQ. – Isaac Waller Apr 18 at 5:17

1 Answer

vote up 3 vote down check

The standard system preference for this is prefAllowEasterEggs (see Preference.h). This setting can be accessed using the PrefGetPreference API:

UInt32 enableEasterEggs = PrefGetPreference(prefAllowEasterEggs);

The value will be non-zero when the user has requested that Easter eggs be available.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.