2012-03-13 56 views
0

我有一个保存swf文件导航结构的xml文档。我需要在新标签中打开其中一个网址。所有的url都保存在xml文件中,swf文件引用xml中的所有内容。使用XML在新选项卡中打开URL

,我想在新标签中打开链接是最后一个,“www.iwantthisinanewtab.com”

<item> 
     <itemID>RESOURCES</itemID> 
     <itemPageTitle>Resources</itemPageTitle> 
     <itemPageURL>resources.html</itemPageURL> 
     <submenuitemS active="true"> 
      <!--New SubMenu Item--> 
      <submenuitem> 
       <submenuitemID>OVERVIEW</submenuitemID> 
       <submenuitemPageTitle>Resources</submenuitemPageTitle> 
       <submenuitemPageURL>resources.html</submenuitemPageURL> 
      </submenuitem> 

      <!--New SubMenu Item--> 
      <submenuitem> 
       <submenuitemID>FLOWERS & GIFTS</submenuitemID> 
       <submenuitemPageTitle>Flowers & Gifts</submenuitemPageTitle> 
       <submenuitemPageURL>http://www.iwantthisinanewtab.com</submenuitemPageURL> 
      </submenuitem> 

任何帮助将非常感激。

在AS

回答