Hey guys hope this makes sense…
I’m trying to have links(when pressed)- to go to a corresponding frame label- example link5 when pressed would take you to “section5”.
The following code works fine for the rollOver and rollOut states- the problem is onRelease.
Basically I want link* to gotoAndStop(“section” + i)- when pressed…
Anyway I know something’s screwy with the for loop or the way I’m combining a string with a var- or both… but any help would be really really appreciated (burning the midnight oil)…
var linkArray:Array = new Array();
for (var i:Number = 1; i<6; i++) {
linkArray.push(“link”+i);
}
for (var i:Number = 0; i<linkArray.length; i++) {
var thisLink = this[linkArray*];
thisLink.onRollOver = function() {
this._alpha = 50;
};
thisLink.onRollOut = function() {
this._alpha = 100;
};
thisLink.onRelease = function() {
trace(thisLink);
};
}