Updated Platform Support (markdown)
3cbecc3
Updated Alternatives (markdown)
e839e84
Updated External Readers (markdown)
cd75b59
Updated Additional Configurations (markdown)
a123509
Created Authentication Methods (markdown)
d6fa9ac
Updated Additional Configurations (markdown)
e67c8ee
Updated Additional Configurations (markdown)
77d5567
Created Alternatives (markdown)
90fcb19
Updated Workarounds (markdown)
f61d2d9
Updated Additional Configurations (markdown)
c651e74
Updated Platform Support (markdown)
0c0291d
Created Platform Support (markdown)
1bdeabc
Updated Development (markdown)
5a5d2e2
Destroyed Called when application is started. function OnStart() { Create a layout with objects vertically centered. lay = app.CreateLayout( "linear", "VCenter,FillXY" ); Create image 1 5 of screen width and correct aspect ratio. img = app.CreateImage( " Sys Img Hello.png", 0.2, 1 ); lay.AddChild( img ); Create a button 1 3 of screen width and 1 10 screen height. btn = app.CreateButton( "Press Me", 0.3, 0.1 ); btn.SetMargins( 0, 0.05, 0, 0 ); lay.AddChild( btn ); Set function to call when button pressed. btn.SetOnTouch( btn_OnTouch ); Add layout to app. app.AddLayout( lay ); } Called when user touches our button. function btn_OnTouch() { Show a popup message. app.ShowPopup( "Hello World!" ); Vibrate phone with a pattern (in milliseconds). pause,vibrate,pause,vibrate... app.Vibrate( "0,100,30,100,50,300" ); } (markdown)
5840c52
Created //Called when application is started. function OnStart() { //Create a layout with objects vertically centered. lay = app.CreateLayout( "linear", "VCenter,FillXY" ); //Create image 1/5 of screen width and correct aspect ratio. img = app.CreateImage( "/Sys/Img/Hello.png", 0.2, -1 ); lay.AddChild( img ); //Create a button 1/3 of screen width and 1/10 screen height. btn = app.CreateButton( "Press Me", 0.3, 0.1 ); btn.SetMargins( 0, 0.05, 0, 0 ); lay.AddChild( btn ); //Set function to call when button pressed. btn.SetOnTouch( btn_OnTouch ); //Add layout to app. app.AddLayout( lay ); } //Called when user touches our button. function btn_OnTouch() { //Show a popup message. app.ShowPopup( "Hello World!" ); //Vibrate phone with a pattern (in milliseconds). //pause,vibrate,pause,vibrate... app.Vibrate( "0,100,30,100,50,300" ); } (markdown)
G501
committed
Jun 6, 2020
ad9d665
Add instructions to run multiple instances
f13dafd
mention limited rar supports
3a60f31
Updated Additional Configurations (markdown)
b6d4d59