我的XML这样写的:
<?xml version="1.0" encoding="UTF-8"?>
<Navigation>
<N1>http://localhost:1139/MovieShow/Default.aspx</N1>
<N2>http://localhost:1139/MovieShow/Logon.aspx</N2>
<N3>http://localhost:1139/MovieShow/search.aspx</N3>
<N4>http://localhost:1139/MovieShow/Messages.aspx</N4>
<N5>http://localhost:1139/MovieShow/HelpPage.htm</N5>
</Navigation>
flash里面是这样写的:
on (rollOver)
{
    tab.FGcount = 1;
    tab.sub1._visible = 1;
    tab.sub2._visible = 0;
    tab.sub3._visible = 0;
    tab.sub4._visible = 0;
    tab.sub5._visible = 0;
}
on (rollOut, dragOut)
{
    tab.FGcount = 0;
}
还应该加一些什么代码才可以实现呢?