Can anyone help me find out how can I can get the color of rectangle in corona? That rectangle I already filled with color, so now I want to get that color when I touch on rectangle.
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
Create your rectangle:
Put your color in RGBA (you can leave out the A) format in a table, and store it as a "custom property" for the rectangle:
Through the magic of the unpack function, which returns the values of a table, pass the table to setFillColor:
Now you can always get the color like so:
or
or to put each color in a variable:
You'll see how this can come in handy for other things as well. EDIT Just thought of another cool way of doing it, by highjacking the setFillColor function:
Now you can use setFillColor to set color as normal, AND getFillColor to return it :)
|
||||
|
|