You don't have to create an array, but if you do it simply means that
you can loop through all the boxes inside your clip AND you don't have
to change the code if you add lines to the xml file.
For example, here's some pseudo-code (not real code, just describes the
process in a code-like way);
while(still another xml row) {
get the next xml row
create a new textfield
store the textfield in the array of textfields
position the textfield
assign your xml data to the textfield
add an offset to the variable that holds the
x y coordinates of the next textfield
}
This will just keep going until there are no more xml rows. Like this,
you don't have to change your code if you add more xml rows.
Also, if you have to reposition your textfields or do anything to them,
you can do it in a loop - no code changes when you change the xml! It
all takes care of itself.
[quoted text, click to view] Deuce Bigs wrote:
> You assume correct. all three ase going to look the same. basically each xml
> station node has title and description inside it. so basically when it's
> called i want like a red box to pop up with the title and description in it and
> then underneath it the next station to pop up with it's title and description
> and so on. i'll look up those things you put down. do i have to create an
> array to create and fill out the boxes? i'm just guessing i don't really know
> but thanks so far.
>
>