-
Notifications
You must be signed in to change notification settings - Fork 14
standalone.livecode
The standalone.livecode file is in your app folder. This is is the binary "stub" stack you will build as an executable standalone using LiveCode. This is also the stack that will load all of your application files into the IDE during an editing session.
You configure the standalone settings of this stack and build the executable using the LiveCode development environment, as described here.
To open your application for an editing session do the following:
- Open the
standalone.livecodestack in the IDE. - With the Browse tool active, click on the Open Application button. The Levure framework will initialize and run the application in the IDE and you can begin editing your stacks.
The standalone.livecode stack does not have any scripts or user interface objects. It is a bare launcher stack whose purpose is to provide an executable that loads levure/framework/levure.livecodescript as its behavior. Once the framework is loaded it handles everything from there.
To properly load levure/framework/levure.livecodescript as a behavior, two properties must be set on the standalone.livecode stack:
-
The
behaviorproperty must be set tostack "levureFramework" -
The
stackFilesproperty must be set tolevureFramework,../levure/framework/levure.livecodescriptThe above
stackfilessetting assumes this folder structure:- 📂 your_project_folder
- 📂 app
- standalone.livecode
- 📁 builds
- 📂 levure
- 📂 framework
- levure.livecodescript
- 📂 framework
- 📂 app
- 📂 your_project_folder
Levure is an application development framework written for LiveCode.