Flex页面跳转的五种实现方式

Flex中实现Flex页面跳转以下几种方式:

Flex页面跳转方式一:使用ViewStack组件,把要跳转的页新建成MXMLComponent,然后通过ViewStack组件把这些页包含进来,然后再通过改变ViewStack的selectedItem或者selectedChild来切换这些页。

  
  
  
  
  1. <mx:ViewStack id="storeViews" width="100%" height="550"
  2. creationPolicy="all">
  3. <shouye id="homeView" label="首页" showEffect="WipeDown" hideEffect="WipeUp"/>
  4. <leixing id="pView" label="模板类型"showEffect="WipeDown" hideEffect="WipeUp"/>
  5. <make id="supportView" label="立即制作"showEffect="WipeDown"hideEffect="WipeUp"/>
  6. </mx:ViewStack>
  7. <mx:Buttonclick="storeViews.selectedChild=homeView;"/>

Flex页面跳转方式二:使用navigateToURL,主要方式如下:

  
  
  
  
  1. varurl:String="http://localhost:8080/Flex_Java_Demo/
  2. welcome.html";
  3. varrequest:URLRequest=new URLRequest(url);
  4. navigateToURL(request,"_blank");

这个方法实现Flex页面切换时会弹出新的页面,而不是只变换url

Flex页面跳转方式三:引用flash中的importflash.external.ExternalInterface这个接口,它能提供像jsp中window.location.href方法一样方便,主要代码为:
 

  
  
  
  
  1. ExternalInterface.call("function(){window.location.
  2. href='http://localhost:8080/Flex_J2eeDemo
  3. /bin/Welcome.html';}");

Flex页面跳转方式四:使用组件技术,把不同的页面做成component,然后通过TabNavigator等进行切换,通过使用state实现跳转。

Flex页面跳转方式五:把不同的页面做成Module,然后使用ModuleLoder来进行加载切换。

你可能感兴趣的:(Flex,页面跳转)