Hi guys, I have a number of objects which inherit from Sprite, in my new object when I set this.alpha = 0.3 the object still shows opaque.
I can still do: var tmp:Car = new Car(); tmp.x = 10; tmp.y = 10; // this doesn't work: tmp.alpha = 0.3; Am I doing this right? Also, say Bar contains many children - would all of these also become alpha=0.3? I want them to all fade out... Car may have 3,4,6 etc. wheels, each wheel is a: class wheel extends Sprite These are added to Car like: this.addChild( new wheel() ); Am I doing this correct? The Car object has many children, all of which inherit from Sprite and so should display themselves. Any help or ideas will be appreciated :-) monk.e.boy

