怎么在flex中设置超链接

如何在flex中设置超链接?
如题,在flex中如何设置内置页面的超链接?也就是说在aa.mxml上点击某一个按钮上跳转到bb.mxml上。
能否设置它的连接方式?如asp.Net中_blabk,_self等。

flex的页面只能显示一屏的大小吗?为什么我的页面只在页面中间的VBox中出现滚动条,而不是出现在整个页面上,该怎么设置?百分比好像控制不了....

期待能有高手帮忙解决一下!

------解决方案--------------------
使用viewstack,这里有一个例子:
<?xml version="1.0"?>
<!-- Simple example to demonstrate the ViewStack layout container. -->
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml">

<mx:Panel title="ViewStack Container Example" height="95%" width="95%" 
paddingTop="10" paddingLeft="10" paddingRight="10" paddingBottom="10">

<mx:Text width="100%" color="blue"
text="Use the Button controls to change panels of the ViewStack container."/>

<mx:HBox borderStyle="solid" width="100%"
paddingTop="5" paddingLeft="5" paddingRight="5" paddingBottom="5">

<mx:Button id="searchButton" label="Search Panel"
click="myViewStack.selectedChild=search;"/>
<mx:Button id="cInfoButton" label="Customer Info Panel"
click="myViewStack.selectedChild=custInfo;"/>
<mx:Button id="aInfoButton" label="Account Panel"
click="myViewStack.selectedChild=accountInfo;"/>
</mx:HBox>

<!-- Define the ViewStack and the three child containers and have it
resize up to the size of the container for the buttons. -->
<mx:ViewStack id="myViewStack" borderStyle="solid" width="100%" height="80%">

<mx:Canvas id="search" backgroundColor="#FFFFCC" label="Search" width="100%" height="100%">
<mx:Label text="Search Screen" color="#000000"/>
</mx:Canvas>

<mx:Canvas id="custInfo" backgroundColor="#CCFFFF" label="Customer Info" width="100%" height="100%">
<mx:Label text="Customer Info" color="#000000"/>
</mx:Canvas>

<mx:Canvas id="accountInfo" backgroundColor="#FFCCFF" label="Account Info" width="100%" height="100%">
<mx:Label text="Account Info" color="#000000"/>
</mx:Canvas>
</mx:ViewStack>

</mx:Panel>
</mx:Application>

------解决方案--------------------
看看这个吧,在我的资源里面的:http://download.csdn.net/source/668627
------解决方案--------------------
自己的系统页面进行跳转?类似改变它的viewstack?
你举的那个例子不就是重定向吗?跟window.location有什么不一样?
viewstack压根就不是页面的跳转,而是FLASH内部的视图控制组件,此过程不会产生刷新,所以也不需要URL