我想在图像上添加一个链接

时间:2010-04-14 23:36:01

标签: flex actionscript-3

我正在尝试使用ActionScript添加图像链接。无论如何我都看不到这个链接。以下是我的代码,你能否告诉我我做错了什么。

  <?xml version="1.0" encoding="utf-8"?>
<mx:Application creationComplete="application1_creationCompleteHandler(event)" xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute" minWidth="955" minHeight="600">
    <mx:Script>
        <![CDATA[
            import mx.controls.Button;
            import mx.controls.Image;
            import mx.events.FlexEvent;

            protected function application1_creationCompleteHandler(event:FlexEvent):void
            {               
                var but:Button = new Button();
                but.label = "BUT";
                uic.addChild(but);
                      var dollLoader:Loader=new Loader();  
                                dollLoader.contentLoaderInfo.addEventListener(Event.COMPLETE, dollCompleteHandler);  
                                var dollRequest:URLRequest =  new URLRequest("http://www.google.com/intl/en_ALL/images/logo.gif");  
                                dollLoader.load(dollRequest);  
                                uic.addChild(dollLoader);  

                }

            private function dollCompleteHandler(event:Event):void   
                        {  


                        }  

        ]]>
    </mx:Script>

    <mx:UIComponent id="uic" width="100%" height="100%">

    </mx:UIComponent>

</mx:Application>

1 个答案:

答案 0 :(得分:1)

两个建议:

  1. 由于您要添加的按钮,图像会覆盖该按钮。在图像之后而不是之前添加按钮。

  2. 除非您指定高度和高度,否则您将无法看到该按钮。宽度。

  3. 例如:

    but.width = 100;
    but.height = 100;