Hi All,
I have a situation here. I have 3 arrays set up, each containing roughly 5 objects. looks something like:
var arrSample:Array = new Array({name:"Name Here", title:"Title here", copy:"Description goes here"}, {name:"Name Here", title:"Title here", copy:"Description goes here"} );
var arrDifferentSample:Array = new Array({name:"Name Here", title:"Title here", copy:"Description goes here"}, {name:"Name Here", title:"Title here", copy:"Description goes here"} );
The info from the array above fills the content of my movie clip when a specific link is clicked. My question is, is it possible to inner link (kind of like anchors in HTML)? If that didn’t make any sense, ultimately I’d like to click a link from arrSample and then land in the arrDifferentSample page.
Any ideas?