Hi Guys,
I try to use the following prototype to load movieclip from dynamic text :
Movieclip.prototype.load_my_movies = function(moviename) {
loadMovieNum (moviename, 1);
};
I put the following code in the external html text like this:
<a href='asfunction:load_my_movies,movie01.swf'>Movie1</a>
But that code will load the movie to the level 1, NOT exactly what I wanted. Instead, I want to load the movie to targeted empty movie clip called “container”.
I have changed the prototype like this but it doesn’t work:
Movieclip.prototype.load_my_movies = function(moviename) {
loadMovieNum (moviename, "container");
};
Anybody can help me? Thanks a lot in advance.
PS:
Yes, I have search the forum and Macromedia of “asfunction” but I really can’t find a help of my problem