vote up 0 vote down star

I want to check the RGB color of the object using actionscript in flash. The name of the object is object1. I checked like this but it didnt worked. help me

if (object1.color=rgb(255,0,255))
{
  trace("Selected Pink");
}

Give me correct syntax to check the rgb color of the object

flag

55% accept rate

2 Answers

vote up 2 vote down check

I think the comparison operator in Actionscript needs to "=" signs.

if (object1.color == rgb(255,0,255))
link|flag
still its not working – Rajasekar Aug 18 at 12:32
vote up 0 vote down

how are you setting our objects color property? Is Color a String value? or a Number ex: 0xFF00FF.

Is rgb() a function that you created? or just pseudo code? How do you want this comparison to work?

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.