active questions tagged flex - Stack Overflowmost recent 30 from stackoverflow.com2009-12-02T17:52:31Zhttp://stackoverflow.com/feeds/tag/flexhttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1829778/flex-swf-assets-loaded-into-flash-swf-at-runtime-within-same-applicationdomain0Flex SWF assets loaded into Flash SWF at runtime within same ApplicationDomainXyre2009-12-01T23:51:18Z2009-12-02T17:17:40Z
<p>I'm trying to load a swf compiled by the Flex SDK into a swf exported by the Flash IDE and instantiate the assets by way of getDefinition(). Normally this works fine with assets exported from the Flash IDE then loaded into another swf also from Flash IDE.</p>
<p>This is how I could normally do this using only the Flash IDE:<br>
Loader - > Using same ApplicationDomain - > getDefinition(class)</p>
<p>Now, using the '<strong>Test</strong>.as' compiled from Flex SDK using the [Embed] metadata tag:<br>
Loader - > Using same ApplicationDomain - > getDefinition("<strong>Test</strong>_" + class)</p>
<p>The problem is I'd rather not have to keep track of the asset libraries loaded to prefix the class name I'd like to get (('<strong>Test</strong>_" + class) vs (class)). Is there any way of doing this without referencing the library the class is being pulled from or without accessing the original loader? This way I don't need to know which swf the asset is coming from, just the class name that I could instantiate from the current ApplicaitonDomain.</p>
<p>Thanks</p>
http://stackoverflow.com/questions/1834409/flex-3-datagrid-and-xmllistcollection0flex 3 datagrid and xmllistcollectionccdugga2009-12-02T17:15:31Z2009-12-02T17:15:31Z
<p>im trying to display content of xmllistcollection in different fields in my datagrid however unless i use an itemrenderer the value is not displaying in the grid.</p>
<p>the xmllistcollection is populated from a webservice call. Inside my item renderer i use a custom namesspace to retrieve contents from the xmllistcollection</p>
<pre><code>value.ns::firstName
</code></pre>
<p>however if i try something like dataField = "ns::firstName" in the datagrid without using an item renderer i get no data output.</p>
<p>Can anyone help me out?</p>
http://stackoverflow.com/questions/1833899/refresh-groupcollection-of-an-advanceddatagrid-the-sorted-arraycollection-gets0Refresh GroupCollection of an AdvancedDatagrid - the sorted Arraycollection gets RandomizedYozef2009-12-02T16:05:10Z2009-12-02T16:51:45Z
<p>I have an AdvancedDatagrid which gets populated by an ArrayCollection.</p>
<p>I ordered the ArrayCollection by date (one of its properties), so it shows from past to future. The thing is, if I refresh the GroupingCollection (for immediate display in the datagrid) After the Sorting of the ArrayCollection, the ordering of the dates in the ArrayCollection gets scrambled again, but displays the populated AdvancedDatagrid immediately.</p>
<p>So in sum: from ArrayCollection > Sorting > Refresh the GroupingCollection > Populates the Adv.DataGrid, but the ArrayCollection is not sorted anymore.</p>
<p>Anybody stumbled on such an obstacle before?</p>
http://stackoverflow.com/questions/1834124/use-localization-for-datagrid-datafields0Use Localization for DataGrid datafieldsXelluloid2009-12-02T16:33:05Z2009-12-02T16:33:05Z
<p>Hi there I have implemented my own ResourceManager for localizing my application by using </p>
<pre><code><mx:Label text="{resourceManager.getString('myResources','Spot')}" />
</code></pre>
<p>instead of </p>
<pre><code><mx:Label text="Spot" />
</code></pre>
<p>Now I want to be able to use this in dataFields in a data grid which use a xml file as datasource</p>
<pre><code><mx:DataGrid width="100%" height="100%" dataProvider="{xmlFile.item}">
<mx:columns>
<mx:DataGridColumn headerText="strings" dataField="string" />
<mx:DataGridColumn headerText="values" dataField="value" />
</mx:columns>
</mx:DataGrid>
</code></pre>
<p>Does someone know a possibility to achieve this? I know exactly which words come with this xmlFile so I can implement translations for every word manually, so this is no problem. I just want somethin like </p>
<pre><code><mx:DataGridColumn headerText="strings" dataField="{resourceManager.getString('myResources',string)}" />
</code></pre>
http://stackoverflow.com/questions/1833457/mxml-combobox-width-is-larger-than-parent-width0MXML: combobox width is larger than parent widthMaurits de Boer2009-12-02T15:02:50Z2009-12-02T15:48:02Z
<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/1831476/modifying-amf-response-at-runtime-how-to0Modifying AMF response at runtime - How to?Lohit2009-12-02T08:35:37Z2009-12-02T14:16:28Z
<p>I have built a simple flex application (using BlazeDS) which displays "Person" details by invoking a java service using flex remoting.
So, my Person class looks something like this:</p>
<pre><code>class Person {
public int age;
public String name;
}
</code></pre>
<p>As a java developer, here is my understanding:
When I run the front flex app in my webapp, an RPC call is executed and BlazeDS does the hard work of invoking the right method, obtaining the result as an object, converting the object to AMF format (serialization). And, then the web/app server sends back this response to the requesting app over http. The flex app now does the task of deserializing the object received in AMF format and somehow make use of it. </p>
<p>Here is my question:
I would like to modify the response before it reaches the Flex application by modifying the attributes of the person object. I have a Filter in place to do this. However, I am not sure as to how I would deserialize the AMF stream, modfiy the object, serialize the object back into the stream / reconstruct the stream somehow. </p>
<p>Is there a way to doing this? Where should I start?</p>
<p>PS
If the question was too confusing, here is a shorter version:
How do I modify the response stream of content type AMF-X, before it reaches a flex app using a java filter?</p>
http://stackoverflow.com/questions/1832389/how-to-get-selected-items-drag-drop-component0How to get selected items Drag & drop component ?vasu2009-12-02T11:36:42Z2009-12-02T14:04:22Z
<pre><code>How to get all the selected items from in this below code selectedContsList ?
<mx:DataGrid id="dg" dataProvider="{cNumbersList}" allowMultipleSelection="true" dropEnabled="true" dragMoveEnabled="true" >
<mx:columns>
<mx:DataGridColumn dataField="contactName" headerText="Name"/>
<mx:DataGridColumn dataField="contactNo" eaderText="ContactNo"/>
</mx:columns>
</code></pre>
<p></p>
<pre><code> <mx:Label text="Selected Contacts :" width="122" color="#C90855" height="16"/>
<mx:DataGrid id="selectedContsList" allowMultipleSelection="true" dragMoveEnabled="true" dragEnabled="true" >
<mx:columns>
<mx:DataGridColumn dataField="contactName" headerText="Name"/>
<mx:DataGridColumn dataField="contactNo" headerText="ContactNo"/>
</mx:columns>
</mx:DataGrid>
</code></pre>
http://stackoverflow.com/questions/1033560/holding-the-session-in-flex0Holding the session in Flextheband2009-06-23T16:05:12Z2009-12-02T13:00:07Z
<p>I am getting the session generated in Flex Application in a hidden text field, but when i refresh the page it gets back me to login page... </p>
<p>How can i hold the session of the page until the browser is not closed... </p>
<p>I am getting the session value from PHP.</p>
http://stackoverflow.com/questions/1830816/implementing-undo-redo-within-a-textarea2Implementing Undo/Redo within a TextAreaJames_Dude2009-12-02T05:24:52Z2009-12-02T12:47:44Z
<p>Hi</p>
<p>Im wondering how to implement undo redo functionality with a TextArea. I already have an undoredo framework functionality working, now I have two questions. </p>
<ol>
<li>When do I start/stop a new undo/redo command, eg when a user hits undo, how far back do I go. </li>
<li>How do I implement this(1.) in a normal TextArea</li>
</ol>
<p>My thinking:
I thinking that I should create a new undo command, when anything but a alphanumber+space is hit. To do this I would use the keyDown event and test if the key is alpha num if it is not I will reset the command. </p>
<p>Sound good?</p>
http://stackoverflow.com/questions/1304131/which-hibernate-adapter-should-i-use-to-handle-lazy-initialization-in-blazeds-s1Which hibernate adapter should I use to handle Lazy Initialization in BlazeDS / Spring integration projects with Flex?tomas2009-08-20T05:32:55Z2009-12-02T12:25:28Z
<p>I'm researching ways in which the Spring Framework, Hibernate and BlazeDS can play happily together without throwing lazy initialization exceptions. </p>
<p>So far, I ran across Gilead, dpHibernate and an entirely different alternative implementation of this problem via GraniteDS's Tide framework. </p>
<p>Aside from GraniteDS, there doesn't seem to be a lot of documentation on either properly integrating dpHibernate or Gilead. </p>
<p>Are there alternative libraries that solve this problem? Where can I find better guides of integrating these lazy loading libraries with the Spring-Flex integration project?</p>
http://stackoverflow.com/questions/1830665/uncompress-zlib-string-in-using-bytearrays2Uncompress Zlib string in using ByteArraysSrirangan2009-12-02T04:32:42Z2009-12-02T11:58:40Z
<p>Hi all,</p>
<p>I have a web application developed in Adobe Flex 3 and Python 2.5 (deployed on Google App Engine). A RESTful web service has been created in Python and its results are currently in an XML format which is being read by Flex using the HttpService object.</p>
<p>Now the main objective is to compress the XML so that there is as less a time between the HttpService send() method and result events. I looked up Python docs and managed to use zlib.compress() to compress the XML result.</p>
<p>Then I set the HttpService result type from "xml" to "text" and tried using ByteArrays to uncompress the string back to XML. Here's where I failed. I am doing something like this:</p>
<pre><code>var byteArray:ByteArray = new ByteArray();
byteArray.writeUTF( event.result.toString() );
byteArray.uncompress();
var xmlResult:XML = byteArray.readUTF();
</code></pre>
<p>Its throwing an exception at byteArray.uncompress() and says unable to uncompress the byteArray. Also when I trace the length of the byteArray it gets 0.</p>
<p>Unable to figure out what I'm doing wrong. All help is appreciated.</p>
<p><strong>-- Edit --</strong></p>
<p><strong>The code:</strong></p>
<pre><code># compressing the xml result in Python
print zlib.compress(xmlResult)
# decompresisng it in AS3
var byteArray:ByteArray = new ByteArray();
byteArray.writeUTF( event.result.toString() );
byteArray.uncompress()
</code></pre>
<p>Event is of type ResultEvent.</p>
<p><strong>The error:</strong></p>
<p>Error: Error #2058: There was an error decompressing the data.</p>
<p>The error could be because the value of byteArray.bytesAvailable = 0 which means the raw bytes python generated hasn't been written into byteArray properly..</p>
<p>-- Sri</p>
http://stackoverflow.com/questions/1809194/set-the-datagridcolumns-itemrenderer-dynamically1Set the dataGridColumn's ItemRenderer dynamicallyMaurits de Boer2009-11-27T14:48:07Z2009-12-02T11:50:06Z
<p>I have this DataGrid:</p>
<pre><code><mx:DataGrid id="myDataGrid">
<mx:columns>
<mx:DataGridColumn dataField="colA" headerText="Column A:" width="40"
headerRenderer="path.customComponents.VerticalHeader"
itemRenderer="path.customComponents.CustomDataGridItemRenderer" />
</mx:Columns>
</mx:DataGrid>
</code></pre>
<p>Only I don't know in advance how many columns there will be. So I tried building the columns with a function in ActionScript:</p>
<pre><code>private var _columns:Array;
[Bindable]
public function set columns(value:Array):void
{
var c:Array = [];
for each(var object:Object in value)
{
var column:DataGridColumn = new DataGridColumn();
column.headerText=object.name;
column.width=40;
// Setting the Renderers like this doesn't work!
column.headerRenderer =
path.customComponents.VerticalHeader;
column.itemRenderer =
path.customComponents.CustomDataGridItemRenderer;
c.push(c);
}
myDataGrid.columns = c;
}
public function get columns():Array
{
return _columns;
}
</code></pre>
<p>But for some reason, the renders cannot be set like this. (column.itemRenderer = com.ItemRenderer).</p>
<p>What is the proper way to set these renders dynamically?</p>
http://stackoverflow.com/questions/1832267/flex-tab-navigator-initialize-hidden-tabs1Flex tab navigator: initialize hidden tabs.luca2009-12-02T11:13:48Z2009-12-02T11:19:46Z
<p>My problem: I have a tab navigator, with many forms in each tab. But I have a single global save button. Problem is, if I don't open a Tab, it doesn't get initialized and therefore the forms it contains do not exist..</p>
<p>How Can I make it as if the user had clicked on every tab?</p>
http://stackoverflow.com/questions/741217/how-do-i-login-in-with-facebook-connect-in-a-flex-application0How do I login in with facebook connect in a flex application.smartdirt2009-04-12T03:15:20Z2009-12-02T10:18:31Z
<p>I've been checking out facebook connect stuff from the new actionscript 3 library from Adobe. I have been trying to figure out how to use the facebook connect button inside of a flex app. </p>
<p>In an html page you would us the fbml and it would automatically put the facebook connect button on your page and when the user clicks on it it pops up the face div and lets the user login. Well you can't use that in flex. So I could put it on the page containing the swf but, that's why I'm using flex and not html. I've seen it done by the guys at Universal Mind so I know it's possible. I just need a little direction. </p>
<p>I know the function to use in the facebook connect api to cause that login dialog to come up I just can't figure the correct combination. </p>
http://stackoverflow.com/questions/1709467/why-does-the-flash-player-throw-a-sandbox-error-in-this-case7Why does the Flash Player throw a sandbox error in this case?Simon2009-11-10T16:55:09Z2009-12-02T08:57:20Z
<p>I get a Flex 3 sandbox error #2048 after connecting to a Socket on a Java (1.5) server. The server code is all mine, i.e. not running under Apache. Flash Player 10.0 r32.</p>
<p>The sequence is as follows...</p>
<p>1 Java server starts, listens on port 843 for policy file request and on port 45455 for my other requests.</p>
<p>2 Flex client served by Apache (although I get the same result if I run it from the file system), socket connection made on host:45455.</p>
<p>3 Flash Player requests policy file from port 843. This is the standard behaviour with the new security settings looking for a master file. It happens regardless of whether a different policy file has been specified.</p>
<p>4 I serve the following XML from Java through port 843:</p>
<pre><code><?xml version="1.0"?>
<!DOCTYPE cross-domain-policy SYSTEM "http://www.macromedia.com/xml/dtds/cross-domain-policy.dtd">
<cross-domain-policy>
<site-control permitted-cross-domain-policies="all"/>
<allow-access-from domain="*" to-ports="*" secure="false"/>
</cross-domain-policy>
</code></pre>
<p>5 The player writes the following into the debug policy log...</p>
<pre><code>OK: Root-level SWF loaded: http://localhost/bst/BasicSocketTest.swf
OK: Searching for <allow-access-from> in policy files to authorize data loading from resource at xmlsocket://192.168.2.3:45455 by requestor from http://localhost/bst/BasicSocketTest.swf
OK: Policy file accepted: xmlsocket://192.168.2.3:843
OK: Request for resource at xmlsocket://192.168.2.3:45455 by requestor from http://localhost/bst/BasicSocketTest.swf is permitted due to policy file at xmlsocket://192.168.2.3:843
</code></pre>
<p>6 I send a text message from the client to the server on port 45455 using <code>writeUTFBytes()</code> and <code>flush()</code> (this is my own home-baked message protocol, and is correctly processed at each end)</p>
<pre><code>REG/REGISTER;simon;Si
</code></pre>
<p>7 Java server thread listening on port 45455 responds with</p>
<pre><code>REG:0/REGISTER:SUCCESS;simon;Si
</code></pre>
<p>8 The Flex client receives a ProgressEvent and the event listener I bound to the socket gets called. I process the message (write it to a text box on the screen)</p>
<p>9 The Flash player throws a 2048 sandbox error and the socket is disconnected! This is <em>after</em> the message is received and processed successfully. In fact it is about 12 seconds after. Nothing else works through the socket.</p>
<p>I have tried explicitly loading a policy file with a call to <code>Security.loadPolicyFile()</code> in the Flex client, but the reality of the new player security is that it is basically ignored. The steps are that the policy request will not get sent until a socket i/o operation occurs. At that point the player <em>always</em> goes to port 843 first looking for a master policy file. If it finds one, and it is permissive, it goes no further.</p>
<p>I have tried a variety of alternative ways of terminating the policy file and policy file contents, including deliberate errors just to see if the Flash Player is awake.</p>
<p>I can see no reason why I would have a 2048 being thrown. I accurately serve a socket policy file on the designated master security port, which the player itself logs as correct. The socket then successfully sends and receives a message from the server the contents of which are available to my code.</p>
<p>Does anyone have any clue why this may be happening? Flash Player bug?</p>
<p><strong>P.S.</strong> <em>Please</em> don't tell me to use BlazeDS or LCDS or Granite, or something else as a server, I'm looking for a solution to this problem, not a redesign. And please don't ask me to use an XMLSocket instead - I tried that and get exactly the same result. I have chosen my architecture carefully and deliberately and I want a binary socket.</p>
<p><strong>EDIT</strong>
In response to James Ward's request in his comment, here is the entire error message:</p>
<pre><code>Error #2048: Security sandbox violation: http://localhost/bst/BasicSocketTest.swf cannot load data from 192.168.2.3:45455.
</code></pre>
<p>I have a stripped down test client which has a handler for each socket event and outputs a message to the screen. This is what it shows:</p>
<pre><code>RequestPolicy: 192.168.2.3:843
Create Socket: 192.168.2.3:45455
Connect: [Event type="connect" bubbles=false cancelable=false eventPhase=2]
Sending: REG/REGISTER;simon.palmer@gmail.com;Si
Receiving: REG:0/REGISTER:SUCCESS;simon.palmer@gmail.com;Si/
Close: [Event type="close" bubbles=false cancelable=false eventPhase=2]
Error #2048: Security sandbox violation: http://localhost/bst/BasicSocketTest.swf cannot load data from 192.168.2.3:45455.
</code></pre>
<p>The close event is fired immediately after successfully receiving a response from the server, however the Error #2048 does not appear until about 20 seconds later. If I try and send a further message after close, but before the error, the Flash Player throws an invalid socket exception.</p>
<p>I have <a href="http://bugs.adobe.com/jira/browse/FP-3302" rel="nofollow">logged a bug at Adobe</a> about this.</p>
<p>I can provide full source code of both client and server if anyone is interested.</p>
http://stackoverflow.com/questions/1831241/coloring-product-images-in-flash-flex-approach0coloring product images in flash/flex approach?Pennf0lio2009-12-02T07:41:15Z2009-12-02T08:34:17Z
<p>Hi,</p>
<p>I will redesign a product page that contains products like Vase, Ceramic Plates and more, Customers can customize the colors of the product. Now I need some advice what approach would best fit, I am planning to use Flash/Flex/Actionscript in implementing this; That way I can minimize loading to many jpegs for the product and at the same time making the page more interactive. I'm looking if there are some examples out there to get me starting.</p>
<p>Thank You!</p>
http://stackoverflow.com/questions/1064716/how-can-i-trigger-an-itemeditend-event-in-a-flex-list-when-the-checkbox-is-checke0How can I trigger an itemEditEnd Event in a Flex List when the CheckBox is checked/unchecked?Eric Belair2009-06-30T16:37:09Z2009-12-02T05:28:33Z
<p>I have a <code>List</code> component that has drop-in <code>CheckBox</code> itemEditor that also serves as the itemRenderer. It displays each item as a simple <code>CheckBox</code> with a label.</p>
<p>However, the itemEditEnd Event does not get triggered until I click on something outside of the List. I want it triggered once the CheckBox is checked or unchecked.</p>
<p>I was thinking of manually dispatching the ListEvent.ITEM_EDIT_END in a CLICK Event handler, but then the itemEditEnd Event would get dispatched twice. There's gotta be a better way to do this.</p>
<p>Any ideas?</p>
<p>Thanks.</p>
http://stackoverflow.com/questions/1817724/changing-children-of-dynamic-created-states0changing children of dynamic created statesalgro2009-11-30T03:36:39Z2009-12-02T05:24:12Z
<p>I'm building an Xml-driven application.
I create new states in a seperate actionscript-class.
These states all contain a DataGrid.
I can switch the states in the Main.mxml. </p>
<p>But now I would like to access certain children of the DataGrid. In this case I would like to toggle the visibility of GridItems, from a Button in the Main.mxml. </p>
<p>How do I have access and apply this to the already created states ?
I tried to create RemoveChilds and override/push it to the state.
All I archieved was to remove an entire GridRow at the very last state, but it should be just one GridItem at every state. </p>
<p>Thanks a lot for help!</p>
http://stackoverflow.com/questions/1828261/examples-of-native-apps-using-flash-as-the-ui0Examples of Native Apps Using Flash as the UI?Christian Nunciato2009-12-01T19:19:05Z2009-12-02T04:36:56Z
<p>I'm considering using Flash as the UI of a native Windows app, for several reasons, but before I dive in and start building, I figured I'd poll the community to find out whether anyone's got any good examples of this particular approach out there today, just to prove the concept satisfactorily.</p>
<p>So I guess that's pretty much the question: Anyone built one specifically? Or better, anyone know of an app in relatively wide distribution that demonstrates the viability of this approach?</p>
<p>Thanks in advance!</p>
http://stackoverflow.com/questions/1830163/interactive-gantt-chart-component-for-flex1Interactive gantt chart component for flexbungrudi2009-12-02T01:41:45Z2009-12-02T01:46:08Z
<p>My company have a web application product for distribution planning and scheduling.
An important part of it is a gantt chart component where user can fine tune the schedules. Currently the gantt chart component is pure javascript+dhtml.</p>
<p>I am currently looking into the possibility of moving to Flex to get richer interactivity and generally nicer UI.</p>
<p>The question is: <strong>is there any good interactive gantt chart component for Flex?</strong></p>
<p>By "interactive" I mean that user can interact with the gantt chart and modify data using it, as opposed to just seeing it as part of a reporting use case.
We don't mind paying if the amount worth it.</p>
<p>Thanks</p>
http://stackoverflow.com/questions/1779145/get-column-values-in-flex-datagrid0Get column values in flex datagridYasmine2009-11-22T16:13:36Z2009-12-02T01:39:15Z
<p>I want to get all values in one of the columns of a datagrid and put them in an array, to use it as a dataprovider of a combobox, is this possible?</p>
<p>I use an ArrayCollection as the dataprovider of the datagrid, it's filled from the database.</p>
<p>Thanks</p>
http://stackoverflow.com/questions/1829664/dataprovider-in-mxdatagrid-not-working0dataProvider in mx:DataGrid not working?Chris2009-12-01T23:24:26Z2009-12-02T00:37:53Z
<p>I'm using an mx:DataGrid in flex and have the dataProvider set to a getter function. When the swf first launches, the data is set and the DataGrid shows it just fine.</p>
<p>Later, when the data changes I can set a breakpoint in the getter function and verify that the DataGrid is, in fact calling it to update the data. The getter returns a valid Array of data just as before, except the DataGrid, instead of showing the correct data, just has one row with values "undefined".</p>
<p>Does anybody know a general reason why something like might be happening? Or is more likely specific to my own implementation?</p>
http://stackoverflow.com/questions/1815920/deserialize-amfphp-messages0Deserialize AmfPhp messagesunknown (google)2009-11-29T16:09:51Z2009-12-02T00:25:17Z
<p>Is it possible to deserialize the AmfPhp messages while remoting?</p>
<p>They are in binary, and assuming that amfphp understands what they are I should be able to decode what it s.</p>
<p>How to ? is this considered a security issue?</p>
http://stackoverflow.com/questions/1772226/return-a-faultobject-on-purpose-from-pyamf1return a FaultObject on purpose from pyamfgreg2009-11-20T17:54:49Z2009-12-01T23:21:18Z
<p>I am currently migrating from RubyAMF to PyAMF. In RubyAMF you can return a FaultObject deliberately like so:</p>
<pre><code>render :amf => FaultObject.new("Thats not your pie!")
</code></pre>
<p>Is there comparable functionality in PyAMF? I've searched the docs and can't find any mention of it.</p>
http://stackoverflow.com/questions/1825818/flex-external-configuration-file0Flex External Configuration File..luca2009-12-01T12:14:32Z2009-12-01T23:04:29Z
<p>My problem: I have a program in Flex3 that accesses a server. The program itself is on a server and accessed through a web browser. The point is that I don't want to hardcode in the swf file the IP of the server to access, since it changes and for various other reasons...</p>
<p>How can I do that? Can I put a file in the same directory and what then?</p>
http://stackoverflow.com/questions/1828045/paste-text-from-clipboard-using-button2Paste text from Clipboard using buttonzdmytriv2009-12-01T18:39:31Z2009-12-01T22:16:50Z
<p>I have control bar buttons Copy, Cut, and Paste and they suppose to copy/paste some text/objects from and to clipboard.</p>
<p>Copy/Cut works fine.
Paste using CTRL+V and context menu works fine as well.</p>
<p>But when I'm trying to access Clipboard via control bar button click handler it throws error</p>
<pre><code>SecurityError: Error #2179: The Clipboard.generalClipboard object may only be read while processing a flash.events.Event.PASTE event.
at flash.desktop::Clipboard/getObjectReference()
at flash.desktop::Clipboard/convertNativeFormat()
at flash.desktop::Clipboard/getOriginal()
at flash.desktop::Clipboard/getData()
... 2 more
</code></pre>
<p>I know that this is security issue. </p>
<blockquote>
<p>Method
Clipboard.generalClipboard.getData()
may be used to read the contents of
the system Clipboard, but only when it
is called from within an event handler
processing a flash.events.Event.PASTE
event.</p>
</blockquote>
<p>But I have to implement paste control bar button. Had do I do that?</p>
http://stackoverflow.com/questions/1828504/adding-annotations-to-a-plotchart0Adding annotations to a PlotChartDoug2009-12-01T20:00:29Z2009-12-01T22:07:16Z
<p>I'm looking to add(and remove, dynamically) text annotations to the PlotChart. Specifically I want to annotate plot points in the chart. I'm currently using the CircleItemRenderer for the points.</p>
<p>I've found tutorials for other plot types, but they don't seem to apply to the PlotChart.</p>
<p>Anyone have any examples, or can point me in the right direction.</p>
http://stackoverflow.com/questions/1817123/as3-whats-newer-better-than-amfphp0AS3: What's newer/better than AMFPHPDan2009-11-29T23:20:39Z2009-12-01T21:48:33Z
<p>I'm aware that AMFPHP has long been used to connect php with flex. I remember I read somewhere that there's something better now, but I didn't take a note of it, and of course now I forgot. Does anyone know what that could be?</p>
http://stackoverflow.com/questions/1828364/pages-with-flash-wont-load-until-user-clicks-the-x-stop-button-on-ie0Pages with Flash won't load until user clicks the X (stop) button on IEMarc Lichtenfeld2009-12-01T19:36:17Z2009-12-01T21:23:58Z
<p>I am building a flash application using flex. From time to time, I see an issue in IE 7 and 8 where the user logs into the site and the browser content pane is completely grey and the entire page (html, javascript and flash) won't load until the user clicks the X (Stop) button next the address bar. As soon as the X is clicked, the html loads and then the swf file loads immediately.</p>
<p>This doesn't happen for me or any other developers on the project so it is very hard to diagnose. The users are all using the latest flash player. The only difference between our setups that I can think of is that we have the debug version of flash player and they probably do not.</p>
<p>Has anyone seen this behavior? </p>
http://stackoverflow.com/questions/405073/flash-flex-error-1063-when-retrieving-sharedobject0Flash/Flex Error #1063 When Retrieving SharedObjecttroylar2009-01-01T15:47:07Z2009-12-01T19:41:05Z
<p>I have a parts application that is built on Flex 3 and I having a problem with the parts list. The parts list uses two objects:</p>
<ul>
<li>Part</li>
<li>ArrayOfPart</li>
</ul>
<p>I cache the parts list locally in a SharedObject. <strong>This has been working fine for a couple months</strong>. I added a new Boolean property to the Part class and re-imported web services (which shouldn't have affected anything) and now, <strong>I can save the ArrayOfPart SharedObject fine, but when I try to retrieve the SharedObject, I get "ArgumentError: Error #1063: Argument count mismatch on ArrayOfPart. Expected 1, got 0. AND then it DELETES my SOL file completely.</strong></p>
<p><em>(I used RegisterClass on Part and ArrayOfPart, so they both are serializable to SharedObjects)</em></p>
<p><strong>Here's the steps I followed to get the error:</strong></p>
<p><strong>Save the shared object:</strong></p>
<pre><code>so = SharedObject.getLocal("PartsList");
so.data.AllParts = AllParts;
so.flush();
</code></pre>
<p><strong>Verify the SharedObject:</strong></p>
<ul>
<li>The SharedObject <strong>PartsList.sol</strong> exists where it should</li>
<li>I opened the SharedObject file and the ArrayOfPart data looks valid</li>
</ul>
<p><strong>Restart the application and it retrieves the parts list from the SharedObject. This is the line that throws the Error #1063 and causes the sol file to be deleted:</strong></p>
<pre><code>so = SharedObject.getLocal("PartsList");
</code></pre>
<p>It looks like the data may not be well-formed when it's saved in the SharedObject? Is this possible?</p>