|
you can automate almost everything with Mortscript. My scripst have been very simple. This one toggles the "Play Sound" for Incoming text messages (defined by the big GUID reg key - at least on my stock 6.1 Kaiser ROM)
currentstate=Regread ( "HKCU", "ControlPanel\Notifications\{A877D65B-239C-47a7-9304-0D347F580408}", "options")
If (currentstate=0)
RegWriteDWord ( "HKCU", "ControlPanel\Notifications\{A877D65B-239C-47a7-9304-0D347F580408}", "options",1 )
RegWriteDWord ( "HKLM", "Software\Microsoft\Color", "Basehue",123 )
Else
RegWriteDWord ( "HKCU", "ControlPanel\Notifications\{A877D65B-239C-47a7-9304-0D347F580408}", "options",0 )
RegWriteDWord ( "HKLM", "Software\Microsoft\Color", "Basehue",417 )
endif
Device: Kaiser
|