SaveNumber saves a numeric value to the user's storage space under valueName. Use this method when saving and loading user preferences.
Example - Example
function OnStart()
{
num = app.LoadNumber( "MyNumber", 42 );
app.ShowPopup( num );
app.SaveNumber( "MyNumber", num+1 );
}