It looks like OS 5 changed the way system clicks are created: All controls now seem to 
generate the click on their own, in addition to a SndPlaySystemSound(sndClick); in the 
event handler.

To see what I mean: on a Tungsten T, enable system sounds in the Prefs application, 
then check/uncheck an item in the built-in To Do application. This will make a strange 
noise consisting of two rapid single clicks.

Up to OS 4, it was fine to put
SndPlaySystemSound(sndClick);
ctlSelect in the event handler if we wanted a click sound (e.g. on a popup keyboard).

Are we now supposed to put a 
if(!isOS5OrLater())
        SndPlaySystemSound(sndClick);
around each click, or will this change again in OS 5.1/6? 
Or is it just the TT?

How are others handling clicks on OS 5?

Regards,
Andreas Linke
www.LinkeSOFT.com
        

-- 
For information on using the Palm Developer Forums, or to unsubscribe, please see 
http://www.palmos.com/dev/support/forums/

Reply via email to