Comunidad de diseño web y desarrollo en internet online

Codigo de action script 3 a action script2

Citar            
MensajeEscrito el 02 Ago 2010 01:02 am
Buenas noches.
Tengo este codigo que es de una pagina de tutoriales.
Estoy tratando de limpiarlo pasandolo a action script 2 cambiando unos terminos pero la verdad no pude con el final con el trace, alguien me podria colaborar?
Se los agradeceria demasiado.

import gs.*;
import gs.plugins.*;
TweenPlugin.activate([BlurFilterPlugin]);
var buttonsArray:Array = new Array(homeButton,portfolioButton,aboutButton,contactButton);
//Loop through the buttons array
for (i = 1; i <= labels.length; i++) {
//Add event listeners for the button
buttonsArray[i].addEventListener(MouseEvent.MOUSE_OVER, mouseOverButton);
buttonsArray[i].addEventListener(MouseEvent.CLICK, buttonClicked);
}

//Move the buttonBackground under the home button (= starting position)
buttonBackground.x = homeButton.x;
buttonBackground.y = homeButton.y;
//Make the buttonBackground a bit bigger than the home button
buttonBackground.width = homeButton.width + 10;
buttonBackground.height = homeButton.height + 10;
//Tween the buttonBackground to a random color using TweenMax
TweenMax.to(buttonBackground, 0.1, {tint: Math.random() * 0xffffff});
//This function is called when the mouse is over a button
mouseOverButton = function
//Assign the button to a local variable
var button:MovieClip = (MovieClip)(e.target);
//Calculate the new target width and height for the buttonBackground
var targetWidth:Number = button.width + 10;
var targetHeight:Number = button.height + 10;
//Tween the buttonBackground's position, size and color (color is random)
TweenMax.to(buttonBackground, 0.5, {x: button.x, y: button.y,
width:targetWidth, height:targetHeight, tint: Math.random() * 0xffffff});
}
buttonClicked = function ()
//Add your logic here!
trace(e.target.name + " was clicked!");
}

Por DanielGarzon

11 de clabLevel



 

msie8
Citar            
MensajeEscrito el 04 Ago 2010 08:57 pm
@DanielGarzon, ese código utiliza una clase en AS3, al parecer de greensock, la misma no te funcionará en AS2 a no ser que haya una versión en este lenguaje.

Cuando vayas a postear códigos actionscript hazlo entre tags de AS, así es más fácil de leer y alguien puede ayudarte más rápido.

Código :

[as]
Tus códigos aquí
[/as]

Por elchininet

Claber

3921 de clabLevel

17 tutoriales

Genero:Masculino  

Front-end developer at Booking.com

firefox
Citar            
MensajeEscrito el 27 Sep 2011 05:20 pm
Sí hay versión para AS2

Por ramonjosegn

27 de clabLevel



 

firefox

 

Cristalab BabyBlue v4 + V4 © 2011 Cristalab
Powered by ClabEngines v4, HTML5, love and ponies.