In the only card ("Main Card") of a mainstack ("Script Reporter") there is a handler "colorScript"
In the mainstack there is this:
send "colorScript" to this stack
When the stack is run in the IDE everything works as expected. However, when run as a standalone the colorScript handler doesn't get called.
I put it in a try-catch block, and got this back in the error variable:
573,387,1,colorScript
573 = handler not found
387 = the line in the script where the 'send' is
1 = the first column/character
No gymnastics that I can think of result in the colorScript handler getting called. I've tried:
1. send "colorScript" to card "Main Card" of stack "Script Reporter"/this stack/no stack nomenclature
2. call "colorScript" of card "Main Card" of stack "Script Reporter"/this stack/no stack nomenclature
Copying "colorScript" out of the card and into the stack causes a similar error when another handler in the card "Main Card" has to be called.
I'm befuddled.
