Actionscript 3 向滚动条动态添加图像

Actionscript 3 向滚动条动态添加图像,actionscript-3,apache-flex,flex4.5,mxml,Actionscript 3,Apache Flex,Flex4.5,Mxml,我是flex新手。我正在尝试使用文件引用在flex中动态添加图像。我需要在scroller中添加图像。我使用下面的代码,但添加图像不可见。有人能帮我解决这个问题吗?请提前感谢 <?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

我是flex新手。我正在尝试使用文件引用在flex中动态添加图像。我需要在scroller中添加图像。我使用下面的代码,但添加图像不可见。有人能帮我解决这个问题吗?请提前感谢

<?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"
               xmlns:net="flash.net.*">
    <fx:Script>
        <![CDATA[
            import mx.controls.Alert;
            import mx.controls.Image;
            import mx.utils.ObjectUtil;
            private var myImage:Image;
            private function OnbuttonClick(evt:MouseEvent):void {
                var arr:Array = [];
                arr.push(new FileFilter("Images", ".gif;*.jpeg;*.jpg;*.png"));
                fileReference.browse(arr);
            }

            private function FileRefSelect(evt:Event):void {
                fileReference.load();
            }

            private function FileRefComplete(evt:Event):void {
                Alert.show(ObjectUtil.toString(fileReference));
                myImage             = new Image();
                //img.source = fileReference.data;

                myImage.maxWidth    = 100;
                myImage.maxHeight   = 100;
                myImage.source      = fileReference.data;
                vg.addChild(myImage);

            }
        ]]>
    </fx:Script>

    <fx:Declarations>
        <net:FileReference id="fileReference"
                           select="FileRefSelect(event);"
                           complete="FileRefComplete(event);" />
    </fx:Declarations>



    <mx:ControlBar>
        <mx:Button id="btn" label="Browse Your Image"  click="OnbuttonClick(event);" />
    </mx:ControlBar>

    <s:Scroller id="scrllr" x="50" y="100" width="100" height="280" focusEnabled="false"
                hasFocusableChildren="true">
        <s:VGroup id="vg">

        </s:VGroup>
    </s:Scroller>


</s:Application>

您需要使用
vg.addElement(myImage)而不是
vg.addChild(myImage)。我想你也会有例外提到同样的事情