Flex的页面跳转

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

   1、使用ViewStack组件,把要跳转的页新建成 MXML Component,然后通过 ViewStack 组件把

这些页包含进来,然后再通过改变ViewStack的selectedItem或者selectedChild来切换这些页。

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

   2、使用navigateToURL,主要方式如下:

        var url:String = "http://localhost:8080/Flex_Java_Demo/welcome.html";
        var request:URLRequest = new URLRequest(url);
        navigateToURL(request,"_blank");

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

   3、引用flash中的 import flash.external.ExternalInterface 这个接口,

        它能提供像jsp中window.location.href方法一样方便,主要代码为:
        ExternalInterface.call("function(){window.location.href=

                                          'http://localhost:8080/Flex_J2eeDemo/bin/Welcome.html';}");

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

   5、把不同的页面做成Module,然后使用ModuleLoder来进行加载切换。

你可能感兴趣的:(html,jsp,Flex,Flash)