Re: [flexcoders] Funtion in Background

2010-07-28 Thread wkolcz
Technically all functions run in the background. What exactly are you trying to do? Sent via BlackBerry by ATT -Original Message- From: Christophe christophe_jacque...@yahoo.fr Sender: flexcoders@yahoogroups.com Date: Wed, 28 Jul 2010 08:28:04 To: flexcoders@yahoogroups.com Reply-To:

Re: [flexcoders] Stopping a function

2010-07-28 Thread wkolcz
I guess it depends on the function. Take the Timer class. It has a start() and stop() functions. You can create a custom function that calls those functions to start and stop them. So, if you have a class that has a running function (I.e. Timer.start()), then you can create another function

RE: [flexcoders] Stopping a function

2010-07-28 Thread Gregor Kiddie
The Flash Player is single threaded... so if Function B is running, Function A isn't. Gk.

Re: [flexcoders] Stopping a function

2010-07-28 Thread Paul Andrews
On 28/07/2010 09:57, Christophe wrote: Hello, How to stop a ruuning function by software of another function ? FunctionA { } FunctionB { Stop FunctionA } Thank you, Christophe, Christophe, you cannot execute FunctionB while FunctionA executes, except if you call

Re: [flexcoders] Stopping a function

2010-07-28 Thread Paul Andrews
On 28/07/2010 11:31, Paul Andrews wrote: On 28/07/2010 09:57, Christophe wrote: Hello, How to stop a ruuning function by software of another function ? FunctionA { } FunctionB { Stop FunctionA } Thank you, Christophe, Christophe, you cannot execute FunctionB

RE: [flexcoders] Stopping a function

2010-07-28 Thread Gregor Kiddie
I slip under the radar me... ;)

[flexcoders] Re: Know of any Link Analysis Data Visualization Flash/Flex libraries?

2010-07-28 Thread valdhor
IBM's ILOG Elixir can do those types of charts. See http://visunetdemos.demos.ibm.com/diagramdemos/networkmonitoring/networkmonitoring.html --- In flexcoders@yahoogroups.com, eb e_ba...@... wrote: Does anyone know of any Actionscript libraries that do link analysis charts like this one:

[flexcoders] Re: dynamically create xml issue

2010-07-28 Thread valdhor
Create an object with your property and use appendChild to add it to your XML. http://livedocs.adobe.com/flex/3/langref/XML.html --- In flexcoders@yahoogroups.com, j2me_soul j2me_s...@... wrote: I want to create a XMLList using e4x grammar like this: var list:XMLList = Region city

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

2010-07-28 Thread Paul
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 lines in the Text component. For example: value

[flexcoders] mx.messaging.AdvancedChannelSet

2010-07-28 Thread sanjit
Hi, I am trying to use reliable messaging in LCDS. I am facing one problem I am not being able to see mx.messaging.AdvancedChannelSet class in flash builder to define Dynamic channel Set. As per documentation I can be able to define the AdvancedChannelSet in As file. like // New

Re: [flexcoders] mx.messaging.AdvancedChannelSet

2010-07-28 Thread Bill Sahlas
The variable declaration should look like this import mx.messaging.AdvancedChannelSet; // New AdvancedChannelSet. var channelSet:AdvancedChannelSet = new AdvancedChannelSet(); You have // New AdvancedChannelSet. var channelSet:ChannelSet = new

Re: [flexcoders] Refresh list with itemRenderer/ComboBox

2010-07-28 Thread Richard Rodseth
True - it's given me many headaches. Any ideas for a workaround? A judiciously-placed callLater ? Some combination of invalidateXX ? Even something like this doesn't work: var source:Array = conditions.source; conditions.source = [];

Re: [flexcoders] Refresh list with itemRenderer/ComboBox

2010-07-28 Thread Alex Harui
3.6 is due out soon. It is fixed in that code base. I think there may be nightly build on the 3.x branch. On 7/28/10 9:23 AM, Richard Rodseth rrods...@gmail.com wrote: True - it's given me many headaches. Any ideas for a workaround? A judiciously-placed callLater ? Some combination of

Re: [flexcoders] Refresh list with itemRenderer/ComboBox

2010-07-28 Thread Brendan Meutzner
Woah, development is continuing on the 3.x versions? How long will this continue? On Jul 28, 2010 11:58 AM, Alex Harui aha...@adobe.com wrote: 3.6 is due out soon. It is fixed in that code base. I think there may be nightly build on the 3.x branch. On 7/28/10 9:23 AM, Richard Rodseth

Re: [flexcoders] Refresh list with itemRenderer/ComboBox

2010-07-28 Thread Richard Rodseth
Good to know. Of course, in the real world, we can't update on a whim, so any other suggestions are welcome. I may be able to get the bug deferred. On Wed, Jul 28, 2010 at 9:58 AM, Alex Harui aha...@adobe.com wrote: 3.6 is due out soon. It is fixed in that code base. I think there may be

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

2010-07-28 Thread Nick Middleweek
Hi, I haven't been able to work out regex yet so apart from looping and parsing a string manually, is there anyway of parsing the following string... flex action script parse string function into the following Array... [0] = flex [1] = action script [2] = parse [3] = string [4] = function

[flexcoders] Re: Stopping a function

2010-07-28 Thread Ariel J
yes, but you can mimic multithreading to permit one process to interrupt another http://blogs.adobe.com/aharui/2008/01/threads_in_actionscript_3.html --- In flexcoders@yahoogroups.com, Paul Andrews p...@... wrote: On 28/07/2010 09:57, Christophe wrote: Hello, How to stop a ruuning

[flexcoders] setter not setting

2010-07-28 Thread aceoohay
I have a custom component that I have defined a parameter (setter) to allow a value to be passed in. Using mxml I associate a another fields text property to the custom component's parameter. For example; mx:TextInput id=inputField/ ns1:myCom myParam=inputField.text/ My problem is that when I

Re: [flexcoders] Refresh list with itemRenderer/ComboBox

2010-07-28 Thread Richard Rodseth
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. On Wed, Jul 28, 2010 at 10:09 AM, Richard Rodseth rrods...@gmail.comwrote: Good to know. Of course, in the real world, we can't update on a

Re: [flexcoders] setter not setting

2010-07-28 Thread Sajid Hussain
put this ns1:myCom myParam={inputField.text}/ if your setter is right it may work Sajid From: aceoohay pa...@compuace.com To: flexcoders@yahoogroups.com Sent: Wed, July 28, 2010 10:59:42 AM Subject: [flexcoders] setter not setting I have a custom

[flexcoders] Re: Refresh list with itemRenderer/ComboBox

2010-07-28 Thread valdhor
Hopefully for quite a while. Converting all my code to Flex 4 would be a major undertaking and something I don't have time to do and won't have for some time. --- In flexcoders@yahoogroups.com, Brendan Meutzner bmeutz...@... wrote: Woah, development is continuing on the 3.x versions? How

[flexcoders] Using Subclipse and SSH with Flex Builder 3??

2010-07-28 Thread luvfotography
Using Subclipse and SSH with Flex Builder? Hi, my subversion server is requiring me to SSH to it, I've installed the Subclipse Plug-in to FLEX and installed Putty, TortoiseSVN, Plink, Pageant. and I can use TortoiseSVN to SSH to my subversion server. Now I need to tell Subclipse where

Re: [flexcoders] Tree click vs change

2010-07-28 Thread Richard Rodseth
Thanks. This worked well. On Fri, Jul 2, 2010 at 2:43 PM, Alex Harui aha...@adobe.com wrote: Add a high priority mouseDown handler and record the selectedIndex then. On 7/2/10 2:34 PM, Richard Rodseth rrods...@gmail.com wrote: We have a datagrid that gets updated when the user

[flexcoders] Sorting problem after grouping

2010-07-28 Thread RishiShahi
Here is my advance data grid without grouping , http://old.nabble.com/file/p29282709/4.png Once I apply grouping, sorting is getting lost, see below , http://old.nabble.com/file/p29282709/5.png Here is piece of code which is applied after grouping is done and the GroupingCollection

[flexcoders] Bookmark no longer valid when moving items in AdvancedDataGrid

2010-07-28 Thread Matthew
I am trying to implement code to move items up and down in an AdvancedDataGrid. When I repeat the move up or move down action multiple times in a row I get the error below. I don't get it every time but it will come here and there...pretty frequently. Sometimes I can click 2, 3, even 4 times

Re: [flexcoders] Refresh list with itemRenderer/ComboBox

2010-07-28 Thread Alex Harui
Rev 13209 fixes the problem. On 7/28/10 11:13 AM, Richard Rodseth rrods...@gmail.com 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. On Wed, Jul 28, 2010 at 10:09 AM, Richard

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

2010-07-28 Thread Alex Harui
Maintenance continues enough to produce a 3.6. No new features, just bug fixes. I don’t know of any plans for 3.7 at this time. Customer feedback will influence. On 7/28/10 12:06 PM, valdhor valdhorli...@embarqmail.com wrote: Hopefully for quite a while. Converting all my code to

[flexcoders] simulate AIR mx.core.Window in Flex?

2010-07-28 Thread MicC
Is there any way to create a popup that is not confined to the Flex area i.e. a window that can be moved to another screen. I am thinking that this would have to be another html page of some kind? TIA, Mic.

Re: [flexcoders] Sorting problem after grouping

2010-07-28 Thread Oleg Sivokon
Hi. Did you know that you can compare stings using operators and as well as == ? Anyways, I'd usually just do the sorting on source and reset the view. I think that sorting of the view is just strange and the way it is implemented is convoluted... I could never understand why anyone would want

Re: [flexcoders] Sorting problem after grouping

2010-07-28 Thread RishiShahi
Thanks Oleg, I've fixed the problem by sorting grid with combination of two columns. However , you are correct , Sorting source is better idea than a grid. I will follow from next time .. Rish Oleg Sivokon wrote: Hi. Did you know that you can compare stings using operators and as