Wow thats a boring title!
I am trying to create a singleton class, that extends Sprite. It seems to work correctly, but it doesn’t actually update the screen.
If I access my instance and change the properties (x,y,alpha,etc) they will all update, but the display doesn’t change.
eg:
My clip starts at x=0.
MyClass.getInstance().x = 99;
trace(MyClass.getInstance.x); //traces 99, but it still appears at 0 on the screen.
I’ve tried a ton of variations on this and keep getting the same result. Am I misunderstanding something about Singletons?