Innerlinking with arrays (is this possible)

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?

I don’t get it.

Yeah, it’s kind of tough to explain. But I have a movie clip that contains three text areas:

name
title
copy

I also have navigation links so that when clicked, the content from the arrays fill those fields. I have a link in one of the arrays that when clicked, needs to change all that content to the other array. Did that make any sense?