Perdurabo
From ShadoWiki
Technology whore, currently using/hacking around with a Sprint MOTO Q.
Screenshot of ftm.exe process & associated DLLs:
//
// Name: ChangeSmartMenuView.mscr
// Author: perdurabo at gmail dot com
// Version: 1.0
// Description: This MortScript will allow the user to choose a default view
// for the Start Menu on Windows Mobile 5.0 smartphone devices
//
myView = Choice( "View Style", "Choose your Start Menu view style", 0, 0, "Grid", "List")
if( myView eq 1)
// Enable grid view
myValue = 1
Else
// Enable list view
myValue = 0
EndIf
If( RegRead( "HKCU", "Software\Microsoft\Shell\StartMenu", "GridView") eq myValue)
Message("This view is already enabled on this device!")
Else
// Change registry
RegWriteDWord( "HKCU", "Software\Microsoft\Shell\StartMenu", \
"GridView", myValue)
// Doublecheck registry value
If( RegRead( "HKCU", "Software\Microsoft\Shell\StartMenu", "GridView") \
eq myValue)
// Success!
Message( "Success!")
Else
// Oops, something didn't work right
Message("Could not write to the registry!")
EndIf
EndIf
