MXML is an XML-based declarative language created as part of the Adobe Flex framework. MXML tags represent components written in ActionScript under the hood. When you compile a Flex application, the MXML is compiled using Adobe's mxmlc compiler into ActionScript which is then compiled with the ...
6
votes
4answers
8k views
Compiling mxml files with ant and flex sdk
I am just getting started with flex and am using the SDK (not Flex Builder). I was wondering what's the best way to compile a mxml file from an ant build script.
7
votes
6answers
5k views
Possible to use Flex Framework/Components without using MXML?
Is it possible to use the Flex Framework and Components, without using MXML? I know ActionScript pretty decently, and don't feel like messing around with some new XML language just to get some simple ...
3
votes
1answer
1k views
Whats the itemChangeEffect equivalent in Spark List?
In flex 3, with List component, you could add an effect to the itemChangeEffect property, allowing you to animate the addition/removal of the items in the list control.
The equiv in the spark list ...
1
vote
1answer
260 views
Compiling swf from php using mxmlc and “exec” - loading config file but no swf in browser
I'm on a RedHat server, with a simple PHP page that has a form, with inputs for name, phone, and url.
When the form is submitted, I run a command to compile a swf using mxmlc. The command is this :
...
2
votes
4answers
8k views
Can I bind a Flex component property to a function?
I want to set the enabled property on a button based on the return value of a function that has one or more parameters. How can I do this?
private function isUserAllowed (userName:Boolean):Boolean {
...
5
votes
3answers
8k views
Resolving Component libs with Flex SDK mxmlc
I'm new to Flex SDK and trying to implement a simple project using Doug Mccune's CoverFlow widget. Most of the documentation out there on how to do this assumes that one is using Adobe's FlexBuilder ...
1
vote
3answers
347 views
Javascript error on calling flex-AS function
I am trying to call call action script function from JS but i get the following error
Error: getFlashMovie(swfobjectID).sayWhat is not a function
Can any body let me know what am i doing wrong ...
11
votes
1answer
7k views
Flex: What's the difference between an MXML “Component” and an MXML “Module”?
As the title suggests, what's the difference between a "Component" (New –> MXML Component) and a "Module" (New –> MXML Module)?
Thanks,
David
1
vote
2answers
1k views
Thumbnails for mxml components in Flex
Is it possible to make some kind of 'dynamic' thumbnails for mxml components which I'm using in my application? By 'dynamic' I mean if I change some layout in mxml component, my thumbnail refreshes ...
0
votes
1answer
430 views
Convert HTML/MXML file to Word doc programmatically in Java
I would like to convert either an HTML or MXML file document to Microsoft .doc and/or .docx format.
Please provide an example for doing this?
2
votes
1answer
70 views
Looping over elements inside an element in Flex
I have the following function in Flex 4:
protected function initEventHandlers():void
{
imageContainer.addEventListener(DragEvent.DRAG_ENTER, acceptDrag);
...
0
votes
2answers
741 views
Flex 4.5 - Global Variable across all views?
How do you define a global variable that is accessible across all views on Flex mobile / Flex 4.5/4.6
--
(Edited for clarification)
Is it still necessary to have to use a separate global class?
...
0
votes
1answer
224 views
using flex components in pure actionscript without any mxml
my Main.as extends flash.display.Sprite, I want to use a ComboBox component in the as, without any mxml, how to implement it? I read this Possible to use Flex Framework/Components without using MXML?, ...
0
votes
1answer
127 views
Signed and un-signed framework RSLs in Flex
Please explain me what is a framework RSL and difference between Signed and un-signed framework RSLs in Flex. Thank you in advance.
0
votes
4answers
310 views
How to display as2 swf file within as3 swf?
I recently found out that the flash swf's I was trying to load were in as2 which is causing a great deal of problems. The sad reality is I need to load these up somehow, or find some alternative.
...
0
votes
3answers
302 views
Why isn't the swfloader working?
I am trying to use the mxml swfloader component to load the external flash from the following url, but it doesn't load anything. I'm using FlashBuilder 4.5.
...
6
votes
5answers
10k views
Flex custom item renderer for the displayed item in the combobox
I am using a custom item renderer in a combobox to display a custom drawing instead of the default text label.
This works fine for the dropdown list but the displayed item ( when the list is closed) ...
0
votes
5answers
3k views
How do I attach camera to Spark.components.VideoDisplay
I'm using Flash Builder and created a spark-application Flex project that will stream video from the local camera. If I use mx.controls.VideoDisplay; there is no problem since it has ...
0
votes
1answer
756 views
Assigning an array of objects to a DataGrid
When the dataProvider for an DataGrid is an array of objects, how do I set each column's dataField to a property of the object.
I have an ArrayCollection (say a) where each item is an object
For ...
4
votes
3answers
5k views
Using validators in DataGrid - Flex
i have an editable DataGrid, something like:
<mx:Datagrid editable="true" dataProvider="{arrayListPreferences}" id="preferencesGrid">
<mx:columns>
<mx:DataGridColumn ...
2
votes
3answers
1k views
Custom “context menu” in flex
I would like to add a custom context menu with line separators, but can't really figure out how. What I need:
<mx:List id="treeContextFile" visible="false" width="233" verticalScrollPolicy="off" ...
1
vote
1answer
280 views
Flex conditional compilation of MXML?
In Flex it is now possible to use the -define compiler option to do all sorts of cool stuff.
In my program, I am using the option such that some of my code is excluded by blocks like this:
...
1
vote
3answers
218 views
use actionscript file in flex library
i want make own flex library and in this library use own actionscript file which will i use in more component in this library..this file contents eg only code
public function computeSum(a:Number, ...
1
vote
2answers
2k views
How to solve “call to undefined function domxml_new_doc()…”
I am trying to output xml by using domxml_new_doc.
However, I just got the call to undefined function domxml_new_doc() error.
I tried google it but still not luck. Do I have to install any extension ...
1
vote
3answers
930 views
What overhead is there of using an MXML file in Flex vs. a plain actionscript class?
I find it much easier to write MXML classes with embedded Script than trying to make an actionscript file.
I was wondering however what kind of overhead there is of using an MXML file - in terms of ...
0
votes
1answer
288 views
How do I use a SplitViewNavigator component to show Master/Detail navigation in Flex
I am having an issue with using the SplitViewNavigator component in flex 4.6 using Adobe Flash Builder.
[UPDATED]* * *
I am building a reddit app for the blackberry playbook tablet, and am making ...
0
votes
1answer
115 views
Flex - Subclassing VBox in MXML to use as a base component, advice needed
I'd like to extend VBox to add some "defaults" and a bit of boilerplate-ish code (let's call it "VBoxSub" here), the idea being that "pages" in the application would extend this VBox subclass.
This ...
0
votes
1answer
539 views
Adding mouseOver/mouseDown/mouseUp/etc. to custom MXML component
I'm new to Flex and am porting a pure Flash/AS3 app to Flex 4.5
I've created a custom MXML component based on BorderContainer
<?xml version="1.0" encoding="utf-8"?>
<s:BorderContainer
...
0
votes
2answers
156 views
how do I call a customcomponent with added functionality in flex
I have created a custom component (named customtitlewindow) the code of which is as follows:
<?xml version="1.0" encoding="utf-8"?>
<mx:TitleWindow xmlns:fx="http://ns.adobe.com/mxml/2009"
...
7
votes
1answer
2k views
Extending MXML custom components via MXML
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 ...
3
votes
4answers
4k views
How to set TextArea height to its content height
I have an mx:TextArea and I want its height to be the same as its content height. There is nothing fancy - just a text area and text that is not editable. I need a simple and reliable way to make the ...
3
votes
2answers
2k views
communication between two flex apps
I have 2 flex apps on the same page. I want them to be able to call each other's public functions. I am thinking of using either externalInterface calls or FaBridge to do so.
Is there a better way to ...
2
votes
2answers
2k views
Programatically enable/disable menuBar buttons in Flex 4
I have the following XML in my Flex4 (AIR) project that defines the start of my menu interface:
<mx:MenuBar x="0" y="0" width="100%" id="myMenuBar" labelField="@label" ...
2
votes
2answers
201 views
what's the difference between MXML and Actionscript3
what's the difference between MXML and Actionscript3
when we need to use MXML ??
2
votes
2answers
201 views
XSLT copy with modifications
I'm stuck trying to work within these constraints, I'm using XSLT 1.0 {under .net}.
I'd like to be able to do the following:
i'm xsl:for-each'ing through a set of nodes of type
<node>
...
2
votes
5answers
402 views
is there such a thing as an MXML interface
This could potentially be a dumb question so apologies in advance if it is.
I'm wondering if theres an equivilant of Interfaces in MXML?
Everytime I feel the need to use an interface I always wind up ...
2
votes
2answers
73 views
How should I collect dependencies from Adobe Flex files?
I'm looking for a way to collect the file dependencies from Flex ActionScript and MXML files. I was hoping that mxmlc could spit them out (like gcc's -M option), but its option list doesn't seem to ...
2
votes
2answers
680 views
Using ASDoc with Bindable metatag and mxml
I am creating the documentation of my flex project using ASDoc and having some issues with the bindable metatag.
ASDoc doesn't document public Bindable values unless the Bindable tag has an event ...
1
vote
1answer
25 views
Adobe Flex: Accessing Result Event From Main Application In Component MXML
In my main application I have a result event and an XMLList, which is filled with my results. The XMLList is defined outside of a function like so:
public var testList:XMLList = new XMLList();
But ...
1
vote
1answer
94 views
Adobe record sound and save
In the following code i am trying to save the microphone contents to a file.The saved file doesn't play and Every time the file is saved i see that the size is only of 10 bytes only.What am i doing ...
1
vote
1answer
42 views
iteration through every component instance that have tabIndex Proparty
i have a custom mxml component that i customizing it is important to me that the order when the user is pressing tab will be order by the order of appherance
i read this answer
...
1
vote
1answer
375 views
Why doesn't mxml support component constructors?
Why doesn't the Flex framework's mxml language support a constructor for components or accept constructor arguments for components? It's as far as I know not possible to declare an ActionScript object ...
1
vote
2answers
138 views
Flex 4 reuse dialog box layout
I've just create the first of dozens of pop-up dialogs in my Flex application and wondering what is the best way to reuse the layout so I don't have to duplicate it in every form. I tried making a ...
1
vote
2answers
94 views
Flex 4 - Vertical layout problem on TitleWindow
This must be a simple problem, but I can't get my head around it. I have a resizable title window. Inside I just want a VGroup to hold the contents of the form and an HGroup to have a few buttons at ...
1
vote
2answers
120 views
What is the RegExpValidator.flags property used for?
I'm attempting to write a custom RegExpValidator in AS3 (similar to this). I'm wondering (and I've checked livedocs...), what is the 'flags' property on a RegExpValidator used for?
All of the ...
1
vote
1answer
231 views
ExternalInterface API in flex
How to resolve the following error in the mxml program?
The error is
Loading configuration file /opt/flex/frameworks/flex-config.xml
/home/tom-j/programs/flex/html/aa.mxml(17): ...
1
vote
1answer
468 views
Multi page database application in Flash Builder - how to access/call different screens?
I am trying to create my first real world application. It's a database driven (via Web Services) application in Flash Builder 4.
The application will have over 30+ different data entry form screens, ...
1
vote
2answers
254 views
Flex: Unused mxml and .as files in a flex project
I am trying to make the project build light by removing all the unused (mxml,xml and image ) files. Currently I am manually searching for each image and then removing the unused file. But is there a ...
1
vote
2answers
816 views
How should I smooth the transition between these two states in flex/flashbuilder
I have an item in which has two states, best described as open and closed, and they look like this:
and
And what I'd like to do is is smooth the transition between one state and the other, ...
1
vote
1answer
480 views
swf not working in Internet explorer
Why is the below code not working on IE.IS that am i missing anything here.Please let me know
<?xml version="1.0" encoding="utf-8"?>
<mx:Application
xmlns:mx="http://www.adobe.com/2006/mxml"
...