Re: [flexcoders] SQL Server and Flex 2

2006-10-03 Thread Clint Modien
SqlServer -> .NET -> WebOrb -> Flex     On 10/3/06, Joe <[EMAIL PROTECTED]> wrote: Okay, I'm pretty new to the Flex scene and am very impressed with thedevelopment so far. My company is wanting to start developing adatabase application using an Ajax technology and realize I'm a little behin

RE: [flexcoders] Problem with Session Java/Flex

2006-10-03 Thread Dimitrios Gianninas
Hi, What you need to do is to keep track of the language selection once it is done in your Flex app, if I understand correctly. So a simple example that I can give you is that you will have a global variable that will hold this language selection, like so: var language:String;

RE: [flexcoders] SQL Server and Flex 2

2006-10-03 Thread Dimitrios Gianninas
Hi, To answer your last question, Flex doesn't run on IIS. You will need to either purchase a Java web server or use of the open-source ones (JBoss, Tomcat, etc...). Thats where you will deploy your Flex app and then it can talk to your Web Services or load ASP pages running on IIS. See the po

RE: [flexcoders] SQL Server and Flex 2

2006-10-03 Thread Tracy Spratt
But unless you need FDS(Flex Data Services) you do not need a J2EE server. Also consider using FOR XML [raw, auto, explicit] with XML over HTTPService to talk to Flex. Tracy -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Dimitrios Gianninas Sen

[flexcoders] Re: RemoteObject result as dataprovider for mx:List

2006-10-03 Thread Justin
--- In flexcoders@yahoogroups.com, "bulldog65mustang" <[EMAIL PROTECTED]> wrote: > > I am calling a cfc that return a query. How do I set the result to a > mx:List dataProvider? I have tried a couple different thing, but can > only get [Object Object] to display for each item in the list. > In

[flexcoders] Re: Architecting a large, modular Flex application

2006-10-03 Thread Russell Munro
Hi Even, Your response seem to be the way forward for this problem. Can I trouble you expand on your writing here? To add some more detail about how to complete what you have decribed here? I understand the concepts involved and how to create SWC files, but I am still quite lost on the practicalli

[flexcoders] Re: SQL Server and Flex 2

2006-10-03 Thread Tim Hoff
Tracy or anyone, Not to change the subject; just extend it a bit. Have you noticed a significant performance gain using HTTP over webservices? My testing is purly local at this time. So, I'm interested what others have experienced in a production environment. -TH --- In flexcoders@yahoogro

Re: [flexcoders] Re: SQL Server and Flex 2

2006-10-03 Thread Igor Costa
Hi JoeSo, my 2 cents on concern in the points passed throw my friends at listworking with DB and Flex it's the same way we use in Flash, but otherwise, Flex can inprove for a big lep ahead that doesn't really matter what should you could use or not. Flex it's works perfectly with both famous dat

[flexcoders] That works, now the next enhancement - Tabbing to next control

2006-10-03 Thread boy_trike
This is starting to make some sense, now when my processTime function finishes, it would be NICE if it could automatically TAB to the next field. Is there a way to do that in my TimeText Component? Thanks Bruce -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/file

Re: [flexcoders] Re: Architecting a large, modular Flex application

2006-10-03 Thread Igor Costa
For just point, MAX 2006 will also has an session talking about his thread topic.For more adition, you could also develop large number of software and re-usable code for nexts, simple using like.CVS server - belive me, it's very useful not for team development but for better organization MVC arq

Re: [flexcoders] Re: can NOT call method in component - Important MXML Lesson

2006-10-03 Thread Igor Costa
Could not figure out what problem do you really has.regards.On 10/3/06, Gordon Smith <[EMAIL PROTECTED] > wrote: I haven't been following this thread, but if you find yourself putting the same 'change' handler on each instance of your TimeText componen

Re: [flexcoders] How to lock columns

2006-10-03 Thread Igor Costa
You want lock preventing to be draggle or to be resizeble?To draggble you also use dragEnable = false and for resizeable you should use, resizeable=false also to minWindth and maxWidthRegards. On 10/3/06, jlentz2112 <[EMAIL PROTECTED]> wrote: Hi, I see in the

Re: [flexcoders] Reverse Geocoding

2006-10-03 Thread Igor Costa
John good link I've added here to favorites.Really good to point this one, and really sure that it's good for GPS locations. maps for flash lite for example.thanks man On 10/3/06, John Kirby <[EMAIL PROTECTED]> wrote: I did find this for free: http://geoco

Re: [flexcoders] RemoteObject result as dataprovider for mx:List

2006-10-03 Thread Igor Costa
Hi DubbyResult format as default it's Object as the other member pointed you to labelField you can set via AS3 or just in MXML the last result format for that.For example if you are retrive to XML you just put labelField="data.item"for each item you get response.for using an Array collection you

Re: [flexcoders] Looking for drag and drop examples

2006-10-03 Thread Igor Costa
http://weblogs.macromedia.com/mxna/index.cfm?query=bySmartCategory&smartCategoryId=5&smartCategoryName=Flex&smartCategoryKey=D0399B4B-9A76-7F68-06E1F26F3451C3AE Has a lot of samplesOn 10/3/06, jack_freud <[EMAIL PROTECTED]> wrote: Hi, I wonder if anyone has got

Re: [flexcoders] does the CFC/AS namespace path have to match?

2006-10-03 Thread Igor Costa
Not sure about you are asking for.On 10/3/06, Brendan Meutzner <[EMAIL PROTECTED]> wrote: Hi,It seems that even when I type my cffunction argument inside my CFC, it looks for the object definition in the same location the AS object is placed... but they're not

RE: [flexcoders] preloader bar becomes stuck at times

2006-10-03 Thread Matt Chotin
Can you expose the SWF on your web server so we can try loading it ourselves?   From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Dan Rossi Sent: Tuesday, October 03, 2006 8:00 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] preloader ba

Re: [flexcoders] Drag n Drop between 2 Datagrids

2006-10-03 Thread Igor Costa
Yeah man it's simple wayhere you could also do.just create two datagrids than, using the property in the first one, dragEnabled=true and in the second one you could do, dropEnabled=trueThan worked. here a short examplehttp://www.adobe.com/2006/mxml" layout="absolute">                           

RE: [flexcoders] Flex Deployment problem.

2006-10-03 Thread Matt Chotin
You may need to have a lot of the Flex files duplicated into the other webapp.  In order for the remote calls to work with classes defined in your main WAR the FDS stuff will have to be running in that WAR.  The MXML/AS could still live in a separate WAR, but you’ll basically need to ha

RE: [flexcoders] Re: plug-in detection not working for IE

2006-10-03 Thread Matt Chotin
Well, they’re different Players.  IE uses an ActiveX control and Firefox uses a Plugin that complies with the Netscape Plugin API.  So it would make sense that the IE Player didn’t fully install correctly and therefore reports its version wrong.   Matt   From: flexcoders@yah

Re: [flexcoders] Absolute Sizing

2006-10-03 Thread Igor Costa
Doing that you could also interpretate like thatmx.core.Application.application.percentWidth and mx.core.Application.application.percentHeight.So here we go.Regards. On 10/2/06, David Buitenveld <[EMAIL PROTECTED]> wrote: Hi all - Does anyone know a strategy f

Re: [flexcoders] DateChooser and it's dateGrid

2006-10-03 Thread Igor Costa
Just you have to add a itemRender for each future date for it.Just really need that no more extending or Extra work for that.regards.On 10/3/06, Bas J. Brey <[EMAIL PROTECTED]> wrote: I'm trying to highlight a selection of one or more days in the dateC

RE: [flexcoders] WSDL 2 ActionScript classes?

2006-10-03 Thread Matt Chotin
There isn’t something like that yet.  It’s something we’re investigating for a future release.   Matt   From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Leo Sent: Tuesday, October 03, 2006 7:54 AM To: flexcoders@yahoogroups.com Subject: [flex

Re: [flexcoders] Re: Format a datatip.

2006-10-03 Thread Igor Costa
here a example friendprivate function toolTipReport(e:HitData):String{    var relatorioTip:String = "";        relatorioTip += "Questionamento: "+e.item.col_1+"";         relatorioTip += "Total da rede: "+ e.item.col_2 + "";        relatorioTip +="Valor: " + e.item.col_3+"";         relatorioTip

[flexcoders] does the CFC/AS namespace path have to match?

2006-10-03 Thread Bjorn Schultheiss
As far as i know CF cant handle AS functions as it has no way of processing the logic (dont quote me). I know that in Java all getters and setters are evaluated to primitive members.   In other words you can not pass a Function through remoting, i think :)   Regards,   Bjorn Schultheiss Se

[flexcoders] The pass the parameter or reference the component (which better?)

2006-10-03 Thread sinacapho
Dear all, i have some question about passing parameter. For example , i have a user data object which stored the information of the user. When i have some custom component which may use this object, which method is better? a) Pass it in the object (for example) b) Reference it in

[flexcoders] The pass the parameter or reference the component (which better?)

2006-10-03 Thread Bjorn Schultheiss
It seems that you first example is the considered best practice at the moment   create an explicit setter on your component and pass in the data object that way   Regards,   Bjorn Schultheiss   From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of sinacaphoSent: Wednes

<    1   2