I have a library full of clips exported as logo0, logo1, logo2 etc.
In my main class I have a logoID:uint variable tracking the current logo.
I'd like to be able to just use:
logo = new "logo"+logoID();
addChild(logo);
but obviously that wont work.
How do I go about casting that correctly?
