Re: [flexcoders] Flex stress Testing

2010-03-01 Thread as sass
I'm really grateful to your answers, thanks  Mr. Tuli. --- On Sun, 2/28/10, Peeyush Tuli peeyus...@gmail.com wrote: From: Peeyush Tuli peeyus...@gmail.com Subject: Re: [flexcoders] Flex stress Testing To: flexcoders@yahoogroups.com Date: Sunday, February 28, 2010, 8:12 AM  

[flexcoders] Foreign interfaces

2010-03-01 Thread Christophe
Hello, Is it possible to make an interface with Japanese or Chinese Characters with Flex ? Thank you, Christophe,

[flexcoders] Re: Help: Checking to see if something is in an ArrayCollection

2010-03-01 Thread jaggedphx
Forgot to mention, there is a good tutorial on this topic here: http://jodieorourke.com/view.php?id=104blog=news Josh Grauer --- In flexcoders@yahoogroups.com, Wally Kolcz wko...@... wrote: I have seen this documented in the Flex Bible, but I cannot get it to work. I have a Singleton

[flexcoders] Re: Help: Checking to see if something is in an ArrayCollection

2010-03-01 Thread jaggedphx
Hi, I think that since your array collection contains objects instead of simple values that you need to change how you're using the sort and findAny methods. Try this: var sortField:SortField = new SortField(productID, true); And this: var found:Boolean = cursor.findAny( { product.productID

[flexcoders] Re: Using Flex Builder 3 With PHP and MYSQL

2010-03-01 Thread valdhor
I use WebORB. Check out http://www.themidnightcoders.com/products/weborb-for-php/overview.html --- In flexcoders@yahoogroups.com, James garymoorcroft_...@... wrote: Can anybody link me to any examples of using flex in conjunction with php and mysql? I need to display data stored in my mysql

[flexcoders] Flex Logging in a Web Application

2010-03-01 Thread as sass
Hi everyone,, i want to achieve to log a web flex application into a file. But i'm not able to success it. Anyone help me?

[flexcoders] Re: Using Flex Builder 3 With PHP and MYSQL

2010-03-01 Thread Amy
--- In flexcoders@yahoogroups.com, James garymoorcroft_...@... wrote: Can anybody link me to any examples of using flex in conjunction with php and mysql? I need to display data stored in my mysql table in my flex project within a tilelist. Does anyone know of any examples that allow

[flexcoders] Re: Using Flex Builder 3 With PHP and MYSQL

2010-03-01 Thread Amy
--- In flexcoders@yahoogroups.com, James garymoorcroft_...@... wrote: Can anybody link me to any examples of using flex in conjunction with php and mysql? I need to display data stored in my mysql table in my flex project within a tilelist. Does anyone know of any examples that allow

Re: [flexcoders] Repertory for confidentiality

2010-03-01 Thread Tom Chiverton
On Friday 26 Feb 2010, Christophe wrote: Where to store customers photos to keep confidentiality, Out of the web root. and how to call them in the Flex application to display ? Via a web service call that takes the photo ID and customer ID. This checks the one can access the other and

[flexcoders] Re: Using Flex Builder 3 With PHP and MYSQL

2010-03-01 Thread Gary Moorcroft
Cheers Amy and valdhor. I've found some other solutions since then but I'll check WebOrb and Amy's blog out.   Thanks friends.

[flexcoders] Does DataBinding to a function create a ChangeWatcher?

2010-03-01 Thread Christopher McArthur
I am doing some performance/memory cleanup in my rather large application and looking to reduce the number of eventListeners and changeWatchers I have and was curious about this: say I have some function function myFunc():String; that I data bind to an mx:Label's property

[flexcoders] Re: Flex stress Testing

2010-03-01 Thread Mete Atamel
LCDS 3.0 comes with a Java based load-testing-tool that can be used to stress LCDS/BlazeDS servers. -Mete --- In flexcoders@yahoogroups.com, as sass apar...@... wrote: I'm really grateful to your answers, thanks  Mr. Tuli. --- On Sun, 2/28/10, Peeyush Tuli peeyus...@... wrote: From:

[flexcoders] Re: Flex with Google Checkout

2010-03-01 Thread valdhor
From one extreme to the other... http://lce-com.com/ http://www.flashcomponents.net/component/simple_shopper_2.0.html --- In flexcoders@yahoogroups.com, Wally Kolcz wko...@... wrote: Anyone know of a true example/tutorial (or inexpensive component) that allows a flex app to work with Google

[flexcoders] Re: Flex Logging in a Web Application

2010-03-01 Thread valdhor
In my case, I have created a logging class in Flex that sends the log data to a back end PHP server. The PHP, in turn, writes all the data to a MySQL database. I'd post the code but I'm afraid I cannot as it is proprietory to my company. I will say that it is pretty trivial to do. --- In

[flexcoders] A loading progress bar with a WindowedApplication?

2010-03-01 Thread Christopher McArthur
My AIR application is a standalone WindowedApplication. On startup, it does not have a loading bar. Looking thorugh many flex articles and example I see a lot of talk of the startup loading bar that works automatically with Flex, however all of these are about web applications. Does the

[flexcoders] implementing SSO with a Flex app hosted on Salesforce.com

2010-03-01 Thread DustinB
O' Mighty Flexcoders- I am trying to figure out how I can implement Single Sign On with my Flex app hosted on Salesforce. This Flex apps Salesforce impl wont have the user accounts in the system, and so I need to authenticate against my companies SSO. If the user is returned a valid token, I

[flexcoders] Context Menu

2010-03-01 Thread Angelo Anolin
Hi FlexCoders, Has anyone implemented a right mouse click context menu which contains sub-menu items?  I have been able to create a datagrid control with right mouse menu and the context menu I have defined appears, but I have no idea on how to implement one which contains sub-menu. Any

[flexcoders] Re: Does DataBinding to a function create a ChangeWatcher?

2010-03-01 Thread tntomek
Hi Chris, Check this vid out: http://tv.adobe.com/watch/360flex-conference/diving-in-the-data-binding-waters-by-michael-labriola/ --- In flexcoders@yahoogroups.com, Christopher McArthur cmcart...@... wrote: I am doing some performance/memory cleanup in my rather large application and looking

Re: [flexcoders] A loading progress bar with a WindowedApplication?

2010-03-01 Thread Alex Harui
WindowedApplication’s default behavior is to hide itself until the app is completely ready. If you want to see a progressbar, add the following to the WindowedApplication tag: preinitialize=visible=true On 3/1/10 9:18 AM, Christopher McArthur cmcart...@riotgames.com wrote: My AIR

[flexcoders] Google Maps Latitude and Longitude

2010-03-01 Thread s_hernandez01
Does anyone know how I would retrieve the latitude and longitude from a given address in google maps? I'm using something like this, but I need to split it up to have the latitude and longitude in separate labels: private function createMarker(point:LatLng):void { marker = new Marker(point,

RE: [flexcoders] A loading progress bar with a WindowedApplication?

2010-03-01 Thread Christopher McArthur
Hmm This throws an NPE in WindowedApplication's override setVisible because this._nativeWindow is null. (however this.nativeWindow is valid). Will try experimenting in a smaller test project. From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of Alex

[flexcoders] Bindings within a dynamically created container fail.

2010-03-01 Thread chefbrittison
I have a panel which is being created dynamically within a sidebar depending on the context of the main display area. When the panel is added to the display list, the bindings don't appear to fire correctly. In this case, I have a mx:List that is bound to an arraycollection that doesnt work.

[flexcoders] Having Trouble With Filtering Tilelist's/DataProviders

2010-03-01 Thread James
I've done some research on this and I think I'm getting there but I can't seem to get it working in my own app. I have two tilelists categoriesTilelist and productsTilelist populated by two array collections categoriesAC and productsAC which are populated from remote xml files. One of the

Re: [flexcoders] Having Trouble With Filtering Tilelist's/DataProviders

2010-03-01 Thread Peeyush Tuli
Missing a refresh call on productac after setting the filter function? On 3/2/10, James garymoorcroft_...@yahoo.co.uk wrote: I've done some research on this and I think I'm getting there but I can't seem to get it working in my own app. I have two tilelists categoriesTilelist and

[flexcoders] CHanges not taking effect

2010-03-01 Thread iloveyouwisconsin
Weird problem on Flex 4. I make changes and can see them in design view. I then run the app and the changes don't take effect. I've tried to do a Project-clean. I've also tried to search for updates. Does this happen to otehrs often?

Re: [flexcoders] Google Maps Latitude and Longitude

2010-03-01 Thread Paul Hastings
On 3/2/2010 5:46 AM, s_hernandez01 wrote: Does anyone know how I would retrieve the latitude and longitude from a given address in google maps? http://code.google.com/apis/maps/documentation/flash/reference.html#LatLng

Re: [flexcoders] A loading progress bar with a WindowedApplication?

2010-03-01 Thread Alex Harui
Which version and if Flex 4, which WindowedApplication (mx or spark). I proved it worked with Flex 4 mx:WindowedApplication before proposing that solution. On 3/1/10 3:26 PM, Christopher McArthur cmcart...@riotgames.com wrote: Hmm This throws an NPE in WindowedApplication's override