i have made gallery that work like,when i rollover the thumb image ,it will show a big image in any side of thumb,it also load an exter txt file that contain description about image. if any one could help me to unload that taxt file,bcause it load but cant unload. my script is as following
for image rollover:----
on(rollOver)
{
var loader:MovieClipLoader = new MovieClipLoader();
this.createEmptyMovieClip(“container”,1);
loader.loadClip(“Gold & Diamond Jewellery/GD Ring/GD Ring 177.jpg”,container);
container._x=510;
container._y=130;
}
on(rollOut)
{
removeMovieClip(“container”);
}
on(release)
{
gotoAndPlay(“11”);
removeMovieClip(“container”);
}
for txt load:----
myData = new LoadVars();
myData.onLoad = function() {
myText_txt.html=true;
myText_txt.text = this.myVariable;
};
myData.load(“anand.txt”)