Two new suggestions this time...
New ability to change fonts.
Object.Font="Microsoft san seref"
Object.Fontsize=76
Object.text="Get the idea?"
Ability to split the entire script into "areas" with 2 viewing modes, "One Page" and "Sectioned"
In one page mode, the entire script would look like this:
'Called when the script is executed
Script.Group Wakeup
Sub Object_OnScriptEnter
Msgbox "I'm awake!"
End Sub
End Group Wakeup
Script.Group Exit
'Called when the script is terminated
Sub Object_OnScriptExit
msgbox "Goodbye!"
End Sub
End Group Exit
Notice the additional code? When it's switched to sectioned, and that combo box with script group list is on just "Wakeup"...
Sub Object_OnScriptEnter
Msgbox "I'm awake!"
End Sub
That's it. If you want to see Exit group, you just change combobox to "Exit" and you can see this:
Sub Object_OnScriptExit
msgbox "Goodbye!"
End Sub
The only way to add new script.group sections is to switch to one page mode. For such a small script such as this example, it's useless, but some of object has very complex code, and this could be more useful to lessen clutter.