|
|
|
||||
|
Found the brn converter........ and
Found the hack....... No need for treo alert, phone suite bs, here you go yall... Repeat notifications for text and email messages D 5S~Nd7 Under HKCU/ControlPanel/Notifications find the following keys for Email and Text messages: find Key 15F11F90xxxx for reminders. Copy the Options value from the Reminders key and overwrite the options value in both email and text message keys with this value (1073741853) to the key A877d65Axxxxxxx key A877d65Bxxxxxxx Once you do this, go to start - settings - sounds and notifications - notifications. UNder events, select new email message OR new text message and you'll notice that th repeat option that was greyed out is now enabled and can be selected. __________________ |
|
||||
|
That hack don't work. At least when I tried it a week or so ago, it worked, but kept on going and would not quit.
Edit: I take that back, since the key I used was \HKCU\ControlPanel\Notifications\{A877D660-239C-47a7-9304-0D347F580408}. So, maybe this one works ok. Last edited by abward; 01-11-2008 at 03:12 PM. |
|
||||
|
Here is my MortScript that does work. It is 2 files, and is based on the TREO ALERT script, just pared down a bit.
Code:
################################################## ##
#ALERT.mscr-Gives alert for all to enjoy when messages pending.
#
# check dependencies
If ( NOT FileExists( "\Program Files\MortScript\REMINDER\wav.mscr" ) )
Message ( "Installation of wav.mscr is required! Exiting...", "ALERT script" )
Exit
Else
Message ( "Starting ALERT ...", "ALERT script" )
EndIf
# initialize variables
Notify = FALSE
Volume = FALSE
# start notification check loop
While ( 1 )
# Check the registry for any notifications
Notify = RegValueExists( "HKLM", "System\State\Shell\Notifications\Active", "CLSID" )
# Check the ringer switch on/off
# Volume = 0, means on Vibrate or Mute
Volume = RegRead ("HKCU", "ControlPanel\Volume\","Volume" )
# If notification is pending, then play a wav file
If ( Notify )
If ( Volume )
#play whatever wav file you want
CallScript("\Program Files\MortScript\REMINDER\wav.mscr")
Else
Vibrate ( 500 )
EndIf
EndIf
# wait 120 seconds
Sleep(120000)
EndWhile
################################################## ##
#wav.mscr-Makes noise. i is number of times to play the wav
i = 1
if (i > 0)
PlaySound "\Program Files\MortScript\REMINDER\TPBTVLOW.WAV"
sleep 1000
i = i - 1
endIf
Last edited by abward; 01-12-2008 at 12:29 PM. |
![]() |
|
|
|