Create a blank line
i have xml files being read in actionscript , runs script , collects results want go next line next result. not sure how this. (see code). right create items in list this
item1, item2, item3, item4
i want result be
item1
item2
item3
item4
help?
// groups
var videos = this.childnodes[0];
var videolists = {};
groupnav = [];
( var = 0; < videos.childnodes.length; i++ ) {
var entry = entries.childnodes[i];
if ( entry.nodename == "groups" ) {
//builds array of video clip names
( var j = 0; j < videos.childnodes.length; j++ )
groupnav[j] = entry.childnodes[j].attributes.name;
//videolists[entry.attributes.name] = entry;
trace(groupnav);
}
}
loop through array.
More discussions in ActionScript 1 and 2
adobe
Comments
Post a Comment