Aqui va un ejemplo de como yo lo haria:
Creas un boton llamado "btn". Creas un textfiled dinamico llamado "isla_txt" y un textfield de input llamado "input_txt"
OK? :)
Código:
Entonces en la timeline principal pones esto:
_root.onEnterFrame = function() {
this.isla_txt._x = _root._xmouse + 15;
this.isla_txt._y = _root._ymouse;
};
_root.onLoad = function() {
this.isla_txt._visible = false;
};
Y en el boton pones esto:
Código:
on (release) {
this.isla_txt.text = " " add this.input_txt.text add " ";
this.isla_txt.backgroundColor = 0xFFFF99;
this.isla_txt._visible = true;
this.isla_txt.autoSize = true;
}