Welcome!,
only known difference between running script from IDE and bundled EXE or script file clicked in shell is that in case of ThinAir launching, there is extra information passed on the command line / as parameter.
See here:
[code=thinbasic]
uses "Console", "OS"
dim commandStr as string = os_getCommand
printl "Command line is:"
printl iif$(instr(commandStr, "@"), "You are running this script from ThinAir", "No special characters, you are not running from thinAir")
waitkey
[/code]
Do you use command line for passing some parameters?
Did you tried to use debugger (F8 key) to find which command makes problems?
Thanks,
Petr
Bookmarks