Page 1 of 1

Color Picker / Chooser

Posted: Sun Mar 14, 2010 5:20 pm
by xfratboy
Is there such a thing as a color picker /chooser in Rev or do we have to create our own?

Re: Color Picker / Chooser

Posted: Sun Mar 14, 2010 6:21 pm
by Klaus
Hi xfratboy,

for me a simple

Code: Select all

on mouseup
   answer color
   if it <> empty then
    ## set any color you want to IT
  end if
end mouseup
does the job reliably and crossplatform :)

Best

Klaus

Re: Color Picker / Chooser

Posted: Sun Mar 14, 2010 10:39 pm
by xfratboy
That is just plain perfect! Thanks!