Adding button in Actionscript code : Using Flex Builder - Stack Overflow most recent 30 from stackoverflow.com 2009-12-23T04:50:17Z http://stackoverflow.com/feeds/question/1022215 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1022215/adding-button-in-actionscript-code-using-flex-builder 0 Adding button in Actionscript code : Using Flex Builder dta 2009-06-20T18:42:20Z 2009-06-23T20:58:14Z <p>I created a new actionscript project using Flex Builder 3 and tried</p> <p>to run the following file. I get this error : </p> <p>Definitions: fl.controls:Button could not be found. All I want to do is, to add a button to the application. How could I do it?</p> <pre><code>package { import PaperBase; import org.papervision3d.objects.primitives.Cone; import fl.controls.Button; import fl.controls.Label; import fl.events.ComponentEvent; public class cone1 extends PaperBase { public var cone:Cone = new Cone(); protected var sceneWidth:Number; protected var sceneHeight:Number; public function cone1() { sceneWidth = stage.stageWidth sceneHeight = stage.stageHeight; init(sceneWidth*0.5,sceneHeight*0.5);//position of the cone } override protected function init3d():void { cone.scale = 5; cone.pitch(-40) default_scene.addChild(cone); } override protected function processFrame():void { cone.yaw(1);//rotation speed } } } </code></pre> http://stackoverflow.com/questions/1022215/adding-button-in-actionscript-code-using-flex-builder/1023165#1023165 1 Answer by Branden Hall for Adding button in Actionscript code : Using Flex Builder Branden Hall 2009-06-21T03:52:45Z 2009-06-21T03:52:45Z <p>The fl.* package is part of Flash Professional, not Flex. For Flex you should be using the components that are part of the mx.* package.</p> <p>Now, that being said, I'm fairly sure it is possible to use Flash components in Flex. I'm just not sure how it's done off the top of my head.</p> <p>Also, you don't need an actual button component to get a "button like" ui element - any class that extends InteractiveObject will do. This incldes Sprite and MovieClip. </p> http://stackoverflow.com/questions/1022215/adding-button-in-actionscript-code-using-flex-builder/1035045#1035045 0 Answer by John Isaacks for Adding button in Actionscript code : Using Flex Builder John Isaacks 2009-06-23T20:39:26Z 2009-06-23T20:39:26Z <p>Branden is correct the fl package is a part of the Flash IDE..I am not sure either but you may be able to add the package to your class path if you know where the package resides on your file system..i am guessing somewhere in C:/program files/adobe/flash</p> <p>if you want to use components in flex builder I think you need make a flex project not an actionscript project</p> <p>and change your imports to:</p> <pre><code>import mx.controls.Button; import mx.controls.Label; import mx.events.FlexEvent; </code></pre> <p>Also if you do not need to use components either you can use a Sprite for a button like branden said and you could just use a TextField for a label.</p> <p>another option if you have the flash IDE is to make a SimpleButton, press F8 select button, click enter. then give it a linkage name by right clickin it in the library panel and selecting linkage name. then export the .swf and put the swf in the src folder for your project and embed it like this:</p> <pre><code>[Embed(source="flashfile.swf")] public var myButton:Class; </code></pre> <p>You may even be able to export the Flash IDE components this way but not sure...actually I am not 100% positive if the [Embed] meta data works in an actionscript project or just flex projects so you will have to check and see.</p> http://stackoverflow.com/questions/1022215/adding-button-in-actionscript-code-using-flex-builder/1035174#1035174 0 Answer by philip for Adding button in Actionscript code : Using Flex Builder philip 2009-06-23T20:58:14Z 2009-06-23T20:58:14Z <p>Not sure why you would want to, but if you need to import the flash libs into flex,try dragging what you want to the stage in flash and exporting as a .swc file to import into your flex project.</p>