[flexcoders] Air 2.7 TLS version?

2011-08-25 Thread DustinB
Hello- I am trying to find information about which TLS version Flex 2.7 supports. It seems like its only 1.0 and the client is looking to use 1.2. Anyone know? thanks! Dustin

Re: [flexcoders] Re: HTTPService DELETE/PUT automatically got changed to GET??

2011-08-25 Thread Peeyush Tuli
you can also use extrenalinterface to issue such requests through ajax.. On Wed, Aug 24, 2011 at 12:05 AM, handitan handi@gmail.com wrote: ** Thanks for the insightful info Peter! --- In flexcoders@yahoogroups.com, Peter Coppens pc.subscriptions@... wrote: Fwiw... As far as I

[flexcoders] Re: Spark Datagrid selectedItem question

2011-08-25 Thread bhaq1972
Let me elaborate (sorry I was trying to keep the question short and sweet). In my situation, we don't want our users to edit more than one row at a time. So the datagrid starts off uneditable. They select a row they wish to edit. They then click a button to 'edit' that row. Once editing is

[flexcoders] Re: Spark Datagrid selectedItem question

2011-08-25 Thread bhaq1972
We'd prefer to stay within the datagrid. --- In flexcoders@yahoogroups.com, Rishi Tandon rishitandon123@... wrote: Make a pop up window which include the searchable row based on some unique ID and then display the row field and data inside a form. After changing the field value, update

Re: [flexcoders] Mobile-Desktop Desktop-Mobile synching

2011-08-25 Thread ganaraj p r
As far as I know, there is no protocol that lets you sync a mobile app directly to a desktop app. You will , most probably have to go through a server ( in most cases a web server - since its one of the simplest way to do it. ) On Wed, Aug 24, 2011 at 6:28 PM, Amy amyblankens...@bellsouth.net

Re: [flexcoders] Launch a .bat

2011-08-25 Thread John Fletcher
Air lets you run programs on the local machine in the desktopProfile (you have to do a little research on that) so I guess .bat would work too. John 2011/8/5 Pete pete313...@yahoo.com ** Actually, there was something nagging at me all day yesterday and I remembered what it was today.

[flexcoders] Re: HttpService results inconsistent

2011-08-25 Thread valdhor
This is pretty much how Flex works and has been documented. What I always do is convert the result into an array... new ArrayCollection(ArrayUtil.toArray(event.result)) so even with only one record I still get an ArrayCollection. --- In flexcoders@yahoogroups.com, Sells, Fred fred.sells@...

[flexcoders] Re: remoting problem

2011-08-25 Thread valdhor
That does not look like a Flex class. Is it PureMVC? I would try what it tells you to do. ie. Define a variable of that type in the top level application. --- In flexcoders@yahoogroups.com, j2me_soul j2me_soul@... wrote: warning: The class com.frameworks.mvc.model.VO.remoting.EztDept has been

Re: [flexcoders] Re: HTTPService DELETE/PUT automatically got changed to GET??

2011-08-25 Thread Peter Coppens
I wonder whether anyone reading this has tried such an approach and would be willing to comment on the experience (stability, maintainability , testability, etc) of such an approach. It also crossed our mind, but it seemed such a long road and it becomes really tricky if you want to read

[flexcoders] Re: Mobile-Desktop Desktop-Mobile synching

2011-08-25 Thread Amy
So, make users use their data even though they have a physical cable to the computer? That's crazy. --- In flexcoders@yahoogroups.com, ganaraj p r ganarajpr@... wrote: As far as I know, there is no protocol that lets you sync a mobile app directly to a desktop app. You will , most probably

Re: [flexcoders] Re: Mobile-Desktop Desktop-Mobile synching

2011-08-25 Thread ganaraj p r
On a very simple basis you could just write all the data in the mobile app to a file, transfer the file to desktop and update the desktop app from the file? and vice versa ofcourse. On Thu, Aug 25, 2011 at 2:57 PM, Amy amyblankens...@bellsouth.net wrote: ** So, make users use their data

[flexcoders] Re: Mobile-Desktop Desktop-Mobile synching

2011-08-25 Thread Amy
My target audience is stay-at-home moms. I don't think that's viable. --- In flexcoders@yahoogroups.com, ganaraj p r ganarajpr@... wrote: On a very simple basis you could just write all the data in the mobile app to a file, transfer the file to desktop and update the desktop app from the

[flexcoders] Re: Mobile-Desktop Desktop-Mobile synching

2011-08-25 Thread valdhor
If you can sync to the web why can't you create an embedded web server in the desktop application using an esoteric port number? --- In flexcoders@yahoogroups.com, Amy amyblankenship@... wrote: Hi, all; I have been searching for a tutorial/example that shows how to get data from a mobile

[flexcoders] Best Practice for Subclassed UIComponent and DataProvider

2011-08-25 Thread hanzo55
I am working with a project already in place. It uses Cairngorm and is built on Flex 3.0.2.2113 A standard ComboBox is implemented in one of the views like so: mx:ComboBox dataProvider={model.facilities} id=Facility model is a bindable singleton, and one of its properties, facilities is a public

[flexcoders] Adding up Arraycollections to Datagrid!

2011-08-25 Thread Venkat M
Hi Group,   I have a basic question on arraycollections. Please assist.   I have an array collection A populated with values {1,2,3,4,5,6,7,8,9,10} Also I have an arraycollection B populated with values {one,two,three,four,five,six,seven,eight,nine,ten}   Given this data, How do I present this

RE: [flexcoders] Re: Flex 4 CSS

2011-08-25 Thread Davidson, Jerry
Alex, I have no idea of what you just said. I'm converting my one and only Flex app to 4 in the hopes that management will see an advantage to using that. Once (and if) it gets to 4, I'm going to try to get 4.5 so I can make it into an app (my distant dream). Doing things in net is OK,

Re: [flexcoders] Best Practice for Subclassed UIComponent and DataProvider

2011-08-25 Thread Alex Harui
Binding a visual component to a singleton limits its reuse. So there may not really a best practice. The minimum code way is probably to assign the dataProvider in commitProperties instead of the constructor. The model.facilities might have its final assignment by then. On 8/25/11 9:41 AM,

Re: [flexcoders] Adding up Arraycollections to Datagrid!

2011-08-25 Thread Alex Harui
You can just use A and use a second column with a label function that references B On 8/25/11 3:11 PM, Venkat M venkat_...@yahoo.com wrote: Hi Group, I have a basic question on arraycollections. Please assist. I have an array collection A populated with values {1,2,3,4,5,6,7,8,9,10}

RE: [flexcoders] Adding up Arraycollections to Datagrid!

2011-08-25 Thread Bill Brutzman
Venkat: Yes. of course this can be done. The next question is how. and what is the best way to do it. From another point of view. A could be thought of as an array. an object different from an Array Collection. Likewise, B could be thought of as another array. C then would be an

Re: [flexcoders] Re: Flex 4 CSS

2011-08-25 Thread Alex Harui
FlexExamples.com might have some examples. Flex 4 is pretty different especially around skinning and styles. It was deemed the right thing to do to enable designers to control every pixel without having to learn code. There are plenty of folks on this forum who are willing to help. On

Re: [flexcoders] Adding up Arraycollections to Datagrid!

2011-08-25 Thread Claudio M. E. Bastos Iorio
Hi, you need a hashtable or a dictionary On Aug 25, 2011 7:47 PM, Venkat M venkat_...@yahoo.com wrote: Hi Group, I have a basic question on arraycollections. Please assist. I have an array collection A populated with values {1,2,3,4,5,6,7,8,9,10} Also I have an arraycollection B populated

Re:[flexcoders] Re: remoting problem

2011-08-25 Thread j2me_soul
I try to use strongly type to cast my varaible. But I don't have this type of the varaible in the top application. I use them in the itemrenderer. eztDoctor = data as EztDoctor; if( eztDoctor != null ){// here is always null docName = eztDoctor.DName; price =

Re: [flexcoders] Adding up Arraycollections to Datagrid!

2011-08-25 Thread Venkat M
Hi Alex, So I understand that bind array collection A to the data grid as data provider.  and then bind array collection B to the label function of DatagridColoum. I tried out its not working. Please Assist!   Best Regards, Venkat Maddali.     From: Alex

Re: [flexcoders] Adding up Arraycollections to Datagrid!

2011-08-25 Thread Venkat M
Hi Bill, I understood that make array collection A as an array ( I will just use to array(), and it will be done). Similarly I will do for array collection B. But how to add them in a pair order in to array collection C. Please Assist! Would be great if u have an example or a pseudo snippet!!