效果演示

Windows exe 软件下载 https://pan.baidu.com/s/11TtraCL0F6hdg-tcVimjOA?pwd=8nd6

部分源码如下

<?xml version="1.0" encoding="utf-8"?>
<mx:Application xmlns:fx="http://ns.adobe.com/mxml/2009"
	xmlns:s="library://ns.adobe.com/flex/spark"
	xmlns:mx="library://ns.adobe.com/flex/mx" xmlns:views="top.yunp.gua64.views.*" layout="vertical">
	<fx:Declarations>
		<!-- Place non-visual elements (e.g., services, value objects) here -->
	</fx:Declarations>
	<fx:Style source="style.css"/>

	<fx:Script>
		<![CDATA[
			import flash.events.Event;
			import top.yunp.gua64.data.Gua64Data;
			import top.yunp.gua64.views.CoinGuaEvent;
			import flash.net.navigateToURL;
			import flash.net.URLRequest;
			
			[Bindable]
			private var gua:* = null;
			
			private function randomGuaHandler(event:Event):void
			{
				gua = Gua64Data.randomGua();
				mainVS.selectedChild = randomGua;
			}
			
			private function goHomeHandler(event:*):void
			{
				mainVS.selectedChild = welcome;
			}
			
			private function showCoinGua(event:CoinGuaEvent):void
			{
				gua = event.data;
				mainVS.selectedChild = randomGua;
			}
		]]>
	</fx:Script>

	<mx:ViewStack id="mainVS" width="100%" height="100%" selectedIndex="0">
		<views:Welcome id="welcome" randomGua="randomGuaHandler(event)" coinGua="mainVS.selectedChild=coinGua"/>
		<views:GuaResult id="randomGua" goHome="goHomeHandler(event)" data="{gua}" randomGua="randomGuaHandler(event)" coinGua="mainVS.selectedChild=coinGua"/>
		<views:CoinGua id="coinGua" goHome="goHomeHandler(event)" showGuaResult="showCoinGua(event)"/>
	</mx:ViewStack>
	<mx:HBox width="100%" horizontalAlign="right">
		<mx:LinkButton label="源码地址:https://yunp.top/sc1/v/871" fontSize="12" click="navigateToURL(new URLRequest('https://yunp.top/sc1/v/871'),'_blank')"/>
	</mx:HBox>
</mx:Application>