中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

初識ActionScript

發布時間:2020-06-15 19:43:07 來源:網絡 閱讀:372 作者:umgsai 欄目:開發技術
<?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" minWidth="955" minHeight="600" creationComplete="initApp()">
    <fx:Declarations>
        <!-- 將非可視元素(例如服務、值對象)放在此處 -->
    </fx:Declarations>
    <fx:Script>   
        <![CDATA[
            //初始化
            internal function initApp():void{
            var arr:Array = new Array();
            //給數組添加元素
        for(var i:Number =0 ;i<6;i++){
            arr.push("元素"+i);
        }
        //list控件指定數據
        list_1.dataProvider = arr;
        list_2.dataProvider = arr;
        //設置拖拽屬性
        list_1.dragEnabled = true;
        list_1.dropEnabled = true;
        list_1.allowMultipleSelection = true;
        list_2.dropEnabled = true;
        list_2.dragEnabled = true;
        }
        ]]>
    </fx:Script>
                                   
    <mx:Canvas styleName="box" x="45" y="65" width="420" height="360">
        <mx:List id="list_1" x="26.5" y="40" height="284" width="160"></mx:List>
        <mx:List id="list_2" x="229" y="40" height="284" width="160"></mx:List>
    </mx:Canvas>
</mx:Application>

初識ActionScript

ActionScript循環控制

<?xml version="1.0" encoding="utf-8"?>
<s: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" minWidth="955" minHeight="600" creationComplete="init()">
    <s:layout>
        <s:BasicLayout/>
    </s:layout>
    <fx:Declarations>
        <!-- 將非可視元素(例如服務、值對象)放在此處 -->
    </fx:Declarations>
    <fx:Script>
        <![CDATA[
            internal function init():void{
                var num:int = 0;
                var i:int = 0;
                do{
                    num = num + i;
                    i++;
                }while(i<100);
                                
                txt.text = txt.text+"\n"+num.toString();
                                
                var student:Object = new Object();
                student.name = "umgsai";
                student.age = 22;
                student.type = "本科";
                txt.text = txt.text+"\n"+student.name+"\n"+student.age+"\n"+student.type;
                                
                for(var prop:String in student){
                    txt.text = txt.text+"\n"+prop+":"+student[prop].toString();
                }
                                
                for each(var value:* in student){
                    txt.text=txt.text+"\n"+value.toString();
                }
            }
        ]]>
    </fx:Script>
    <mx:TextArea x="67" y="25" width="514" height="299" id="txt" fontSize="12" editable="true" enabled="true"/>
                        
</s:Application>

continue、break以及函數的用法都與C語言類似

<?xml version="1.0" encoding="utf-8"?>
<s: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" minWidth="955" minHeight="600" creationComplete="init()">
    <s:layout>
        <s:BasicLayout/>
    </s:layout>
    <fx:Declarations>
        <!-- 將非可視元素(例如服務、值對象)放在此處 -->
    </fx:Declarations>
    <fx:Script>
        <![CDATA[
            internal function init():void{
                var num:int = 0;
                for(var i:int = 0;i<100;i++){
                    if(i==50){
                        txt.text=txt.text+"continue"+"\n";
                        continue;
                    }
                    num=num+i;
                }
                txt.text=txt.text+num.toString()+"\n";
                count();
            }
                
            private function count():int{
                for(var i:int =0;i<5;i++){
                    for(var m:int =0;m<5;m++){
                        if(m>=3){
                            //return m;
                        }
                        txt.text=txt.text+i.toString()+":"+m.toString()+"\n";
                    }
                }
                return 1;
            }
        ]]>
    </fx:Script>
    <mx:TextArea x="97" y="52" width="469" height="253" id="txt" fontSize="12" fontFamily="微軟雅黑" editable="true"/>
</s:Application>



向AI問一下細節
推薦閱讀:
  1. 初識UNIX
  2. puppet 初識

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

盐山县| 抚远县| 万山特区| 什邡市| 开远市| 柯坪县| 沙雅县| 蓝田县| 武鸣县| 桐城市| 海城市| 涪陵区| 东辽县| 蒲江县| 盈江县| 马边| 衢州市| 贵州省| 广河县| 太仓市| 泰安市| 平邑县| 济南市| 邵阳市| 丹棱县| 临桂县| 商丘市| 无为县| 涞源县| 靖边县| 千阳县| 陆川县| 兰溪市| 巍山| 资兴市| 呼玛县| 固安县| 昭觉县| 阿拉善左旗| 宣威市| 鸡西市|