-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPayUp2.js
36 lines (31 loc) · 1.87 KB
/
PayUp2.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
//code by Isaac Schlaht
app.Script("App.Global-Vars.js");
app.Script("./App.Components.js");
app.Script("./App.Modules.js");
app.Script("./App.States.js");
app.Script("App.Index.LoggedOut.js");
app.Script("App.DB.System.js");
app.Script( "DEV.Admin.js" )
//app.Script("./FileSystem.js");
var LOGGEDIN;
//——————————————————————————————————————————
//——————————————————————————————————————————
function OnStart() {
var dir = app.GetDatabaseFolder();
app.Alert( dir )
var State = new AppState();
main_lay = app.CreateLayout("Linear", "VTop, FillXY");
//———————————————————————————————————————
AppState_Layout = app.AddLayout(main_lay, "Linear", "VCenter", "FillXY");
AppState_Layout.SetSize(1.0, 1.0);
// AppState_Layout.SetBackColor("#00000000");
AppState_Layout.SetBackGradient(BGC1, WBGC1,null,"top-bottom" )
//Add layout to app.——————————————————————————————
app.AddLayout(main_lay);
State.NavRouter(AppState_Layout)
}//-----OnStart----END
//——————————————————————————————————————————
//——————————————————————————————————————————
//——————————————————————————————————————————
//——————————————————————————————————————————
//——————————————————————————————————————————