Take your pick:
PHP Code:
// Makevar
temp.obj = makevar("Ron_TD_EnemyImage" @ i);
temp.obj.bleh();
// Directly
temp.obj = (@"Ron_TD_EnemyImage" @ i);
temp.obj.bleh();
// Without using a variable
(@"Ron_TD_EnemyImage" @ i).bleh();
When you use a variable you can then use with to change variables directly as well. I.e:
PHP Code:
temp.obj = (@"Ron_TD_EnemyImage" @ i);
with (temp.obj) { // with ((@"Ron_TD_EnemyImage" @ i)) { // should work as well.
this.x += 10;
this.y += 10;
}