<rt id="bn8ez"></rt>
<label id="bn8ez"></label>

  • <span id="bn8ez"></span>

    <label id="bn8ez"><meter id="bn8ez"></meter></label>

    Love is love, work is need.

    Pay my all effort for a memorable life story.

      BlogJava :: 首頁 :: 新隨筆 :: 聯(lián)系 :: 聚合  :: 管理 ::
      7 隨筆 :: 0 文章 :: 3 評論 :: 0 Trackbacks

    2010年4月21日 #

    II.1.Each MXML component extends,or id derived from, an existing ActionScript class.

    II.2. In an MXML component, each property that you want to be bindable needs its own [Bindable] tag.

    With ActionScript class definitions, you can mark all the class's properties as bindable with a single instance of the [Bindable] metadata tag placed before the class declaration.

    II.3.compc for libraries generation.

    ####page.256 23:22 2010-3-17

    II.4.Navigator containers / View states

    Navigator containers : Move from one view to another.
    View states: change an existing view.

    NOTE:
        Q&A
        Q:How to handling navigator container sizing?
        A:3 ways:
            1.Set the Set the navigator container's dimensions to specific pixel or percentage dimensions, and then set the nested container sizes to 100 percent height and width.Each of the nested view containers then resizes to fill the available space in the navigator container.
            2.Set the nested containers to specific pixel dimensions, and set the navigator container's 'resizeToContent' property to true.
            CAUTION:
                Setting resizeToContent to true forces the navigator container to re-measure and
    re-draw itself as the user navigates through the application. This can cause interesting
    and unintended visual effects, particularly when the navigator container has a visible border or
    background.

    II.5.Backslash and Forwardslash character

    Do not usint backslash character '\' as separator in the path to an application asset, you should always using forwardslash character '/' as separator.

    II.6.New line


    ActionScript:    '\n'
    MXML    :    "&#13;"

    II.7.ActionScript basic access control


        public   
        private
        protected    class and it subclass, note this is different from Java, which is allowed access in same package.
        internal     the default access specifier that allowed all other class which in the same package can access it.
        BUT, if above default namespace is not suit for you, you can create your namespace.
     

       III.1.To define an namespace, you have two choice: omit the URI or not, like:


        namespace myzoo;
            or
        namespace myzoo = "
        once the namespace defined, in its using scope, it can't be redefined.
        So, what the scope it control?
        e.g,:
            package org.mai {
                    namespace maizoo;  //means internal.
            }
            package org.mai {
                public namespace maizoo; //means it can be accessed by other class which it improved it.
            }

        III.2. Applying namespaces


        e.g,:
            namespace maizoo;
            class MaiClass{
                maizoo myFunction(){};
            }
            the namespace can be placed in front of variable, constant, function, but class.

        III.3.Refrencing namespaces


        Unlike the default namespaces, (public, private...etc;), which they are controled by context, the user defined namespace must be specified by user himself. Still, you can using the keyword 'use namespace' to simplicified it.(Like you did in C++!)
        use namespace maizoo;
        myFunction();
        or
        maizoo::myFunction();

    II.8.The variable scope

        ActionScript, unlike C++ or Java, doesn't have a 'block level scope', which means that if your declare a variable in a block, the variable is also available in anywhere of the function which the block belong to.
        e.g,:
        public function do:void(){
            for(var i:int = 0; i < 20 ; i++){
                var m:String = i + "xxx";
            }
            trance(m); // also avaiable here!
        }
        Because laking the block level scope variable scope, the compiler is ( almost is ) can understand how many variable is in some function, this is called 'hoisting', which can be thought as the compiler move all the variables declared to the top of an function. NOTE: the assignment will not be hositing, so the follow is easy understandable:

            trace(num);    // output NaN;
            var num:Number = 20;
            trace(num);// will outout 20.

    II.9. Default value

    DataType Value
    Boolean false
    int 0
    uint 0
    Numbwer NaN
    * undefined
    Object null
    String null
    All Other Class null

     

    II.10. is / instanceof /as

        III.1.is / instanceof    :: return Boolean.

        is : can check an object is an instance of an class or an inherit from some class or it is implement of some interface.

        instanceof: as well as 'is' but will be return false if using check an interface.

        III.2. as


        as : is return an string or null, to check an object is a member of a given data type.
        e.g,:
            var a:Sprite = new Sprite();
            trace( a as Sprite);    //[Object Sprite]
            trace( a as IEDispatch);    //[Object Sprite]
            trace( a as Number);    //null

    II.11. Dynamic class and Sealed class

    Dynamic class is a class which it's object can add method or variable at runtime. This is like javascript prototype but more strict.

    But method added by this way is not have the ability to access the private variable.(NEED CHECKED!)

    ####page 83,proAS_Flex3 23:36 2010-3-23

    II.12.Function Expressions and Statements

    Thinking following example:

    class MaiZoo{
        var maiFunc = function(){};
        function maiStateFunc(){};
    }

    var maiZoo:MaiZoo = new MaiZoo();
    maiZoo.maiFunc(); //Error in 'Strick' mode;Ok in standard mode
    maiZoo.maiStateFunc();    // Works fine in both mode.

    If you wanna call an expression function in strick mode, the workaround way is:

    maiZoo['maiFunc']();    //Guess what? like EL hah? And this is real a javascript way:)

    Both satuation above code works fine.

    Second way, you can declare whole class as 'dynamic',this way allow you call function express in strick mode, but this way will sacrifice the strick checking and if you attempt to access an undefined property for an instance,the compiler will not generate an error.(?)

        III.1.Live sope


        The different between function expression and function statement is that the function statement is exist throughtout the scope in which they are defined, INCLUDING IN THE STATEMENTS THAT APPEAR BEFORE THE FUNCTION STATEMENT!!!

    But the function expression is not. So the following code will generate an error:

                expressionFunc(); //Runtime Error

                var expressionFunc:Function= function(){};

        and if we using:
                statementFunc(); //OK
                function statementFunc():void{};

        III.2. Delete property


            dynamic class Obj{};
            var myObj:Obj = new Obj();
            myObj.expressionFunc = function(){};
            delete myObj.expressionFunc;
            myObj.expressionFunc();            //Error; cause the function is 'anonymous', it's just GONE!
            //BUT..
            function stateFunc():void{}
            myObj.stateFunc = stateFunc;
            delete stateFunc;        //No effect. 
            stateFunc();        //Still working, lalala~
            delete myObj.stateFunc;
            myObj.steteFunc();        // Error!
            stateFunc();        //Haha, Nondead!

    II.13.Function ! Function! Function!

        All thing is object, so all the function call is pass by refrence, BUT, for primer type, they works as if pass by value.

        Have fixed argument(s) function has an imply object called 'arguments'
            1. arguments is an array that contain all actual arguments the function be passed.
            2. arguments.length
            3. arguments.callee is an refrence to the function itself. so if you are using an anonymous function, you know how to do if you want do a recursion.
            4. if you named your parameter 'arguments', it will overwrite the arguments, so you cry means nothing!
            ...(rest)
            this is an way to define an function that not have the fixed but variable arguments.
            e.g,:
            function doX(... args):void{}
            also, you can using (rest) as the way 'arguments' do in normal function, but they DONT HAVE an 'callee' attribute.
    ####page 101,proAS_Flex3 23:36 2010-3-23 22:19 2010-3-24


    2009年10月12日 #

    First test for write blog using m$ live writer.

    If this setting works fine, I’ll see the result porperly.

    The web service of metaBlogAPI is:

    http://yourname.blogjava.net/services/metaweblog.aspx

    and next next next…

    posted @ 2009-10-12 11:49 Mai Qi 閱讀(176) | 評論 (0)編輯 收藏

    2009年5月27日 #

    When you have some work experience about programming, you’ll find that you can’t inform normal company’s interview questions like “How to parse an int value from a String”. You know how to do that but it doesn’t mean you can write down the answer rightly. This is very common. OK, frankly speaking, I’m talk about myself. I was face that badly feeling interview yesterday,  and on the same day I’m also losing something that I was thought that can’t be lose so quickly and… that day is coming, I have nothing to argue, no power for complain, because I’m the badly of all. Obversely, the follower thing is defeat me badly. One should never arrogant even when he is at his best, and what time is my best? I don’t know. When that day is coming, please note me let me know that, so I can happy and enjoy it secretly. No more speaking, I’m sad, really, deeply...
    God. Now I know why so many person calls you name. Some one always needs some powerful person that helps them from their life time. But where are you? If you can let me know the location that you are, please send me the axis by email, so I can google map it by firefox...


    posted @ 2009-05-27 13:51 Mai Qi 閱讀(158) | 評論 (0)編輯 收藏

    2009年4月24日 #

    I’m not sure it is or it is NOT in future, but for now, I can say I find out a way to release myself from the uncomfortable situation.  Yes, I refresh myself, reborn my heart or in another way saying, I know how to do and how to make things happen, what I can controlled, who I am, what my love is and how to extend the value it has. This was hard for me in past, but things are different from now on.

    When that thing happened, I feel like a man that no one cares. Actually this is not true. Really not true. As that words say: “Some one closed door, we still have the windows. ”

    Don’t waste your time on valueless thing, look at your heart and suffer the whole world in it. No one can make you feel bad, and the happy things are everywhere. Live is good, taste more as you can.

    The next thing is to defeat my weakness, force me to do things. I’m a man, so, to be a really man. Haha!

    posted @ 2009-04-24 14:06 Mai Qi 閱讀(243) | 評論 (3)編輯 收藏

    2008年12月11日 #

    Ok, whether this time is the right time I don’t know, but I just need reload myself. Every time when I thinking why I’m here and what I’ll do the answer is always “Keep going boy, never look back because you are the man who will control every situation that hardest in before but now it is nothing and easy to passed by. In another way of saying, it means I’ll success vanquish my fear today in tomorrow that I faced again.” Now, those words will be added some thing new, which is “whatever I was fear is, I’ll solve it NOW, never to waiting it appear again. I’ll destroy it just now, not tomorrow.” I find my location myself, I set my axis myself, and I’ll keep my road to be the best man myself. Never to wait someone’s helped, never to beg someone’s sympathy. You are the ONE who not stronger, you’ll ever worth to be helped. We don’t need only help; we just need help each other. Everything can be getting by exchanged, if you have the things that other needing.

    Never lose you faith. You are the man. Keep going!

    posted @ 2008-12-11 15:47 Mai Qi 閱讀(268) | 評論 (0)編輯 收藏

    2008年10月12日 #

    Some time I find myself forgot things very easy, something I’ve down before, study before, but just can remember a little. Why? Is this means I’m old or I’m greed? I don’t know. Everyday’s work expend my energy a lot, everyday’s simple little thing head up makes me can’t thinking for things I liked, or digest what I studied in spare time. Follow some one doesn’t know how to help you plan your work, or maybe this man very clear how to plan me to work for him, so I couldn’t know what I’ve doing next, everything is particle, pitch, what the whole thing is? I don’t know. And if you not urge me do things like a machine not a human, a worker, or an engineer, I’ll very appreciate you.

    Another thing is, just as is, I must make myself know how to balance work and rest. Life is gift, can’t waste valueless.

    posted @ 2008-10-12 00:02 Mai Qi 閱讀(191) | 評論 (0)編輯 收藏

    2008年9月11日 #

     

    I know I’m stupid enough. I thought in past I do a lot bad thing and waste a lot of time doing so I’m here and feel sadly some time. But fun thing is I still can found things make me happy, a lots of time at least, I know, that means I still know what love is. If I keep my heart open and share my knowledge, I can get new friend that also simple in some area and kind to other like me, is that true or not?  Hehe, you judge it. Life is a gift, what I seeking for? This is a big question, a big subject for everybody, so some time I was tired for finding that question which never can be answered, and choose a best question that can make me simple and simple again.

    This area is just a place that keeps my note and, as you see, puts my complaint. I’m the king here, but god is still over my head. So look out your mouth, my friend.

    posted @ 2008-09-11 21:27 Mai Qi 閱讀(191) | 評論 (0)編輯 收藏

    僅列出標(biāo)題  
    主站蜘蛛池模板: 亚洲av综合av一区| 久久久久亚洲av毛片大| 亚洲成a人片77777老司机| 一区二区三区在线观看免费| 一区国严二区亚洲三区| 黄色大片免费网站| 亚洲欧洲久久av| 成人片黄网站色大片免费观看cn| 在线观看亚洲天天一三视| 最新久久免费视频| 久久精品国产亚洲AV网站| 91香蕉国产线观看免费全集| 亚洲综合激情另类小说区| 九九精品免费视频| 亚洲日本在线电影| 亚洲av成人一区二区三区在线观看| 国产精品免费久久久久电影网| 亚洲精品无码久久久久sm| 色欲A∨无码蜜臀AV免费播| 亚洲日本乱码一区二区在线二产线| 青草草色A免费观看在线| 亚洲人成色777777精品| 亚洲国产精品自在拍在线播放| 国产在线观a免费观看| 911精品国产亚洲日本美国韩国| 亚洲国产精品免费观看| 亚洲大尺度无码无码专线一区| 亚洲精品99久久久久中文字幕 | 亚洲精品在线免费观看视频| 成人区精品一区二区不卡亚洲| 亚洲成?v人片天堂网无码| 最近国语视频在线观看免费播放| 亚洲精品在线不卡| 又粗又大又长又爽免费视频| 成人电影在线免费观看| 亚洲kkk4444在线观看| 亚洲乱码中文字幕综合| 手机在线看永久av片免费| 一级毛片免费毛片毛片| 亚洲成a人片在线观看中文app| 国产精品视频免费一区二区三区|