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

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

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

    隨筆-159  評論-114  文章-7  trackbacks-0

    On occasion you may want to create classes dynamically by name. To do this in Flex 3 you can use getDefinitionByName (it's previous incarnation was getClassByName). Here's a quick example:

    Actionscript:
    1. //cc() is called upon creationComplete
    2. private function cc():void
    3. {
    4.         var obj:Object = createInstance("flash.display.Sprite");
    5. }
    6.  
    7. public function createInstance(className:String):Object
    8. {
    9.         var myClass:Class = getDefinitionByName(className) as Class;
    10.         var instance:Object = new myClass();
    11.         return instance;
    12. }

    The docs for getDefinitionByName say:

    "Returns a reference to the class object of the class specified by the name parameter."

    ...so you may be wondering why in the above code we needed to specify the return value as a Class? This is because getDefinitionByName can also return a Function (e.g. 'flash.utils.getTimer' - a package level function that isn't in any class). As the return type can be either a Function or a Class the Flex team specified the return type to be Object and you are expected to perform a cast as necessary.

    The above code closely mimics the example given in the docs, but in one way it is a bad example because everything will work fine for "flash.display.Sprite", but try to do the same thing with a custom class and you will probably end up with the following error:

    ReferenceError: Error #1065: Variable [name of your class] is not defined.

    The reason for the error is that you must have a reference to your class in your code - e.g. you need to create a variable and specify it's type like so:

    Actionscript:
    1. private var forCompiler:SomeClass;

    Without doing this your class will not be compiled in to the .swf at compile time - and there is reason behind this madness. The compiler only includes classes which are actually used (and not just imported). It does so in order to optimise the size of the .swf. So the need to declare a variable should not really be considered an oversight or bug, although it does feel hackish to declare a variable that you don't directly use.

    Here is the code your would need to create a custom class called Person from a string (where Person resides in the top level package along with your default application).

    Actionscript:
    1. //cc() is called upon creationComplete
    2. private var forCompiler:Person; //REQUIRED! (but otherwise not used)
    3.  
    4. private function cc():void
    5. {
    6.         var obj:Object = createInstance("Person");
    7. }
    8.  
    9. public function createInstance(className:String):Object
    10. {
    11.         var myClass:Class = getDefinitionByName(className) as Class;
    12.         var instance:Object = new myClass();
    13.         return instance;
    14. }

     

    You can declare properties for all possible classes that you intend to create but if you are not happy with doing that inside your main app Alex Harui has another suggestion (something I've not personally tried yet):

    "The code for the class has to be in a SWF. It can be in the main SWF or
    loaded via a module later. There is a compiler option (-includes) that
    allows you to stuff other classes into a SWF without explicitly naming
    them in your source code."

    Passing in Parameters

    Another thing you may find yourself wanting to do is to pass parameters to the constructor of your class (indeed, this is what got me on to the subject today). As far as I'm aware this isn't possible to do this in AS3 (and isn't part of the ECMA spec so it is unlikely to change - please leave a comment or email if you know otherwise ), so you may want to set up another method which can accept and set multiple parameters . If you pass in an array you may stumble across another problem - the original array you passed in becomes the first item of a new array ... okay, that probably sounds confusing so see here for a similar example and solution. In short, the solution is to use Function.apply, and you can see how I used it below:

    Actionscript:
    1. private var forCompiler:Person;
    2.  
    3. private function cc():void
    4. {
    5.         var obj:Object = createInstance("Person", ["bob", 30]);
    6. }
    7.  
    8. public function createInstance(className:String, args:Array):Object
    9. {
    10.         var myClass:Class = getDefinitionByName(className) as Class;
    11.         var instance:Object = new myClass();
    12.         instance.initArgs.apply(null, args);
    13.         return instance;
    14. }
    15.  
    16. /*********************************************************************
    17. //In person.initArgs()....
    18. //Note: the constructor also accepts name &amp; age, assigning them default values
    19. //if not specified.
    20. public function initArgs(name:String, age:uint):void
    21. {
    22.         this.name = name;
    23.         this.age = age;
    24. }
    25. *********************************************************************/

    Now, I'm not sure if this is the best approach, but it works, and with a deadline approaching that's good enough for now :]



    u dont have to create a variable, its enough just to reference to the class somewhere in the code;

    package example
    {
    import example.items.*;
    import flash.utils.getDefinitionByName;

    // force import
    example.items.Class1;
    example.items.Class2;

    class Test
    {
    public function Test()
    {
    var test:Class = getDefinitionByName(”example.items.Class1?) as Class;

    var testInstance = new test();
    }
    }
    }



    posted on 2010-02-14 15:40 北國狼人的BloG 閱讀(229) 評論(0)  編輯  收藏

    只有注冊用戶登錄后才能發表評論。


    網站導航:
     
    主站蜘蛛池模板: 18禁美女裸体免费网站| 一道本在线免费视频| 18女人毛片水真多免费| 亚洲av无码不卡| 四虎影视无码永久免费| 中文字幕在亚洲第一在线| 成人a毛片视频免费看| 国产亚洲AV手机在线观看| 国产高清对白在线观看免费91 | 又粗又长又爽又长黄免费视频| 国产99视频精品免费视频7| 香蕉视频亚洲一级| 久久精品国产亚洲5555| 久操免费在线观看| 亚洲视频一区网站| 久久久久国色AV免费观看性色| 亚洲日韩精品无码AV海量| 国产免费拔擦拔擦8x| eeuss免费天堂影院| 久久久久久久久亚洲| 日本h在线精品免费观看| 亚洲六月丁香婷婷综合| 国产成人涩涩涩视频在线观看免费| 免费的黄色的网站| 亚洲AV无码精品色午夜果冻不卡| 91短视频免费在线观看| 亚洲另类无码一区二区三区| 亚洲精品国精品久久99热| 久久免费福利视频| tom影院亚洲国产一区二区| 日本一道高清不卡免费| 三级黄色免费观看| 亚洲人成电影在线观看青青| 免费a级毛片在线观看| 97无码人妻福利免费公开在线视频 | mm1313亚洲精品无码又大又粗 | 国产精品hd免费观看| 亚洲综合色一区二区三区小说| 成人午夜性A级毛片免费| 精品国产污污免费网站入口在线| 亚洲欧洲视频在线观看|