#include “mc_tween2.as”
rect1.addEventListener(MouseEvent.MOUSE_OVER, rollOverRect);
rect1.addEventListener(MouseEvent.MOUSE_OUT, rollOutRect);
function rollOverRect(evt:MouseEvent):void {
rect1.x=rect1.x+30;
}
function rollOutRect(evt:MouseEvent):void {
rect1.x=rect1.x-20;
}
giving me syntax error for the include at the top…I wanna use tweens in the functions…any ideas?
1093: Syntax error.
1068: Unable to open included file: C:\Clients\mc_tween2.as.