Multiple createTextField

Hi,

I’m trying to dynamically create some textboxes, but having trouble creating more than one. I have:

createTextField(“hh”,0,PlotLeft, 150 ,50,50);
createTextField(“h2”,0,5, 50 ,50,50);

h2.text = “hello”;
hh.text = “hi”;

Anybody have any suggestions?

-Lloyd

the second argument is the level in which they’re created. if you create an object on a level which already contains an object, it will overwrite it.

only one object per level.