Ver Mensaje Individual
  #2 (permalink)  
Antiguo 11/02/2003, 11:04
Avatar de axa
axa
 
Fecha de Ingreso: enero-2002
Mensajes: 396
Antigüedad: 22 años, 2 meses
Puntos: 0
Haces un mc con la forma del boton, lo instancias en la movie principal, le das el nombre "boton" (o el que sea), en el primer frame de la movie principal las acciones:

Código:
this.onLoad = function () {
	tam=50;
}
boton.onRollOver = function ()  {
	this._width+=tam;
	this._height+=tam;
}
boton.onRollOut = function ()  {
	this._width-=tam;
	this._height-=tam;
}
__________________
axa