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