You have 2 ways to open the debugger:
- In the contact list, open the Plus! menu (note: not the Plus! icon menu, but the one next to the Help menu) and select Script Debugging Window. Select your script in the list and look what the textbox says.
- In your script, add this to your OnEvent_Initialize function:
code:
Debug.DebuggingWindowVisible = true;
to open the window whenever you start the script. Don't forget to remove it when you're planning to release it!
When you've done that, start your script and see if it gives you an error message.