|
Hi!
I decompiled a .swf with Flash Decompiler Trillix.
Now I'm trying to check the buttons of the menu, but I don't know where can I edit them!
There is a button that says edit links, but nothing happen.
Not, searching in the scripts I found this:
***********************************************
// On release
on (release)
{
if (_root.link != num)
{
_root["item" + _root.link].gotoAndPlay("s2");
_root.link = num;
if (num == 1)
{
getURL("index.html", "");
}
else
{
getURL("index-" + Number(num - 1) + ".html", "");
}
}
}
************************************************
Maybe that is the part where I have to modify.
I modified the geturl but nothing happened.
It still going to index-1 -2 -3 -4.html.
How can I make that, when clicking the button, it should go to for example aboutus.html?
Well thank you for you help.
Regards,
George.
|