Page 1 of 1

revSEObjectDeleted error SOLVED

Posted: Mon Feb 27, 2017 11:27 pm
by jmburnod
Hi All,
I get a strange message error (for me) about this line of stack script

Code: Select all

set the outerglow["color"] of btn "bMyCursor" to the TextColor of fld "fText"
stack "stTextOmatic008": execution error at line 804 (Handler: can't find handler) near "revSEObjectDeleted", char 1
The error line is 330 of stack script
This happends with LC 8.1.3 (not with LC 7.06) when I open the stack but not when I send the message by message box

I tried foregroundColor instead TextColor

Code: Select all

set the outerglow["color"] of btn "bMyCursor" to the foregroundColor of fld "fText"
with an other error message
stack "stTextOmatic008": execution error at line 331 (Object: can't set object property), char 4
Thanks in advance for your light
Jean-Marc

Re: revSEObjectDeleted error

Posted: Tue Feb 28, 2017 8:56 am
by Ledigimate
Hi Jean-Marc,

If you comment out the line of code in question, does it still show any error when the stack is opened?

- Gerrie

Re: revSEObjectDeleted error

Posted: Tue Feb 28, 2017 10:06 am
by jmburnod
Hi Gerrie,
Thanks for quick reply
No error message if I comment out error line.
it seems that "effective" is the magic word :D

Code: Select all

set the outerglow["color"] of btn "bMyCursor" to (the effective TextColor of fld "fText")  
works in the same context.
Best regards
Jean-Marc