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\" itemClick=\"menuCh
With MXML components, I\'ve seen a pattern used where you have an AS3 class, then the MXML subclasses it, to have a separation between view/code (anonymized from real code):
Is there a MXML schema xsd given by the latest Flex4 distribution? I found from the old release notes that :
I\'m trying to develop a simple mxml Flex application to start Skype from the AIR/Flashplayer runtime. Is it possible to get back events from a nativeWindows application? In the simple example of Skyp
I\'m trying to call a function and pass a couple of properties to it however it\'s complain the object i\'m attempting to target is null. Can anyone see where I am going wrong?
When I\'m building an composite animation, I\'d like to specify the components as fractions of the parent, like so:
I have a custom component based on mx:ComboBox. Within it I connect to an HTTPService (the url is passed as a paramter) and bind the combobox. Parameters to be sent to the HTTPService are passed to th
I am having an issue with flex states in my application. What I am looking to do is on creation complete of the application, obtain a user role guest/user/superUser (based on username and password) fr
I have a datagrid: <mx:DataGrid id=\"resultsDataGrid\" height=\"328\" width=\"604\" paddingRight=\"0\" editable=\"false\" y=\"43\" horizontalCenter=\"0\">
Let\'s say I have an interface public interface IFoo { ... } and I have several implementing classes public class Foo implements IFoo {