active questions tagged mxml - Stack Overflowmost recent 30 from stackoverflow.com2009-12-22T06:19:28Zhttp://stackoverflow.com/feeds/tag/mxmlhttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1940868/packages-and-mxml-components1Packages and MXML componentswebdreamer2009-12-21T15:50:40Z2009-12-21T17:59:08Z
<p>How do I say an MXML component is inside some package? Well, it's in a different folder... I know how to do it ActionScript... But when I do in MXML I don't declare the package explicitly because I don't know how, and when I call it to my application, it states that </p>
<blockquote>
<p>The prefix "package" for element
"package:Component" is not bound.</p>
</blockquote>
http://stackoverflow.com/questions/1812319/how-to-create-multiple-processes-in-adobe-air-program0How to create multiple processes in Adobe Air program?Ole Jak2009-11-28T11:34:50Z2009-12-20T11:13:20Z
<p>How to create multiple processes in Adobe Air program? Docs? Tuts? Algorithms? (for ex I have some design logic and some services client logic i want to run them in separate processes) (Air 2.0 is ok for me)</p>
http://stackoverflow.com/questions/1917566/whats-the-itemchangeeffect-equivalent-in-spark-list1Whats the itemChangeEffect equivalent in Spark List?method2009-12-16T20:44:52Z2009-12-16T20:49:27Z
<p>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.</p>
<p>The equiv in the spark list appears to be the rendererAdd and Removed events, but this doesn't allow complete control over the effect, since removal is done as soon as the event has been dispatched, allowing no time for the effect.</p>
<p>Does anyone know how to accomplish the same on a spark list?</p>
http://stackoverflow.com/questions/1915375/can-i-make-my-mxml-component-a-singleton0Can I make my MXML Component a Singleton?Mad Oxyn2009-12-16T15:30:01Z2009-12-16T20:35:48Z
<p>I have an MXML component in a website that I am reusing in a few different screens.
Based on what the user clicks, the component initializes a few values and starts playing media.</p>
<p>Now if I click through the site, and I play media in screen 1, the component initializes fine and plays the media.</p>
<p>If I then go to screen 2 and play the media, the component initializes twice. Once for screen one, and once for screen 2.</p>
<p>When I then go to screen three, it will start initializing three times.. So it is creating a new instance of the MXML component for each screen!!</p>
<p>How can I make sure that the MXML component only initializes for the screen that I need it to initialize for?</p>
<p>What I really want is that this component always has just one instance throughout the whole application. Is it possible to make that MXML component into a Singleton, so that I always have one instance of that MXML in my application?</p>
http://stackoverflow.com/questions/1898913/flex-initializing-a-windowed-application-via-action-script0FLEX: Initializing a Windowed Application vía Action ScriptEdward2009-12-14T04:24:19Z2009-12-14T04:24:19Z
<p>Hi everybody :)</p>
<p>I have a Main Application ("MainFile") and I want to start another Application (WindowedApplication) when the user clicks on a button. I want to do this via Action Script; Anyone knows how to do it?</p>
<p>I have tried NativeApplication.nativeApplication.initialize() function, but it returns me "Error #1009: Cannot access a property or method of a null object". The application is well defined on Action Script (private var Exc:ExType = new ExType();) so, I dont know why flex always throws me that error :(. Anyone can help me?</p>
<p>Thanks :)</p>
http://stackoverflow.com/questions/1874881/base-class-for-custom-components0Base class for custom componentsQ-rius2009-12-09T16:03:07Z2009-12-12T08:50:19Z
<p>In my flex app I have various custom components done with mxml or actionscript.
I want all of them to extend a base-class where I can define properties/event listeners etc.
Can someone give me an example how to create that base class and how I can extend it in mxml and actionscript components?</p>
http://stackoverflow.com/questions/1865757/compiling-the-mxml-file-inluding-other-mxml-and-as-files-using-ant0Compiling the mxml file inluding other mxml and .as files using ant.Suraj Gagain2009-12-08T09:23:53Z2009-12-11T06:19:01Z
<p>Hi All,</p>
<p>I have an mxml application that is in flex_src directory and parallel to that i have two folders in which i have my action scripts files in certain package hirarchy like com.citi....something.I hv written a build.xml for this.For a simple stand alone mxml file it is creating swf file but in my case i m getting the following error:--</p>
<pre><code>[mxmlc] C:\Application\vss\flex_src\com\citi\cam\script\model\SourceSystem.a
</code></pre>
<p>s(1): col: 1 Error: Definition mx.data:IManaged could not be found.</p>
<p>and lot more corresponding to each .as file in the folder. it is not recognising my package structure............Please guide what to do?</p>
http://stackoverflow.com/questions/1882559/creating-loop-for-sending-variable-to-other-components-in-flex0Creating loop for sending variable to other components in Flexbomb_on2009-12-10T17:20:00Z2009-12-10T17:28:09Z
<p>Hi!<br>
I have some simple function in Flex in which I would like to send one of my variables to all the components used in my app... The problem is that there is lots of components in my app, and I'm not sure how to reference to my component's id... Basically, is there an easier way to do this;</p>
<pre><code>private function preloadStuff():void{
// populating of bulkLoader var
var preloaderItemsList:XMLListCollection = new XMLListCollection(preloaderItems.children());
var item:XML;
for each (item in preloaderItemsList){
bulkLoader.add(item.path.toString(), {id:item.swfid.toString()});
}
bulkLoader.addEventListener(BulkLoader.PROGRESS, bulkProgress);
bulkLoader.addEventListener(BulkLoader.COMPLETE, bulkComplete);
bulkLoader.start();
// sending bulkLoader to all of components
// component ids are _01, _02, _03, etc.
_01.bulk = bulkLoader;
_02.bulk = bulkLoader;
_03.bulk = bulkLoader;
_04.bulk = bulkLoader;
_05.bulk = bulkLoader;
_06.bulk = bulkLoader;
_07.bulk = bulkLoader;
_08.bulk = bulkLoader;
_09.bulk = bulkLoader;
_10.bulk = bulkLoader;
_11.bulk = bulkLoader;
_12.bulk = bulkLoader;
_13.bulk = bulkLoader;
_14.bulk = bulkLoader;
_15.bulk = bulkLoader;
_16.bulk = bulkLoader;
_17.bulk = bulkLoader;
_18.bulk = bulkLoader;
_19.bulk = bulkLoader;
_20.bulk = bulkLoader;
_21.bulk = bulkLoader;
_22.bulk = bulkLoader;
_23.bulk = bulkLoader;
_24.bulk = bulkLoader;
_25.bulk = bulkLoader;
_26.bulk = bulkLoader;
_27.bulk = bulkLoader;
_28.bulk = bulkLoader;
_29.bulk = bulkLoader;
_30.bulk = bulkLoader;
_31.bulk = bulkLoader;
_32.bulk = bulkLoader;
_33.bulk = bulkLoader;
_34.bulk = bulkLoader;
}
</code></pre>
<p>Thank you very much for any help!</p>
http://stackoverflow.com/questions/424354/using-html-formatting-to-output-variables-in-flex-mxml1Using HTML formatting to output variables in Flex/MXMLmrhahn2009-01-08T14:11:29Z2009-12-09T17:31:28Z
<p>Hi,</p>
<p>I'm trying to output a sentence containing 4 variables, with their values emboldened using the following code:</p>
<pre><code><mx:Text width="100%" y="307">
<mx:htmlText>
<![CDATA[Showing data from <b>{labelStartTime.text} {labelStartDate.text}</b> to <b>{labelEndTime.text} {labelEndDate.text}</b>]]>
</mx:htmlText>
</mx:Text>
</code></pre>
<p>However, this just outputs the variable names, rather than their values. I'm sure I'm missing something simple, but I'd appreciate any pointers.</p>
<p>Cheers.</p>
http://stackoverflow.com/questions/1593885/flex-bitmapdata-or-imagesnapshot-for-uninitialized-components0Flex BitmapData or ImageSnapshot for uninitialized componentsbomb_on2009-10-20T11:14:52Z2009-12-07T19:46:17Z
<p>Hi!<br />
I would like to make some kind of thumbnail with capturing <code>BitmapData</code> or <code>ImageSnapshot</code> of some UNINITIALIZED components in my Flex application.<br />
Is it possible?</p>
<p>Thanks in advance!<br />
m.</p>
http://stackoverflow.com/questions/1853008/converting-button-icon-back-to-image0Converting button Icon back to ImageQ-rius2009-12-05T18:31:07Z2009-12-05T21:12:49Z
<p>I want to extract/read the button icon image as a Flex image component, then apply transform filters to it to make it black/white and then apply image as an icon to another button.
Any ideas how I could do that?
So far I can get the icon out as an Object by doing this:</p>
<pre><code>var iconImg:Object = myBtn.getStyle("icon");
</code></pre>
<p>Not sure how to convert that Object to an image.</p>
http://stackoverflow.com/questions/1835933/listening-for-enable-disable-state-change0Listening for enable/disable state changeQ-rius2009-12-02T21:27:57Z2009-12-03T04:29:17Z
<p>For my custom components, when they go from enabled to disabled or disabled to enabled, I want to trigger a custom event.
I can't find any related events in the livedocs.
Any clues please?</p>
http://stackoverflow.com/questions/1833457/mxml-combobox-width-is-larger-than-parent-width1MXML: combobox width is larger than parent widthMaurits de Boer2009-12-02T15:02:50Z2009-12-02T22:09:46Z
<p>I have a combobox with a width set to 100%. However, when one of its elements is larger, the combobox grows larger aswell, creating scrollbars and other uglyness in my app!
How do I keep the combobox contained within its parent?<br>
NB it's OK if the list that drops down is larger as long as the closed combobox stays smaller.</p>
<p>Sample:</p>
<pre><code><?xml version="1.0" encoding="utf-8"?>
<mx:Canvas xmlns:mx="http://www.adobe.com/2006/mxml" width="100%" height="100%">
<!-- I'm using a Canvas instead of a VBox because the VBox spaces the elements too far appart -->
<mx:HBox id="tagsHBox" width="{formsHBox.width - 16}" x="8" y="8">
<!-- This label should align with the labels in the left form -->
<mx:Label text="Tags" id="tabLabel" width="{titleTxt.x + 4}" textAlign="right" />
<!-- This textbox should spread accross both forms, that's why it's in a seperate HBox -->
<mx:TextInput height="20" width="100%" />
</mx:HBox>
<mx:HBox id="formsHBox" x="8" y="{8 + tagsHBox.height}" width="{this.width-16}">
<mx:Form id="leftForm" width="50%">
<!-- Personal details -->
<mx:FormHeading label="Personal Details" width="100%" />
<mx:FormItem label="First name" width="100%">
<mx:TextInput text="{person.firstName}" width="100%"/>
</mx:FormItem>
<mx:FormItem label="Last name" width="100%">
<mx:TextInput text="{person.lastName}" width="100%"/>
</mx:FormItem>
<!-- And 15 more formItems :) -->
</mx:Form>
<mx:Form id="rightForm" width="50%">
<!-- Address -->
<mx:FormHeading label="Address" width="100%" />
<mx:FormItem label="Street" width="100%">
<mx:TextInput text="{person.address.street}" width="100%"/>
</mx:FormItem>
<mx:FormItem label="City" width="100%">
<mx:TextInput text="{person.address.city}" width="100%"/>
</mx:FormItem>
<mx:FormItem label="Country" width="100%">
<!-- This combobox right here is the troublemaker. There's a
country named 'South Georgia and the South Sandwich
Islands' consising of a few small islands in the southern
pacific and a name which is too long for my innocent
unsuspecting combobox -->
<form:ComboBox id="countryCombo" height="20" width="100%"
dataProvider="{model.systemDataModel.countries}" />
</mx:FormItem>
<!-- And 15 more formItems :) -->
</mx:Form>
</mx:HBox>
</mx:Canvas>
</code></pre>
http://stackoverflow.com/questions/1834916/making-a-flex-datagrid-scroll-smoothly1Making a Flex DataGrid scroll smoothlyDan Petker2009-12-02T18:36:36Z2009-12-02T18:54:21Z
<p>I've noticed that the default behaviour for a DataGrid's vertical scroll bar is to scroll one row at a time. This is all well and good when the rows are all uniform and small (e.g. displaying a single line of text), but gets really ugly as soon as you have rows with variable heights.</p>
<p>I'm curious, is there a way to make DataGrid scrolling "smooth"? For instance, is there a way to have the DataGrid scroll by a set number of pixels, lines of text, etc. rather than scrolling one row at a time?</p>
<p>So far, the only solution I've managed to come up with is to place the DataGrid in a Canvas and have the Canvas do the scrolling instead of the DataGrid. The issue with this approach, though, is that as soon as the Canvas scrolls far enough, the DataGrid headers scroll off-screen. Ideally, I'd like to get the smooth-scrolling nature of the Canvas, but also keep the DataGrid headers visible. Is that possible?</p>
http://stackoverflow.com/questions/1337061/place-an-addchild-button-into-grid-space-of-tabnavigator0Place an 'addChild' button into grid space of TabNavigatorDrewman2009-08-26T19:51:40Z2009-12-02T15:00:05Z
<p>This question is similar to the post: </p>
<p>"Move Button into grid space of a TabNavigator’s tabs in Flex Builder."
<a href="http://stackoverflow.com/questions/1150835/move-button-into-grid-space-of-a-tabnavigators-tabs-in-flex-builder">http://stackoverflow.com/questions/1150835/move-button-into-grid-space-of-a-tabnavigators-tabs-in-flex-builder</a></p>
<p>but with a slight difference. I wish to have a button that adds a child (tab) to the TabNavigator in the grid space (simpler with TabBar, but see below), but will not block tabs as they extend towards the button. This functionality can be seen in every web browser that uses tabs.</p>
<p>In addition I would like to have a scroll button appear if too many tabs are opened, and the ability to close tabs. I have tried using Doug McCune's SuperTabNavigator, which offers most of these features, but it does not offer the addChild button that I am looking for.</p>
<p>Is there a way to add this 'addChild' button to the grid space, or to add the features from SuperTabNavigator to TabBar?</p>
http://stackoverflow.com/questions/1817342/flex-4-bubbling-custom-event0Flex 4 Bubbling custom eventColossal Paul2009-11-30T00:46:20Z2009-11-30T00:52:44Z
<p>Hi,</p>
<p>How to create a bubbling custom event in Flex 4?</p>
<p>To create and expose a custom event in MXML, you need to declare it at the component that will dispatch the event with this line:</p>
<pre><code><fx:Metadata>
[Event(name="select", type="my.engine.events.SelectionEvent")]
</fx:Metadata>
</code></pre>
<p>This allows you to:</p>
<pre><code><my:CustomComponent select="doSomething()"/>
</code></pre>
<p>However, how do you make this bubble upwards. I want to do this</p>
<pre><code><s:DataGroup select="doSomethingForAll();">
<s:itemRenderer>
<fx:Component>
<my:CustomComponent/>
</fx:Component>
</s:itemRenderer>
</s:DataGroup/>
</code></pre>
<p>Thanks!</p>
http://stackoverflow.com/questions/1721495/flex-remoteobject-zend-amf-server-problem0Flex RemoteObject + Zend AMF Server problembomb_on2009-11-12T11:11:59Z2009-11-25T13:53:13Z
<p>Hello!<br>
I am working with php, Flex and zend's AMF Server using <a href="http://www.adobe.com/devnet/flex/articles/flex%5Fphp%5Fprint.html" rel="nofollow">this</a> guide. I successfully managed to connect php with Flex but after 'reconstruction' of my MySQL query I get a little bit different objects - some of their values are NULL. That confuses Flex and I get an error from my RemoteObject:<br>
<code>Was expecting mx.messaging.messages.AcknowledgeMessage, but received null</code><br>
I was searching around the web, and I believe it is happening because some values are NULL, but I couldn't find appropriate solution... I hope that someone here will be able to help me =)</p>
<p>Thanks in advance!</p>
http://stackoverflow.com/questions/1788320/actionscript-file-upload-very-slow0ActionScript File Upload very slowJadaBharata2009-11-24T06:56:36Z2009-11-24T11:20:54Z
<p>Hi,
My requirement is to upload 5000 images to WAMP server from AIR client.
I am using URLRequest to upload the images.
The size of each image is about 285 KB.
Able to only upload about 300 images only. The server becomes unresponsive and the client stops uploading.
This is urgently required.
Please let me know how do I finetune for performance/or go about solving this issue.</p>
<p>Thanks
Jad</p>
http://stackoverflow.com/questions/269773/flex-custom-item-renderer-for-the-displayed-item-in-the-combobox0Flex custom item renderer for the displayed item in the comboboxpbreault2008-11-06T18:30:10Z2009-11-23T09:42:49Z
<p>I am using a custom item renderer in a combobox to display a custom drawing instead of the default text label.</p>
<p>This works fine for the dropdown list but the displayed item ( when the list is closed) is still the textual representation of my object.</p>
<p>Is there a way to have the displayed item rendered the same way as the one in the dropdown?</p>
http://stackoverflow.com/questions/1751296/recursive-iteration-through-every-component-instance0Recursive iteration through every component instanceQ-rius2009-11-17T19:48:17Z2009-11-23T00:53:40Z
<p>I have various custom component instances in my flex app. I want to loop through them recursively and get their instance Ids. The recursive part is very important to me.
Can someone tell me what's the best way to do it?
I have tried doing this, but it didn't do recursive:</p>
<pre><code>for each (var myItem:* in this.MasterContainer.childDescriptors)
{
trace(myItem.id);
}
</code></pre>
http://stackoverflow.com/questions/1766197/cant-make-navigable-rendered-component0Can't make navigable rendered componentRollingStone2009-11-19T20:12:06Z2009-11-19T20:32:37Z
<p>Hello.</p>
<p>I have the next component, which is substituted into the data grid as rendered item.</p>
<pre><code><mx:VBox xmlns:mx="http://www.adobe.com/2006/mxml" click="navigateToURL(new URLRequest('{data.GetLink()}'), '_blank');">
</code></pre>
<p></p>
<p>The problem with click event, it doesn't work.</p>
<p>How correctly to make navigation VBox that url is substituted from the dataProvider collection?</p>
<p>Thank you!</p>
http://stackoverflow.com/questions/1479484/any-good-wizard-libraries-in-flex0Any good Wizard libraries in Flex?Chadwick2009-09-25T20:43:02Z2009-11-17T15:52:07Z
<p>I'm looking for a good "Wizard" library in Flex before rolling my own. The important features are:</p>
<ul>
<li>Multiple custom input panels in sequence.</li>
<li>Ability to prepopulate the data fields using an object, <em>but</em> cancelling at any point leaves original data unmodified.</li>
<li>Ability to move to back and forth in panel sequence without loosing data.</li>
</ul>
http://stackoverflow.com/questions/264043/what-overhead-is-there-of-using-an-mxml-file-in-flex-vs-a-plain-actionscript-cla1What overhead is there of using an MXML file in Flex vs. a plain actionscript class?Simon2008-11-05T00:53:59Z2009-11-16T21:54:09Z
<p>I find it much easier to write MXML classes with embedded Script than trying to make an actionscript file.</p>
<p>I was wondering however what kind of overhead there is of using an MXML file - in terms of file size. I'm not especially concerned about performance, but if that is relevant would be interested in any findings.</p>
<p>Obviously I'm talking about UI components that have layout. MXML is MUCH easier to visualize and modify but I'm unclear exactly what it compiles down too. I'm hoping there is a negligible difference.</p>
http://stackoverflow.com/questions/1373179/flex-tabs-x-and-y-position0Flex tab's x and y positionQ-rius2009-09-03T12:40:42Z2009-11-15T16:33:31Z
<p>In a tab navigator, I need to find out the x and y coordinates of each the tabs.
Is there a way to do that?
I am using HBox as Tab in the TabNavigator.</p>
http://stackoverflow.com/questions/1258187/communication-between-two-flex-apps3communication between two flex appsQ-rius2009-08-11T02:19:20Z2009-11-15T16:17:47Z
<p>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 do it?</p>
http://stackoverflow.com/questions/1733590/how-to-call-an-mxml-application-from-another-mxml-application-file-in-flex0How to call an mxml application from another mxml application file in flex?Angeline Aarthi2009-11-14T07:28:32Z2009-11-15T06:17:25Z
<p>I have two mxml application files, Login and main. On clicking the submit button of the Login Screen, I want the Main Screen to open. How to call the main.mxml file from the Login.mxml file?</p>
http://stackoverflow.com/questions/1732919/simple-libs-for-trajectory-motion-in-flex-builder-mxml-actionscript0Simple libs for trajectory motion in Flex Builder (mxml, actionscript)Ole Jak2009-11-14T01:29:49Z2009-11-14T02:13:05Z
<p>I need a simple rainbow trajectory motion in Flex builder.</p>
<p>We have 2 points [(x1, y1); (x2, y2)], we need to animate object from one to another over some simple rainbow trajectory like in this picture in 10 seconds</p>
<p><img src="http://superior0.narod.ru/CO/mtw.jpg" alt="alt text"></p>
<p>What libs could you suggest for such an operation?</p>
http://stackoverflow.com/questions/1725445/in-flex-how-do-wrap-lists-into-columns0In Flex, how do wrap Lists into columns?Luis B2009-11-12T21:11:10Z2009-11-13T20:55:57Z
<p>How do you make a List control wrap around to a second column (or multiple columns)? Thanks, let me know if there is a solution for this with the List control or some other Flex control.</p>
<p>For example, if you have one list with 42 items in it, but I want to cap the height of a list to 20 items; then instead of having one list with 42 items all the way down, I would have that list of items look like the equivalent of 3 adjacent lists: the first with 20 items, the second with 20 items, and the third with 2 items (which represent the original list of 42 items). </p>
<p>This question seems similar but it is in ColdFusion:<br>
<a href="http://stackoverflow.com/questions/4923/wrapping-lists-into-columns">http://stackoverflow.com/questions/4923/wrapping-lists-into-columns</a></p>
http://stackoverflow.com/questions/1723536/acoustic-echo-cancellation-aec-with-flash-as31Acoustic Echo Cancellation (AEC) with Flash AS3?Ole Jak2009-11-12T16:30:57Z2009-11-13T10:28:59Z
<p>Acoustic Echo Cancellation (AEC) with Flash AS3?</p>
<p>What do I need?</p>
<ul>
<li>Open Source Libs/wrappers.</li>
<li>Tutorials and blog articles on How to do it.</li>
</ul>
http://stackoverflow.com/questions/1723158/advanceddatagrid-with-two-providers0advancedDataGrid with two providersfazo2009-11-12T15:41:04Z2009-11-12T17:13:44Z
<p>I want to have 2 dataproviders for 1 advancedDataGrid: 1 normal and second one for combobox in a one of columns. I want to have this combobox to have data from a column in database (i already have it in arrayCollection).
I just don't know how to provide data for comboBox in a way that it doesn't have to read that data from database every time for every comboBox (as custom component). Should I pass arrayCollection to custom component? or do it 'inline' in mxml? what's the best way?</p>
<p>thanks for any help</p>