Tagged Questions

MXML is an XML-based declarative language similar to CFML

learn more… | top users | synonyms

13
votes
6answers
20k views

Flex Warning: Unable to bind to property 'foo' on class 'Object' (class is not an IEventDispatcher)

I've got an object that contains a dozen or so fields I want to bind to form elements, so that I can use that object to send the data back to the server to be saved. Definition of my container ...
9
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
8
votes
6answers
2k views

When should an oldschool flash developer use flex?

What are the key differences between Flash and Flex? I have over five years experience with flash and feel very comfortable developing with it and ActionScript3. I find myself more and more curious ...
8
votes
4answers
6k views

Flex: does painless programmatic data binding exist?

I've only done a bit of Flex development thus far, but I've preferred the approach of creating controls programmatically over mxml files, because (and please, correct me if I'm wrong!) I've gathered ...
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 ...
7
votes
5answers
1k views

How to inherit states with mxml?

I have the following panel component called AdvancedPanel with controlBarContent: <!-- AdvancedPanel.mxml --> <s:Panel> <s:states> <s:State name="normal" /> ...
6
votes
3answers
299 views

Hidden Features of MXML

What are some of the hidden features of MXML? What existing features are not well known but very useful? MXML being used in Flex Framework became quite popular language because Flash Player is ...
6
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 ...
5
votes
5answers
2k views

does actionscript addChild require a display object first

Solution: if you have the same problem, addElement() instead of addChild() is what did it I'm trying to move away from mxml to actionsctipt. I have a <s:Rect> that I've created and set its ...
5
votes
4answers
2k views

Why should I use MXML?

If everything that can be accomplished in MXML can also be accomplished in ActionScript and many things are easier to accomplish in ActionScript (loops, conditionals, etc) why take the time to learn ...
5
votes
1answer
2k views

default namespace scope warning (1084) in Flex script file

I have an MXML file, which references an external script file for all its event handlers: <?xml version="1.0" encoding="utf-8"?> <mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" ...
5
votes
2answers
862 views

How do I visually “break out” of a Container in Flex?

Here's my problem - I have some code like this: <mx:Canvas width="300" height="300"> <mx:Button x="800" /> </mx:Canvas> So the problem is that the Button inside the canvas ...
5
votes
4answers
7k 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.
4
votes
3answers
77 views

In flex how can someone add both bold and border?

I am trying to make a text area in flex 4.5. The problem is i need some part of it as bold not all. Also i need border. A simple code is <s:TextArea text="Text here1 Text here2"> By ...
4
votes
7answers
428 views

what are the advantages of using mxml over actionscript in a flex application?

they both seem to accomplish the same things with different syntax, whats the point of using two different technologies. Please highlight every possible benefit of using mxml. Also are there scenarios ...
4
votes
3answers
4k 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 ...
4
votes
3answers
6k views

flex 3 accessing main mxml from actionscript code

im writting an actionScript class to handle my web service calls. When i retrieve a result i want to call a setter method in my main mxml application. My problem is that i dont know how to access the ...
4
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) ...
4
votes
3answers
898 views

Duplicate complex MXML binding in ActionScript

MXML lets you do some really quite powerful data binding such as: <mx:Button id="myBtn" label="Buy an {itemName}" visible="{itemName!=null}"/> I've found that the BindingUtils class can bind ...
3
votes
1answer
145 views

Different tooltips for different parts of a component in Action Script

I want to have a tooltip that shows different things when the mouse goes over a different part of a component. For example if it is the top half of a component it will show one tooltip. If the mouse ...
3
votes
2answers
121 views

Can I have multiple classes in one file in MXML?

I have a classB that will only be used inside classA. However, classA is written as mxml, not actionscript code. Is it possible to nest classes in MXML or add another class after the root tag in the ...
3
votes
1answer
180 views

setting variables in MXML while avoiding data binding?

I love MXML but am starting to notice some of its drawbacks. The main one I'm struggling with is its larger memory usage due to the need for binding. In the super simple code snippet below, which I've ...
3
votes
2answers
46 views

RegExpValidator MXML

HiI have a problem with a regular expression. I have an RegExpValidator in MXML and I want that is invalid when the source contain a or bMy RegExpValidator is <mx:RegExpValidator source="{value}" ...
3
votes
1answer
99 views

How to set the name property of spark State declaratively to a string variable value

I have spark States declared in mxml. I also have a class with string constants. I want my states names to match the string constants. Is it possible to do that directly in mxml and how? I don't want ...
3
votes
1answer
794 views

Flex popup manager, mousedown outside of the popup removes the popup

If you create a popup via: PopUpManager.addPopUp( popup, this, false ); PopUpManager.bringToFront( popup ); It will create a popup and bring it on top of any other visual piece. I have one problem ...
3
votes
2answers
73 views

Make an MXML component report the target of the click as the component and not the children

So, I have a component based on canvas, and within that component I have two images. I have the component listen for a click and when that event occurs one image goes transparent and the other becomes ...
3
votes
1answer
1k views

Unsupported sampling flex/actionscript

In action script i need Loading configuration file /opt/flex/frameworks/flex-config.xml t3.mxml(10): Error: unsupported sampling rate (24000Hz) [Embed(source="music.mp3")] ...
3
votes
1answer
197 views

Is it possible to create skinnable components in MXML using the Spark component architecture?

There are lots of examples of how to create skinnable components in AS3 using the new Spark component architecture, however I've yet to find any such examples using MXML. What I'm mainly referring to ...
3
votes
1answer
410 views

Adobe Flex4 mxml schema

Is there a MXML schema xsd given by the latest Flex4 distribution? I found from the old release notes that : Flex includes an XSD file that you can integrate with your third-party editing ...
3
votes
1answer
478 views

How to specify swc when building a swf?

I have implemented some utility classes in Flex that I want to use in multiple AIR projects. I have created a swc which contain these classes. I am working on a Linux machine and do not have ...
3
votes
2answers
530 views

How to send parameters to swf not using any html?

Is it possible to send params to swf using SWFLoader or something like it? So.. I want to create swf loader (swf) which would be able to send some Application.application.parameters to swf swf I'm ...
3
votes
2answers
3k views

Flex 4 dynamically resize parent container to contain children

Is there an easy way to make a parent container (eg Group) resize when it's children resize? Below is a little example app. When I put the 200x200 'food' in the 'stomach' the stomach & it's ...
3
votes
2answers
2k views

How to get HTML text from Adobe Flex Builder RichTextEditor?

How to get HTML text from inputed and edited text into Adobe Flex Builder RichTextEditor control? I mean with valid HTML coming from the Flex RichTextEditor component Not Badly formated HTML, with ...
3
votes
1answer
951 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 ...
3
votes
2answers
2k views

Acoustic Echo Cancellation (AEC) with Flash AS3?

Acoustic Echo Cancellation (AEC) with Flash AS3? What do I need? Open Source Libs/wrappers. Tutorials and blog articles on How to do it.
3
votes
2answers
10k views

Flex 4: Build a Group with a background

I'm trying to build a simple component extending spark.components.Group to have a background color, more specifically a spark.primitives.Rect component stretched to fill the background. This is what ...
3
votes
2answers
721 views

static/private child component in mxml?

Are there any way to declare a child component in mxml which is private/protected or even static? Sure we can do this inside a script tag, but are there any other way?
3
votes
4answers
475 views

flex newbie: can MXML be generated on the fly

Flex newbie question: can MXML be generated on the fly, like HTML is generated by a server? If yes, is it ok to do so or am I missing an important Flex architectural principle.
3
votes
2answers
1k 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 ...
3
votes
1answer
189 views

Define possible values for a property in Flex

In Flex, is it possible to include some kind of MetaData to a property, to be able to list all possible values that a property can use? I want to be able to list the values when calling the property ...
3
votes
4answers
4k views

Set Flex component width to 100% at runtime?

If I am creating say a input field through MXML, I can set the width to 100%. But I cannot seem to do this at runtime through ActionScript. This works: <mx:TextInput ... width="100%" /> This ...
3
votes
2answers
540 views

Flex Type Coercion, it's gone mental I think

I have a class essentially: public class WindowEvent extends Event { public static const WARNEVENT:String = "warnEvent"; public static const TASKREQEVENT:String = "taskRequestEvent"; ...
3
votes
3answers
3k views

How do I stop a datagrid's first-row itemRenderer from instantiating/adding/initializing/etc twice?

In a Flex DataGrid's first row, the itemRenderer will initialize twice. Tracing the results reveals that the flex framework is possibly creating two instances of the first row's itemRenderer. In a ...
3
votes
2answers
2k views

MXML without Flex Framework/Components

The Flex compiler can compile "pure AS3" SWF files that don't contain any Flex Component bytecode. So, Would it be possible to create a custom component framework (used in place of the Flex ...
3
votes
2answers
903 views

Where to begin learning Flex and Flash

I want to start developing Flash and Flex applications so that I can put all of the concepts floating around in my head into action. The problem is that I have never done any programming nor dealt ...
3
votes
3answers
7k 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 ...
2
votes
1answer
52 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); ...
2
votes
1answer
54 views

Isn't creating a Flex skin by copying code a Bad Thing?

I've created a number of skins for various components recently. Some of these were for Spark components and the default behavior of Flash Builder is to take the source code of the original skin and ...
2
votes
1answer
201 views

Is mx.containers.HDividedBox deprecated in Flex 4.5?

Is mx.containers.HDividedBox deprecated by some spark container in Flex 4.5? I'm new to Flex programming and can't find any spark replacement for it. I want to have 2 Lists separated by movable ...
2
votes
4answers
330 views

How would I include an MXML file inline another MXML file?

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 ...

1 2 3 4 5 16