Re: [flexcoders] Building both with and without -use-network

2010-07-27 Thread Evan Klein
ect settings, like you can do in > Visual Studio? > > Thanks > > > -- Evan Klein

Re: [flexcoders] Reload an application

2010-07-25 Thread Evan Klein
>> >> C >> >> >> -- >> *From:* Christophe > n...@yahoo.fr >> > >> *To:* flexcod...@yahoogro ups.com >> >> *Sent:* Fri, July 23, 2010 10:27:45 AM >> *Subject:* [flexcoders] Reload an application >> >> >> >> Hello, >> >> How to reload a flex application from a click on a button on the >> application interface ? >> >> Thank you, >> Christophe, >> >> >> > > > -- Evan Klein

Re: [flexcoders] Cast Object into a custom class

2010-05-27 Thread Evan Klein
You should be able to cast this as a strongly typed 'Person' object. var object:Object = new Object(); object.name = "name"; object.address = "address"; person:Person = object as Person; trace ( person.name ); //name trace ( person.address ); //address On Sat, May 8, 2010 at 9:18 PM, anagnost6

Re: [flexcoders] Re: Update & Insert via DataServices

2010-05-26 Thread Evan Klein
No, Flex does not have DataService out of the box. It is part of LiveCycle DataServices. On Wed, May 26, 2010 at 7:37 PM, Stephen wrote: > > > So is this built into Flex Builder 4 or do I have to download something > else? > > > --- In flexcoders@yahoogroups.com

Re: [flexcoders] Update & Insert via DataServices

2010-05-26 Thread Evan Klein
. Usually I use HTTPServices > so have a array collection to work with but there is no array collection > this time. all i have is an obj:Object containing the insert or update data? > > > -- Evan Klein

Re: [flexcoders] Re: Time Problem flex4 + blazeDS + spring

2010-05-25 Thread Evan Klein
If you want to modify settings on the server you'll need to modify the JVM timezone setting. Also, it's possible the database has specific timezone settings too. On Tue, May 25, 2010 at 3:54 AM, raja_s_patil wrote: > > > Thanks Evan Klein for response, > > I read t

Re: [flexcoders] Link button custom look

2010-05-24 Thread Evan Klein
. > > with styles properties I could change only font colors but not > background colors. Can somebody give me idea how can I do this ? > > Thanks and best regards. > > Raja. > > > -- Evan Klein

Re: [flexcoders] Time Problem flex4 + blazeDS + spring

2010-05-24 Thread Evan Klein
The crux of it is that on transfer of time the client is converting time to local timezone. On get/set of these values the time must be converted to whichever timezone you would like to operate in. Read this blog: http://cookbooks.adobe.com/post_Date_time_transfer_in_BlazeDS-13114.html Evan

Re: [flexcoders] timeline for conversion of remaining Halo comps to Spark?

2010-05-24 Thread Evan Klein
Not sure they will all be converted. I know the Datagrid & ADG is supposedly coming down the pipeline from Adobe, but don't know about the rest. Evan Klein On Sun, May 23, 2010 at 4:29 PM, tex_learning_flex < tex.learning.f...@gmail.com> wrote: > > > Does anyone kn

Re: [flexcoders] best automated testing tool for flex?

2010-05-22 Thread Evan Klein
They have released flex monkey for the sdk 4.0 recently. Check out gorilla logic's website. On Fri, May 21, 2010 at 4:58 PM, sathish_mca_raja < sathish_mca_r...@yahoo.com> wrote: > > > Just wanted to know which is the best automated testing tool out of the > tools that are currently available i

Re: [flexcoders] How to automatise Unit test with Maven ???

2010-05-19 Thread Evan Klein
You should be able to find documentation or examples available at flex-mojos http://flexmojos.sonatype.org/. Evan On Tue, May 18, 2010 at 9:56 AM, Nini7016 Nini7016 < nahloulaha...@hotmail.com> wrote: > > > Hello > > I would like to automatise Unit tests but i didn't find the best plugin > which

Re: [flexcoders] Application requiring streaming data

2010-05-17 Thread Evan Klein
> Hence my search for a protocol which actually was meant for streaming. > > Regards, > sasuke > > > Evan Klein wrote: > > > > All of these solutions happen over HTTP. I'm not aware of a messaging > > solution that does not use HTTP. > > > &g

Re: [flexcoders] Application requiring streaming data

2010-05-16 Thread Evan Klein
All of these solutions happen over HTTP. I'm not aware of a messaging solution that does not use HTTP. Why the requirement to not use http? On Sun, May 16, 2010 at 2:20 PM, sasuke wrote: > > > > > Evan Klein wrote: > > > > You are looking for messaging services

Re: [flexcoders] Application requiring streaming data

2010-05-13 Thread Evan Klein
You are looking for messaging services. Messaging services come out of the box with BlazeDS and Livecycle Data services. Both products have a Java API for creating the producer components to push messages down to clients. Livecycle , however is about $40K / CPU and has advanced functionality such

Re: [flexcoders] Server power for Appli

2010-05-10 Thread Evan Klein
That's a pretty broad question. Are you talking applications server, database server, web? On Mon, May 10, 2010 at 1:11 PM, Christophe wrote: > > > Hello, > > Which type of server to choose to have a faster execution of a flex > application for the customer ? > > Thank you, > Christophe, > > >

Re: [flexcoders] Data paging error: Item requested is not available. A request for the item.....

2010-05-06 Thread Evan Klein
You need to handle the itemPendingError in a try/catch block. It's basically telling you the item is not yet at the client, so hold on. http://livedocs.adobe.com/livecycle/8.2/programLC/programmer/lcds/help.html?content=dms_paging_4.html On Thu, May 6, 2010 at 6:59 PM, azona26 wrote: > > > I a