Is it possible to show another instance of a sprite? What I'm trying to do is have a reflection of a animated sprite.
What I've got so far is my Sprite called "canvas" that has things animating inside it by use of AS3. And what I want to do is show a copy of it flipped, below it to look like a reflection. I tried the following code but to no luck, it just hides everything?..
addChild(canvas);
var reflection:Sprite = new Sprite();
addChild(reflection);
reflection.addChild(canvas);
Any ideas why this code doesn't work? Or do you have a better way to approach this.
Thanks