Кто знает в чём проблема. Может быть неправильно использую. Поскажите пожалуйста.
Вот так работает:

Код AS3:
public function show_thing():void
{
var t_name1:String = "new_thing";
var new_thing :thing;
new_thing = new thing();
addChild(new_thing);
new_thing.x = 15;
new_thing.y = 100;
}
Вот так не работает:

Код AS3:
public function show_thing():void
{
var t_name1:String = "new_thing";
var new_thing :thing;
new_thing = new thing();
addChild(new_thing);
this[t_name1].x = 15;
new_thing.y = 100;
}
ReferenceError: Error #1069: Не удалось найти свойство new_thing в main.table; отсутствует значение по умолчанию.