myLoader = new MovieClipLoader();
myLoader.addListener(myLoaderListener);
myLoader.loadClip("thumbs/cycle.swf", slider.thumb1);
//myLoader.loadClip("thumbs/drivehome.swf", slider.thumb2);
myLoader.loadClip("thumbs/flashback.swf", slider.thumb3);
function showProgress(){
trace(myLoader.getProgress(container).bytesLoaded);
}
slider.thumb2.onRelease = function(){
slider.myvid._x = this._x;
slider.myvid._y = this._y;
ns.play("videos/drivehome.flv");
}
basically i use the above code to populate some thumbnails which link to flv’s… the second clip (and only the second clip) is clickable and gets the movie to load (this is because it’s commented out, so instead of a thumbnail there’s just an unpopulated mc). this leads me to believe that there’s something i’m missing if i want to have a clickable mc that’s holding an external swf… could anybody help?