[flexcoders] Air Sub Application installing.

2010-07-29 Thread Wesley Acheson
Hi, I've asked this question here but no joy. Anyone here know? http://stackoverflow.com/questions/3275746/air-sub-applications -- Hi Is it possible for an Adobe Air application to install, upgrade and

[flexcoders] How to write curved text in flex?

2010-07-29 Thread kheta ram
Please can anyone help me to out from following problem as I am new in Flex. I would like to add dynamically text on an image which is a circle type image and text should be appear on curved(circumstance) side with proper rotation. Thanks, Kheta Ram Sansi

[flexcoders] Re: Refresh list with itemRenderer/ComboBox

2010-07-29 Thread valdhor
That's fine - I don't need any new features but bug fixes are definitely worth it. Add me as someone wanting at least a 3.7 ;-} --- In flexcoders@yahoogroups.com, Alex Harui aha...@... wrote: Maintenance continues enough to produce a 3.6. No new features, just bug fixes. I don't know of

[flexcoders] Re: Air Sub Application installing.

2010-07-29 Thread valdhor
I don't know about the install and upgrade but you could use merapi to execute other applications. Hmmm...If you can execute other applications you would be able to launch an installer/updater. --- In flexcoders@yahoogroups.com, Wesley Acheson wesley.ache...@... wrote: Hi, I've asked this

[flexcoders] Re: How to write curved text in flex?

2010-07-29 Thread valdhor
A quick Google search reveals... http://blog.shortfusion.com/index.cfm/2009/1/25/Circular-Text-In-Flex-Explained http://blog.shortfusion.com/index.cfm/2008/12/15/Flex-Curved-Text-DisplacementMapFilter-Why-I-Dont-Swing-That-Way

[flexcoders] Computation request

2010-07-29 Thread Christophe
Hello, When there are too much computation in a Flex application, and the customer is waiting (and can go away), is it a solution to make some computations in Php ? and which instructions to use to launch the php function in parallel from the flex application ? Thank you, Christophe,

Re: [flexcoders] Re: Refresh list with itemRenderer/ComboBox

2010-07-29 Thread Alex Harui
I would recommend getting tons of votes for the bugs you want fixed and adding comments to those bugs as to why a 4.x fix is not going to work for you. On 7/29/10 6:03 AM, valdhor valdhorli...@embarqmail.com wrote: That's fine - I don't need any new features but bug fixes are definitely

[flexcoders] Alex Hauri Sample | CheckBox DataGrid

2010-07-29 Thread Rajan
Hi I am using Alex Sample in my piece of the code. http://blogs.adobe.com/aharui/2008/02/checkbox_selection_in_datagrid.html I have made grid editable and added the below columns couple of times. mx:DataGridColumn dataField=firstName headerText=First Name / mx:DataGridColumn

[flexcoders] Re: flex debuging

2010-07-29 Thread valdhor
Share what? Set a breakpoint, run app, do something that will invoke the breakpoint, examine the variables to see if they contain what you expect. Simplicity itself. http://learn.adobe.com/wiki/display/Flex/Debugging+tutorial --- In flexcoders@yahoogroups.com, cholid cholid cholid_rid...@...

[flexcoders] garbage collection question

2010-07-29 Thread djbrown_rotonews
I'm trying to track down a memory leak in one of my applications, having already employed the use weak reference in dictionaries and eventListeners guideline. I have an wrapper object, that has (among other properties) a reference to another object, which contains an array of a third object.

[flexcoders] ActionScript dispatchEvent silently fails with ‘Asynchronous viewer update’ mess

2010-07-29 Thread tntomek
I'm manually dispatching a propertyChanged event from my model only to never have it be caught. When I try to debug and step into (F5) the dispatchEvent call I get FlashBuilder error Asynchronous viewer update displayed twice. Does anyone have an idea why this might be failing? Possibly

RE: [flexcoders] How to split a String on spaces but including Quoted Phrases?

2010-07-29 Thread Keith Reinfeld
Nick, I think this satisfies your conditions. There is a for-loop but it's not iterating over the entire string, which, I'm certain, is what you wanted to avoid. var myString:String = 'flex action script parse string function'; var resultArr:Array = regExpDQ(myString, false);

Re: [flexcoders] garbage collection question

2010-07-29 Thread Oleg Sivokon
1. Using weak references is the last thing you should do, whenever possible you should avoid it. By doing so you leave all means of control of the object, and if the object has some kind of behavior that will keep it alive, you won't be able to delete it ever (example, the *deleted* object did not

Re: [flexcoders] How to split a String on spaces but including Quoted Phrases?

2010-07-29 Thread Oleg Sivokon
Sorry to chum in :) var re:RegExp = /((|').*(?=\2)\2)|(\s[^\s]+(?!\s))/g; var text:String = ![CDATA[Lacrimosa dies illa, qua resurget ex favilla iudicandus homo reus. Huic ergo parce, Deus: Pie Iesu Domine, dona eis requiem.]].toString(); var result:Object; while (result = re.exec(text)) {

[flexcoders] Re: Strange problem with Item Renderer in Flash Play 10

2010-07-29 Thread Amy
--- In flexcoders@yahoogroups.com, Paul paulfische...@... wrote: I am using Flex 3.5. I have custom item renderers in AdvancedDataGrids based on the Flex Text component which takes the data value which has multiple values delimited with | characters and writes out the values on multiple

Re: [flexcoders] How to split a String on spaces but including Quoted Phrases?

2010-07-29 Thread Oleg Sivokon
Ouch, actually, it has a flaw, but I'm not sure you need a fix for that, but it's possible to fix it, if you want. It only checks for the double quotes, when it checks for the non-quoted words, but it checks for both single and double quoted groups of words. If you need both single and double

[flexcoders] Re: Refresh list with itemRenderer/ComboBox

2010-07-29 Thread Amy
--- In flexcoders@yahoogroups.com, Richard Rodseth rrods...@... wrote: Hmm. I did a diff on the 3.x and 3.5 versions of ComboBase and ComboBox, and didn't see anything that seemed relevant - just some stuff about tweening. Richard, have you considered subclassing and just fixing it yourself

RE: [flexcoders] Computation request

2010-07-29 Thread Bill Brutzman
This is rather a large question. I expect that the fastest way to arrive at a meaningful answer would be to view the Adobe.TV videos. There is a lot of new easy-to-use, wizard-like functionality in FB4 to easily connect to middleware such as PHP. --Bill From:

Re: [flexcoders] Re: Refresh list with itemRenderer/ComboBox

2010-07-29 Thread Richard Rodseth
Yes, that was my plan, but I've since discovered that I misspoke and my item renderer has a PopUpButton rather than a ComboBox (sorry!) Looking into other possible mistakes in my binding. On Thu, Jul 29, 2010 at 3:31 PM, Amy amyblankens...@bellsouth.net wrote: --- In

RE: [flexcoders] Computation request

2010-07-29 Thread Bill Brutzman
I am a little surprised at how long my message took for a round trip. I posted it at 1:54 pm Eastern and I just got it back at 7:30 pm. Does the FlexCoders group forward posts to Rockford, Matlock, Cannon, etc? --B From: flexcoders@yahoogroups.com

[flexcoders] Single Sign on with Flex/BlazeDS

2010-07-29 Thread Dharmendra
Hi All, Does blazeDS supports single sign on functionality ? As far as I know SSO has not much to do with BlazeDS rather it has more to do with the application server where the Application has been deployed and Browser who is accessing the application. I am using blazeDS 3.2 ,

Re: [flexcoders] Re: flex debuging

2010-07-29 Thread cholid cholid
i mean debuging when flex running like we debuging JS with firebug at firefox i've try with add alert in actionscript tag to know the sequence of code but i want more debuger (like firebug for JS at webbrowser) From: valdhor valdhorli...@embarqmail.com To:

Re: [flexcoders] garbage collection question

2010-07-29 Thread Alex Harui
The profiler will show you who is still referencing the object. On 7/29/10 1:01 PM, djbrown_rotonews djbrown_roton...@yahoo.com wrote: I'm trying to track down a memory leak in one of my applications, having already employed the use weak reference in dictionaries and eventListeners

Re: [flexcoders] Alex Hauri Sample | CheckBox DataGrid

2010-07-29 Thread Alex Harui
Did you add some sort of double-click logic to the DG? The basic example only uses single click for selection. The selectionIndices should change and then the checkbox renderer should call isItemSelected and check the box if needed. On 7/29/10 9:08 AM, Rajan ilikef...@yahoo.com wrote: