AMFPHP AMF0 and AMF3
What are the difference between them? ...
What are the difference between them? ...
Is there a easy way to figure out consistently when a Dialog closes that has been created through PopUpManager. I would have suspected some type of message or callback mechanism, but there does not seem to be. In one case I use the WindowTitle component and event that only fires the CLOSE if someone presses the close and give no messag...
I have a big set of fla's that use an ActionScript 3.0 class that uses the Embed Flex SDK feature. (Like this; [Embed(source="pngasset.png")] ) My Flash CS3 IDE knows where my Flex SDK path is. And my global actionscript library path contains; $(FlexSDK)/frameworks/libs/flex.swc; However when I recompile an older Fla. I get a dialog ...
How to compile your flex (Flash Builder) application for Iph*ne Using Adobe Flash CS5? A User can Install an app having it as compiled binary? ...
I'm currently using the Flex HSlider control. I'd like the slider to only allow the user to pick the values: [0, .5, 1, 2] I can get it close to what I want by setting the snapInterval to .5 and by explicitly providing the tickValues. But that still allows the value 1.5 to be selected. Is there a way to provide explicit snapValues or to...
Hi all , i was building an application that use local connection and listens to another application that also uses local connection , the second application is sort of remote control for the first app. it invokes function of the listening app from outside. anyway , everything works good on local host. BUT once i have put the listening ...
I don't know if this is too difficult or too easy. My custom component is trying to listen to the main application's state changes using StateChangeEvent.CURRENT_STATE_CHANGE, but it's reporting its own state changes. Any idea how I could do this? ...
I have a datagrid with a custom label itemrenderer (basically it makes the label look like a traditional html hyperlink). <mx:DataGridColumn id="itemId"> <mx:itemRenderer> <mx:Component> <controls3:HyperlinkLabel text="{data.doc}" /> </mx:Component> </mx:itemRenderer> </mx:DataGridColumn> The above works perfec...
I am displaying some HTML text in an Adobe AIR Application that I do not want the user to be able to cut and paste. How do I make the HTML control disallow highlighting of the HTML without disabling the ScrollBars. mouseChildren=false works but disables the scrollbars which is unacceptable. Right now I have: <mx:HTML location...
I have a rectangle of any arbitrary width and height. I know X,Y, width, and height. How do I solve the upper right hand coordinates when the rectangle is rotated N degrees? I realized if it were axis aligned I would simply solve for (x,y+width). Unforunatly this doesn't hold true when I apply a transform matrix on the rectangle to rotat...
I have a Flex datagrid with a combo box as an itemRender on one column and the renderIsEditor set to true.. When I disable the datagrid, the combo boxes are still enabled and can receive input and change their values. How can I disable the combo boxes at teh same time the datagrid is disabled? Thanks. ...
Hi All, i am using a data grid in flex and i am generating data from a mysql server. However, my problem is with adding a button within the datagrid so each row has one. i have set the columns itemRenderer to mx.controls.Button although with the buttons shown in the grid there is no label on them (even though one has been set) and the a...
I have an Adobe AIR application that makes multiple connections to a server. When I open more than two connections I get an error: 2032: Stream Error. Is there a configuration option or a property somewhere to raise the limit? ...
is it possiable we can bulid the reports using flex bulider ? or can we and any frameworks for build the reports ? . i don't know what way to bulid the reports flex bulider have any build reports compoents there? i want sorting reports order like By Product Company Name Expected Close Month ...
For e.g. function showIt():void { something.visible = true; } function init():void { time1 = flash.utils.getTimer(); showIt(); time2 = flash.utils.getTimer(); } <mx:st id="something" visible="false"/> <mx:Button click="init()"/> In the above code, I want to measure the time taken to display st on screen. Is it enough to...
My flex builder suddenly stopped highlighting compile time errors. Its also not giving any code completion suggestion, even after pressing ctrl+Space. What could be the possible reasons? Regards, PK ...
Hi everybody ! I would like to automaticaly resize my button (spark button) according it content (label text) ? Thanks all for your help ! Anthony ...
For example : Having four columns in advance datagrid like company,contact_person,product and date. In this, first i want to sort by product followed by company and followed by date. how can i do it in Advance datagrid. Anybody knows please reply me asap. Advance thanks to u. ...
Hi, I would like to avoid the tags overlapping each other in this small Flex project: I've this small FLEX project: http://dl.dropbox.com/u/72686/IVbeta1/main.html# The items are LinkButtons. How can I check if they are colliding or not ? Thanks ...
I'm creating files in an AIR application like this: var file:File = File.documentsDirectory.resolvePath("myFile"); var stream:FileStream = new FileStream(); stream.open(file, FileMode.WRITE); stream.writeUTFBytes(data); stream.close(); This leaves the creation and modification dates on created files blank. Is there are way to add this...