如何为flex 3中的按钮提供功能?

发布于 2024-10-04 07:37:15 字数 79 浏览 1 评论 0 原文

我是 Flex 新手。我想创建一些按钮,当单击该按钮时,它应该打开一些图像。如何在 Flex Builder 3 中提供此功能。感谢您的宝贵时间

i am new to flex. I want to create some buttons and when v click on that button, it should open some images. how to give this functionality in flex builder 3. Thanks for ur time

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

风吹过旳痕迹 2024-10-11 07:37:15

如果有帮助,请尝试这个示例。
重要的是在使用图像之前嵌入图像。另一种嵌入方式是内联在 mx:Image 标签中。请注意图像位置的路径。

 
         

    




Try this example if it helps.
The important thing is embedding the image before you use it.Another way of embedding is inline in the mx:Image tag.Please be careful with the path to the location of the image.

       <?xml version="1.0" encoding="utf-8"?>
         <mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute">
<mx:Script>
    <![CDATA[
        /*in the source put the absolute path(like directory:/folder/image.gif) or the relative path (../image.gif where ../ is your project directory )to the location of your image
         */
        [Embed (source="../src/assets/images/image.gif")]
         [Bindable]
         //this variable of type Class is used to refer to the aboveimage..
         public var img:Class;
         public function buttonClickHandler():void{
          if(image.visible)
          image.visible = false;
          else
          image.visible = true;
          }
          ]]>
</mx:Script>
<mx:Image source="{img}" visible="false" id="image"/>
<mx:Button x="172" y="225" label="Button" id="button" click="buttonClickHandler()"/>
</mx:Application>
葬シ愛 2024-10-11 07:37:15

您好,有一个按钮的点击处理程序。在单击处理程序的功能中,通过切换可见性来处理图像的显示。将图像嵌入到设计中。然后在单击按钮时播放它的可见性。

hi have a click handler for the button. in the function of click handler handle displaying of image by switching visibilities.have the image embedded in the design before itself. then play with its visibilities on button click.

鲸落 2024-10-11 07:37:15

尝试查看此处的示例。解释了所有类型的资产嵌入,包括声音
http://livedocs.adobe.com/flex/3 /html/help.html?content=04_OO_Programming_09.html

try going through the examples here.explains about all kind of asset embedding,including sound
http://livedocs.adobe.com/flex/3/html/help.html?content=04_OO_Programming_09.html

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文