2010-11-25 40 views

回答

0

試試這個例子,如果有幫助。 重要的是在使用它之前嵌入圖像。嵌入的另一種方式是內聯在mx: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> 
0

您好有一個按鈕的點擊處理程序。在點擊處理程序句柄的功能中,通過切換可見性顯示圖像。將圖像嵌入到設計之前。然後玩它的可見性按鈕點擊。

+0

我想從硬盤圖像轉換成swf文件。可能嗎?再次感謝..! – hemanth 2010-11-25 08:52:57

相關問題