revSEObjectDeleted error SOLVED

LiveCode is the premier environment for creating multi-platform solutions for all major operating systems - Windows, Mac OS X, Linux, the Web, Server environments and Mobile platforms. Brand new to LiveCode? Welcome!

Moderators: FourthWorld, heatherlaine, Klaus, kevinmiller, robinmiller

Post Reply
jmburnod
VIP Livecode Opensource Backer
VIP Livecode Opensource Backer
Posts: 2729
Joined: Sat Dec 22, 2007 5:35 pm
Contact:

revSEObjectDeleted error SOLVED

Post by jmburnod » Mon Feb 27, 2017 11:27 pm

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
Last edited by jmburnod on Tue Feb 28, 2017 12:09 pm, edited 2 times in total.
https://alternatic.ch

Ledigimate
Livecode Opensource Backer
Livecode Opensource Backer
Posts: 132
Joined: Mon Jan 14, 2013 3:37 pm

Re: revSEObjectDeleted error

Post by Ledigimate » Tue Feb 28, 2017 8:56 am

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
010100000110010101100001011000110110010100111101010011000110111101110110011001010010101101010100011100100111010101110100011010000010101101001010011101010111001101110100011010010110001101100101

jmburnod
VIP Livecode Opensource Backer
VIP Livecode Opensource Backer
Posts: 2729
Joined: Sat Dec 22, 2007 5:35 pm
Contact:

Re: revSEObjectDeleted error

Post by jmburnod » Tue Feb 28, 2017 10:06 am

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
https://alternatic.ch

Post Reply