How to achive this?

SO, the thing is I have this superClass “GameWorld” (singleton).
the function createworld just run the init function and return the singleton instance.


public static function createWorld(owner:MovieClip):GameWorld {
GameWorld.instance.init(owner);
return GameWorld.instance;
}

The thing is I 'm inheriting this superClass.
And I want to call childClass.instance.createWorld which will do
ActionScript Code:


childClass.instance.init(owner);
return childClass.instance;

The thing is I don’t want to write down in my childClass this function createworld (lazy and to be able to only add in the childClass, properties and method specific to the game itself, not the way the engine is started or whatever related to it)

So I come with this idea, but still not working
ActionScript Code:


public static function createWorld(owner:MovieClip, baseClass:String) {
//  init the game world (setting up the variable)         
var clazz = _global[baseClass];             
//clazz.instance.init(owner);        
return clazz.instance;     
}

I have 2 problems here.
I would like to be able to return the type of the class used (clazz type)
The _global[baseClass] is undefined…

Any idea?

i dunno but just so you know u can use [ as ] and [ /as ] to wrap you actionscript


//yay as
trace("hello");
//

Thx mate. I didn’t knew that it was available on this forum as well :slight_smile:
Hehe