Flash で AS2 ファイル (NavBar) を作成し、それを AS3 に変換しようとしています。AS3 に変換するには、これらのスクリプトにどのような変更を加える必要がありますか? (スクリプトには 3 つのレイヤーがあります):
レイヤー 1:
stop();
home.onRelease = function()
{
getURL("http://www.google.ca", _parent);
}
maps.onRelease = function()
{
getURL("http://www.google.ca", _parent);
}
forum.onRelease = function()
{
getURL("http://www.google.ca", _parent);
}
help.onRollOver = function()
{
gotoAndStop(2);
}
more.onRollOver = function()
{
gotoAndStop(3);
}
レイヤ 2:
stop();
faq.onRelease = function()
{
getURL("http://www.google.ca", _parent);
}
howtos.onRelease = function()
{
getURL("http://www.google.ca", _parent);
}
edge.onRollOver = function()
{
gotoAndStop(1);
}
background_1.onRollOver = function()
{
gotoAndStop(1);
}
forum.onRollOver = function()
{
gotoAndStop(1);
}
more.onRollOver = function()
{
gotoAndStop(3);
}
レイヤ 3:
stop();
submit.onRelease = function()
{
getURL("http://www.google.ca", _parent);
}
uwdclan.onRelease = function()
{
getURL("http://www.google.ca", _parent);
}
edge_2.onRollOver = function()
{
gotoAndStop(1);
}
background_2.onRollOver = function()
{
gotoAndStop(1);
}
help.onRollOver = function()
{
gotoAndStop(2);
}