Now i’m having a script problem on my working flash template file. I’m really appreciate if some flash “expert” can help me to find the solution, thanks in advance. Here’re the fla file. Inside the 4 seperate movie, i suppose to set 4 different url link on each, but the problem is when i debug & press either 1 of the link/movie (using onClipEvent/On Release), it popup all the 4 url? Do anyone have any clue about this?
on (rollOver)
{
a = this._name.substr(1, 1);
if (_root.p != a)
{
gotoAndPlay(2);
} // end if
}
on (releaseOutside, rollOut)
{
a = this._name.substr(1, 1);
if (_root.p != a)
{
gotoAndPlay(19);
} // end if
}
on (release)
{
a = this._name.substr(1, 1);
if (_root.p != a && !_root.playing)
{
_parent[“b” + _root.p].gotoAndPlay(19);
_root.p = a;
_root.play();
} // end if
}