im basicly want to control what color the text goes instead of going the same color of the movie clip, if any 1 could help id be grateful
heres the code and i have attached the fla and swf
import caurina.transitions.Tweener;
var out : Object = {
_x:70,
time:1,
transition: "bounceeaseIn"
}
var textcolor : Object = {
_color:0xffffff,
time:1,
transition: "bounceeaseIn"
}
var scale : Object = {
_x:80,
_xscale:110,
_color:0x000000,
time:1,
transition: "bounceeaseIn"
}
var myButtons:Array = new Array(“home”,“services”,“contactus”);
var arrayLength:Number = myButtons.length;
var startY:Number = 23;
var startX:Number = 40;
for (var i = 0; i<arrayLength; i++) {
but = this.attachMovie(“button”, “button”+i,i, {_x:30+(startX), _y:40 +(startY*i)});
but.text1.text = myButtons*;
but.onRollOver = function() {
Tweener.addTween(this,{base:scale});
};
but.onRollOut = function() {
Tweener.addTween(this,{base:out});
};
}