ActionScript 3.0 :: AIR Converting From MXML?
Oct 5, 2009
can any of you convert the following Flex to AS3, I have tried -keep-generated-actionscript but it just gives a lot of confusing code.
Code:
<?xml version="1.0" encoding="utf-8"?>
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" applicationComplete="main()">
[Code].....
View 2 Replies
Similar Posts:
Sep 25, 2009
How to take an existing custom component in Flex and convert it into a module? EDIT: What should be done in the mxml where this custom component is used? Should it be replaced with a to load the module? If yes, how to deal with code that uses instances of the components?
View 2 Replies
Mar 19, 2010
how to use actionscript over mxml for flexibility. I have this simple block of mxml that I'm trying to convert to actionscript, but I'm stuck half way though
<s:Rect id="theRect" x="0" y="50" width="15%" height="15%">
<s:fill>
<s:SolidColor color="black" alpha="0.9" />
[Code]....
What's the most efficient way to add the SolidColor in as few lines of code as possible.
View 2 Replies
Jan 10, 2012
I wrote a big Actionscript project using AS3 as an "Actionscript Project" in Flash Builder 4.5. I have a bunch of solid, reusable, code, but one of the big components is a main.as file that extends Sprite and serves as the display code for my application. I now, for various reasons, need that to be a Flex application. I'm trying to get the most minimal wrapper possible, so here's what
[Code]...
View 2 Replies
Sep 24, 2009
Does MXML get compiled down to as3 and then converted to flash bytecode? Also, is there a significant performance penalty to compiling mxml vs compiling as3?
View 3 Replies
Jun 4, 2011
I am working on a custom Flex 4 component which is an aggregation of two existing flex components. I would like to be able to specify my own custom properties for the component as well as access the existing public subcomponent properties via MXML. For instance I might want to adjust the font color or style for the label and text input. toy component which aggregates both a label and a text input:
<?xml version="1.0" encoding="utf-8"?>
<s:Group xmlns:fx="http://ns.adobe.com/mxml/2009"
xmlns:s="library://ns.adobe.com/flex/spark"
[code]....
View 1 Replies
May 28, 2011
I am trying to override a Button class, i have a few properties which i wish directly initialise with the mxml description of the component, like :[code]which function is triggered ( in order to override it ) when all properties with mxml description is fully initialised with their values ?
View 1 Replies
Feb 3, 2011
What I'd like to do: create an MXML component with some children, then extend it via MXML to create a new component with more children, without losing the original set.In other words
create a component bc.mxml
<?xml version="1.0" encoding="utf-8"?>
<s:BorderContainer xmlns:fx="http://ns.adobe.com/mxml/2009"
[code].....
View 1 Replies
Jun 22, 2011
I'm trying to do this using only mxml, no <script> tags, although I don't necessarily need a solution that's only mxml. It was more of an educational exercise to see if I could do it all in mxml. I have a custom component that has a slider and textinput and their value/text properties are bound together. I'm surfacing a few properties of the slider in my component so that it can sort of be treated like a slider.
[Code]...
View 1 Replies
Sep 27, 2011
i have defined some functions in a component mxml file let us say addbutton() now i want to call this function in main mxml file.
View 2 Replies
Apr 23, 2010
main.mxml
[Bindable]
private var _dp:ArrayCollection = new ArrayCollection([
[code].....
View 1 Replies
Jun 19, 2011
I have 3 mxml components. In Component 1, I let the users fill in some data. In Component 3 I want to use the data, but I can't find a way to make it work.
View 1 Replies
Jul 7, 2010
suppose i have 3 buttons(for example say, productin, marketing, sales ) on my main.mxml..once i click on one button it should take me to abc.mxml page with production data, once again if i click on second button it should take me to the same abc.mxml but with marketing data. same as for 3rd button also, how can i achieve this ?
View 2 Replies
May 18, 2011
I've been trying to create a custom mxml component that extends another custom mxml component (i.e.MyMXMLComponent -> BaseMXMLComponent -> Group). I've been reading that trying to add visual children to MyMXMLComponent caused error with Flex 3 but that's no longer the case with Flex 4.
What I want to know is whether this is a supported/fixed/documented feature of Flex 4? or just some undefined behavior in Flex 4 that may get changed with future updates?
if this is supported and documented feature, does anyone have link pointing to adobe document stating it as such?
View 1 Replies
Mar 9, 2012
This is a project I'm working on for a simple demo tutorial application in Flex. I am using mxml pages. You can see to the left that I will have my main application and then other mxml files (In the Examples Package) as the examples that will be loaded into the main application mxml. How can I dynamically pull the value from the object in the list to load the child mxml file into the container that I have further down in the application?
View 1 Replies
May 16, 2011
I have a method in CustomPanel.mxml and I need to use id which is available in Main.mxml. Below is my sample code
Main.mxml
<local:CustomDivideBox id="div1">
Custompanel.mxml[code]....
View 2 Replies
Jul 25, 2011
I would like to include an MXML file in my MXML file in the same way you can include an external file in AS3 using the include directive. Using the include directive brings the code from the external file into the original file at compile time placing it in the same scope. For example,
Application.mxml:
<Application>
<source="external.mxml"/>
[code].......
View 4 Replies
Aug 12, 2009
A Flex components values are initlized by init methord. In an application flow, How to refresh a mxml component data value ; as init is callled at the start up it self only.
eg. of mxml componet may be as simple as button label or text as complex as repeater whose data provider is a web service ( means a fresh quesy should be made to pull the data and refresh the dataprovider of repeater )
View 3 Replies
May 6, 2010
I am looking to subclass RemoteObject. Instead of:
<mx:RemoteObject ... >
<mx:method ... />
<mx:method ... />
[code].....
View 1 Replies
Jul 21, 2011
My Application is in Flex 3.5. My Code is Here,How to take the id value of textare?[code]...
View 2 Replies
Jun 18, 2009
I have developed a small chat application in flex. I have the mxml and some as (actionscript) files. I have the result returned from a php page in the mxml. I have this value in the script section of mxmlmyName = event.result.login;I have assigned this value to;<mx:Text id="uname" text="descr" valueCommit="myName" visible="false" />Now I need to get the value of this, that is, I need to get the value of "myName" in one f my as files. I could get the name and id of Text, but what do I need to do to get the value of Text in as code...In javascript I could do like getElementById(' ').value...How could I get the value here.
View 2 Replies
Jun 3, 2009
I'm trying to convert some flv files to swf so I can place them on my online course. I'm working with Flash CS4. This is what I have done so far.
1) I embedded the flv files into a new project.
2) And then I just exported the file as a movie.
This worked well but only to an extent. There is about 10 seconds worth of dead time at the start of some of my videos, and they automatically loop themselves, when the loop feature is not on.
View 1 Replies
Jul 13, 2009
I have created a slideshow in flash 8 for my website, though the file needs to be a .flv. I've read lots of similar posts, tried some trial versions of converters and .swf decompilers, and it seems that you either need to buy a converter, or buy quicktime pro to achieve this. I'm just wondering if there are any alternatives, or if perhaps some kind fellow out there would be willing to convert it for me? The .swf file is attached, if any passing samaritan is feeling charitable.
Attachments:
slideshow.swf (348.7 K)
View 7 Replies
Aug 13, 2006
Just wanted to know if anybody knows how to convert swf to vob?I have a flash movie that I want to put on a dvd and I do not know how.
View 9 Replies
May 2, 2010
I currently finished one video i was making on flash. It is for one tv commercial so i need to convert it from swf to hdtv video file 16:9. I'm currently using winavi but i'm not completely satisfied by the result
View 1 Replies
Jul 28, 2009
I am getting a value in a MXML... now i need to pass it to another MXML to invoke an event... how can i do it.
View 4 Replies
Oct 22, 2009
I'm trying to compile gui/flex/songs.mxml in the fourth edition of Bruce Eckel's Thinking in Java book and am getting a compilation error with Flex 3.4.
Here is a simplified version of the example that gives the same error:
[Code]...
View 1 Replies
Jan 17, 2010
I've been having trouble exporting Adobe Flex using Adobe Air. I can't find the runnable application Air, and so when I export something to be opened in air it can't be opened. I'm on a Mac Powerbook G4 running OS 10.5.8.
View 1 Replies
Aug 28, 2010
I want a Flash Builder plugin that takes ugly unformatted mxml and makes it beautiful
View 1 Replies
Oct 18, 2010
I have one mxml file that process xml, and display the graphics on panel.I need to display first mxml in another mxml file, in some area(HBox, VBox, Panel, dont care). How i can do this?
View 1 Replies