我是新來flex。我想創建一些按鈕,當點擊那個按鈕時,它應該打開一些圖像。如何在Flex Builder 3中提供此功能。感謝您的時間如何爲flex 3中的按鈕提供功能?
0
A
回答
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
嘗試經歷的例子here.explains所有類型的資產嵌入,包括聲音 http://livedocs.adobe.com/flex/3/html/help.html?content=04_OO_Programming_09.html
相關問題
- 1. Codeigniter:3提交按鈕,一個功能?
- 2. 如何在iOS中提供按鈕退出功能
- 3. 如何在Rails 3中爲formtastic中的表單提供多個提交按鈕?
- 4. C++ .NET爲2個按鈕提供相同的點擊功能?
- 5. 如何爲具有相似功能的所有按鈕提供單一方法
- 6. 根據條件爲按鈕提供兩種功能
- 7. 如何在警報對話框中提供單選按鈕功能?
- 8. 如何在WCF中提供DISTINCT功能
- 9. 如何將主頁按鈕和應用程序切換按鈕功能提供給自定義按鈕?
- 10. Flex 3 Actionscript Array Subtract功能
- 11. 如何爲android中的單選按鈕提供編號?
- 12. Chrome中提供Firebug功能?
- 13. 按鈕功能
- 14. 爲我的功能提供EXC_BAD_ACCESS的iOS
- 15. 按鈕中的功能
- 16. Flex 3 - 在按鈕欄中獲取focusedIndex
- 17. 如何檢查Flex 3中單選按鈕的狀態?
- 18. Flex 3:如何使用組件中的按鈕刪除組件
- 19. 如何在flex 3中的皮膚按鈕?
- 20. 如何提供陰影按鈕
- 21. 登錄/註冊按鈕都是一樣的。我如何給同一個按鈕提供2個功能?
- 22. 如何在CSS中爲瀏覽按鈕提供樣式(圖片)?
- 23. 如何在Swiftmailer中按鈕功能
- 24. 如何用jQuery提供某些功能?
- 25. 如何在C++中爲朋友功能提供保護
- 26. 爲mvc 4應用程序提供社交媒體按鈕功能?
- 27. 我如何禁用flex 3上的按鈕的工具提示togglebuttonbar
- 28. 添加功能提交按鈕
- 29. JSFiddle無法提供DataTable導出爲按鈕的按鈕
- 30. 呼叫功能提交按鈕
我想從硬盤圖像轉換成swf文件。可能嗎?再次感謝..! – hemanth 2010-11-25 08:52:57