Im busy building a GUI and I have noticed that some of the Gui Boxes with its contents are activated on startup and others not. Then i have to open the scripts one by one before the appear. Why is this the case and how can I fix it?
1. Some windows are defined within functions, not just in script blocks. These will not autoload until you run the script. 2. A script to run in an earlier window is erroring, causing the rest of the functions to not run. 3. There are dependencies on certain windows which are not established (basing position of another's position before the second window is defined) 4. etc
The way I have my GUI set up is to have every window definition in its own script, then a script to run on startup which calls each script in the order I want them to be called.
Tharos, the Announcer of Delos shouts, "It's near the end of the egghunt and I still haven't figured out how to pronounce Clean-dat-hoo."
Comments
1. Some windows are defined within functions, not just in script blocks. These will not autoload until you run the script.
2. A script to run in an earlier window is erroring, causing the rest of the functions to not run.
3. There are dependencies on certain windows which are not established (basing position of another's position before the second window is defined)
4. etc
The way I have my GUI set up is to have every window definition in its own script, then a script to run on startup which calls each script in the order I want them to be called.