Loading Events
Events run when a script is loaded.
The core library contains two script loading events.
Any Load
This is run whenever any script is loaded. This may be the current script or a different script. During initial start-up, scripts will not receive load events for other scripts loaded before them.
This is designed to catch the loading of 'lazy' scripts loaded while the program is already running.
Event Value | Type | Description |
---|---|---|
| The name of the loaded script. | |
| The full path of the loaded script in |
Load
This is run when this script is loaded. Other scripts will not receive this event.
This is designed to be a start-up entry-point for your program, equivalent to Java's <clinit>
.
Event Value | Type | Description |
---|---|---|
| The name of the loaded script. | |
| The full path of the loaded script in |
Last updated