I want to make link from a dynamic text(in flash project) to an external swf i created(a gallery that is controlled by xml file). This is the code of first frame of my fla project:
url="edit";
loadVariablesNum(url + "_main.html",0);
_root.link=1;
function linkgal() {
loadMovieNum("gal_car.swf", 1);
}
stop();
and my html code for the text link is:
<font color="#438092"><u><a href="asfunction:linkgal">Photos</a></u></font>
Shouldnt that be working and load the gal_car.swf on top of the other swf? loadMovieNum works when i use it on buttons. Thank you.