-
Notifications
You must be signed in to change notification settings - Fork 14
framework helpers
Brian Spencer edited this page Jun 10, 2017
·
19 revisions
The framework includes a number of helpers in the levure/framework/helpers
folder that you can use in your application. You should not modify the framework helpers. They will be updated to the latest versions whenever you update Levure in your project folder.
- 📂 your_application_project_folder
- 📁 app
- 📁 builds
- 📂 levure
- 📂 framework
- levure.livecodescript
- 📂 helpers
- 📁 broadcaster
- 📁 file_system
- 📁 font_loader
- 📁 logger
- 📁 preferences
- 📁 undo_manager
- 📁 window_manager
- 📂 framework
To load a framework helper use the FRAMEWORK variable in app.yml
.
For example, this entry in app.yml
will load the preferences
framework helper:
helpers:
- filename: "[[FRAMEWORK]]/helpers/preferences"
Any helper included with the framework automatically has its preload
flag set to true. That means the helper will be loaded before the PreloadApplication
message is sent to the app
stack.
Levure is an application development framework written for LiveCode.