=====LoadText===== //(Information and examples taken from the DroidScript documentation)// ====Description==== The **LoadText** method loads and returns a text value from the user's storage space under **valueName**. If there is no stored **valueName**, then method returns **default** value. Use this method when saving and loading user preferences. The third parameter **id** is an optional text parameter and allows sharing of data across multiple Apps when the same id is used by both apps. The third parameter is only useful for sharing data between apps run in the DroidScript IDE. It cannot be used to share data between standalone apps created with the apk-builder. txt = app.LoadText( valueName, default, id ); See also [[built_in:save_text|SaveText]] ---- ====Example==== function OnStart() { name = app.LoadText( "MyName", "Bill" ); app.ShowPopup( name ); if( name=="Bill" ) name = "Fred"; else name = "Bill"; app.SaveText( "MyName", name ); }