Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Is it possible to access a movieclip inside an external swf (.fla file), using data from a vector?

The following code works correctly:

this._graphics.message2_mc.textLabel_txt.text = "Test";

Where as when I loop through a vector and try to replace "message2_mc" it cannot find the movie clip:

for(var i:uint = 1; i <= this._playlistState.subMovieVector.length - 1; i++) 
{
    var movieName:String = this._playlistState.subMovieVector[i].movieName;
    this._graphics.movieName.textLabel_txt.text = "Test";
}

Presumably this is because I am putting a string in the middle of the line of code accessing the movie clip?

share|improve this question

1 Answer

up vote 1 down vote accepted

You should use:

var movieName:String = this._playlistState.subMovieVector[i].movieName; this._graphics[movieName].textLabel_txt.text = "Test";

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.