this is structure of stucks I have:
1: main stack - empty of any code aside of
Code: Select all
on openStack
open stack "WsController"
open stack "GuiController"
start using "WsController"
start using "GuiController"
end openStack
3: WSController - script only that handles all API to my server + event using long polling with
Code: Select all
load URL with event
in debug everything works, thanks a lot, when I try to build an EXE I get an error message on the screen:
my stack code resides on Z: and I am trying to generate the exe on C:a Stack with th same name as the one you are trying to load is already open.
before loading C:/dev/x/main.livecode, what do you want to do with the stack Z:/dev/x/main.livecode
also I am getting loads of stacks I am not using loaded with error message too, like:
the same goes for "answer dialog"a stack "revCursors" is already in memory. The LiveCode UI does not distinguis stacks which have identical names, so editing these stack files while both are in memory could result in data loss
I've tried what suggested in another thread:
Code: Select all
delete stack revCursors of stack "main"
Code: Select all
delete stack "revCursors" of stack "main"
Error description: Chunk: can't find stack
sometimes I get this pop up once, sometimes a lot, I could've build an exe after 1-3 messages, now I get 30 - and I have to kill the live code process
any idea why this happens ?