Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations wOOdy-Soft on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

MovieClip Array

Status
Not open for further replies.

SFiend

Programmer
Jun 4, 2004
39
CZ
Is it possible to make movieclip array? And how I can work with it?

Code:
	for (var i = 0; i < this.childNodes[1].childNodes[3].childNodes.length; i++) {
		obrazek[i] = new Object();
		obrazek[i].urlObrazku = this.childNodes[1].childNodes[3].childNodes[i].firstChild;
		obrazek[i].nazevKlipu = "obrazek" + toString(i);
		obrazek[i].klip = obsah.createEmptyMovieClip(obrazek[i].nazevKlipu, obsah.getNextHighestDepth());
	}

and then how I identificate this movie clip?

Code:
posluchacNahravace.onLoadInit = function(cil:MovieClip) {
    switch (cil._name) {
}
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top