Ver Mensaje Individual
  #3 (permalink)  
Antiguo 22/02/2005, 08:45
Avatar de Abelius
Abelius
 
Fecha de Ingreso: mayo-2004
Ubicación: Miami, FL, USA
Mensajes: 248
Antigüedad: 19 años, 11 meses
Puntos: 0
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;
}
__________________
Cordialmente,
Abel K
Miami, FL, USA
World Kit