# SMS_Notify.mscr CRON = SystemPath("ScriptPath") \ SystemPath("ScriptName") & SystemPath("ScriptExt") k = 5 RemoveNotifications( CRON ) RunAt( TimeStamp() + 60 * k, CRON ) NotInCall = NOT( RegValueExists( "HKLM", "System\State\Phone", "Active Call Count" ) ) If( NotInCall ) MissedCall = ( RegRead( "HKCU", "System\State\Phone", "Missed Call Count" ) gt 0 ) UnreadSMS = ( RegRead( "HKCU", "System\State\Messages\SMS\Unread", "Count") gt 0 ) VoiceMail = ( RegRead( "HKCU", "System\State\Messages\VMmail\Total\Unread", "Count") gt 0 ) If( MissedCall || UnreadSMS || VoiceMail ) SoundSource = "Infbeg" ToggleDisplay( TRUE ) For i = 1 to k sleep( 1000 ) PlaySound( SoundSource ) Next EndIf EndIf