When using the dropper tool in a stack on os x 10.4 it worked fine. I've had to buy a new mac (old one packed in) and now when using the stack on 10.5 Rev quits as soon as I click using the dropper tool. There are no messages, it just quits.
Any suggestions?
Thanks
Eric
Rev quits when I use the dropper tool on os x 10.5
Moderators: FourthWorld, heatherlaine, Klaus, kevinmiller, robinmiller
Hi Eric,
Do you mean the magnifying glass from Mac OS X's color chooser, which appears after using the answer color command? I haven't had any problems with this lately (Rev 3.0). Which Rev version are you using?
Best,
Mark
Do you mean the magnifying glass from Mac OS X's color chooser, which appears after using the answer color command? I haven't had any problems with this lately (Rev 3.0). Which Rev version are you using?
Best,
Mark
The biggest LiveCode group on Facebook: https://www.facebook.com/groups/livecode.developers
The book "Programming LiveCode for the Real Beginner"! Get it here! http://tinyurl.com/book-livecode
The book "Programming LiveCode for the Real Beginner"! Get it here! http://tinyurl.com/book-livecode
Hi Eric,
I understand it now. You are right, the dropper tool crashes Rev. Can you report it to the QCC and post the bug number here?
In the mean time, you can use the following script.
This is a blocking script. It is also possible to use a non-blocking script, e.g. with a repeat loop, which continuously shows the current mouseColor in a field.
Best,
Mark
I understand it now. You are right, the dropper tool crashes Rev. Can you report it to the QCC and post the bug number here?
In the mean time, you can use the following script.
Code: Select all
on mouseUp
set the cursor to cross
wait until the mouseClick
put the mouseColor -- into myVar or a field
end mouseUp
Best,
Mark
The biggest LiveCode group on Facebook: https://www.facebook.com/groups/livecode.developers
The book "Programming LiveCode for the Real Beginner"! Get it here! http://tinyurl.com/book-livecode
The book "Programming LiveCode for the Real Beginner"! Get it here! http://tinyurl.com/book-livecode