Creating an instance of what a variable evaluates as?

trace(t[i*3]); //Prints ‘a1’ (without quotes)
var d = new a1(); //Works fine, creates a new instance of class a1
var d = new ti*3; // Does not work

But how could I make that work?

Thanks in advance. :slight_smile: