[flexcoders] Re: Flex to Air comminication via LocalConnection - Error #2044

2009-04-05 Thread ericbichara
Wow that worked like a charm, thanks mate /Eric

[flexcoders] Flex to Air comminication via LocalConnection - Error #2044

2009-04-03 Thread ericbichara
Hej Guy and Gals, I need some help getting localConnection to work. I have a Flex app running in the browser and an air app running on my desktop. Im trying to call a method on the air app from the flex app. I keep getting the dratted Error #2044: Unhandled StatusEvent:. level=error, code=

[flexcoders] SWFLoader problems (Loading flex swf into flex application)

2009-02-02 Thread ericbichara
Hi, I have build several flex widgets and am now developing an admin website also in flex into which i will load and edit the widgets. I am coming across several issues when doing this: 1) CSS styles clash. The parent application inherits some of the child's styles and the child inherits some of

[flexcoders] Loading swf with flashvars into Flex

2008-12-08 Thread ericbichara
Hi, I have several widgets which use flashvars and i wanted to create a gallery application to showcase them in flex. I need to therefore load them into flex and pass flashvars parameters into the loaded swfs. I tryed the following: mx:SWFLoader

[flexcoders] Re: Loading swf with flashvars into Flex

2008-12-08 Thread ericbichara
PROTECTED] wrote: - Original Message - From: ericbichara [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Monday, December 08, 2008 12:25 PM Subject: [flexcoders] Loading swf with flashvars into Flex Hi, I have several widgets which use flashvars and i wanted

[flexcoders] Re: Loading swf with flashvars into Flex

2008-12-08 Thread ericbichara
PROTECTED] wrote: If you read Paul's link you will see that are other ways to read parameters than urlvars. As you do not have access to url vars when loading inside another swf use the technique described in the post... On Mon, Dec 8, 2008 at 4:28 PM, ericbichara [EMAIL PROTECTED] wrote

[flexcoders] Re: Persisting Datagrid sort order through dataprovider changes

2008-11-17 Thread ericbichara
: Call refresh() on the collection after assigning the new result data. Tracy From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of ericbichara Sent: Monday, November 10, 2008 7:34 AM To: flexcoders@yahoogroups.com Subject

[flexcoders] Persisting Datagrid sort order through dataprovider changes

2008-11-10 Thread ericbichara
Hi, I have a datagrid which is populated by data i recieve from a RemoteObject. If a user sorts the datagrid a perticular way and then updates the data, the sorting gets reset to the order of the data recieve from the RemoteObject. Is there any way persist the sorting even when updating the

[flexcoders] Setting custom tooltip position

2008-11-10 Thread ericbichara
Hi, I have a treemap component () and a datagrid displaying the same data. http://joshblog.net/2006/12/25/flex-treemap-subversion-download/ I want a custom tool tip to be shown on top of a treemap component when i mouse over the corresponsing item in the datagrid. I have managed to create the

[flexcoders] Problem using dataTipRenderer with dataTipItems

2008-10-28 Thread ericbichara
Hi, Im trying to copy the functionality of the following chart: http://www.nytimes.com/packages/khtml/2006/04/02/business/20060402_SECTOR_GRAPHIC.html I have a datagrid which displays the same data as the bubble chart and when i rollover a row in the datagrid, the corresponting chart item's

[flexcoders] Re: Does Flex offer personalized configuration on the UI end?

2008-07-18 Thread ericbichara
Hi Ryan, You would probably need to save these settings in a database to be retrived apon starting the application. Alternatively in a sharedObject, but then these settings will only be available on that perticular computer. --- In flexcoders@yahoogroups.com, R H. [EMAIL PROTECTED] wrote:

[flexcoders] Re: File Uploading

2008-07-17 Thread ericbichara
I believe im very very close. I created and registered a new servlet on the tomcat server which gets called when i call fileRef.upload, heres the serlet code: package tutorial; import java.io.File; import java.io.IOException; import java.util.Iterator; import java.util.List; import

[flexcoders] Re: File Uploading

2008-07-17 Thread ericbichara
O btw, i get no error message, just a Complete event back in flex /Eric

[flexcoders] Re: File Uploading

2008-07-16 Thread ericbichara
Im in the same boat as you my friend, would really appreaciate it if someone could lets us know how to do this, Thanks again. /Eric --- In flexcoders@yahoogroups.com, Pravin Uttarwar [EMAIL PROTECTED] wrote: Hi All, I have requirement in my project of uploading the image file only. This

[flexcoders] Re: File Uploading

2008-07-16 Thread ericbichara
, so there is nothing more to it. Hope that makes sense, if not I can post a quick example. Dimitrios Gianninas RIA Developer and Team Lead Optimal Payments Inc. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of ericbichara

[flexcoders] Looping through datagrid rows

2008-06-12 Thread ericbichara
Hi All, I have a datagrid being populated by an arraycollection. The data grid has 3 columns, 2 populated by values in the arraycollection and one with a combobox as an itemrenderer which is not in the dataprovider. How do look through the entire grid getting the combobox value which the user has

[flexcoders] Re: Cazirngorn and AMFPHP1.9 HELP

2008-01-29 Thread ericbichara
Hej, try substituting the following lines var token : AsyncToken = service.sendAll(); token.addResponder(responder); with var token:Object = service.sendAll(); call.addResponder(responder); also check that your php file and class are called sendServices --- In flexcoders@yahoogroups.com,

[flexcoders] Re: Problem sending swedish characters from flex to php (amfphp)

2008-01-28 Thread ericbichara
. - Original Message From: ericbichara [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Monday, 28 January, 2008 9:04:49 PM Subject: [flexcoders] Re: Problem sending swedish characters from flex to php (amfphp) Thanks for the replies, I

[flexcoders] Re: Problem sending swedish characters from flex to php (amfphp)

2008-01-28 Thread ericbichara
, ISO-8859-1, ISO-8859-1); any other ideas? :-) Thanks again /Eric --- In flexcoders@yahoogroups.com, Max Frigge [EMAIL PROTECTED] wrote: Hey, have you checked the charset settings in your gateway.php?? cheers, Max - Original Message From: ericbichara [EMAIL PROTECTED

[flexcoders] Problem sending swedish characters from flex to php (amfphp)

2008-01-27 Thread ericbichara
Hi all, Im having some problems sending special characters (swedish characters ä, ö, and å) from Flex to a Database through AMFPHP. When inserting these types of characters directly from php in the database, everything works fine. ie INSERT INTO TABLEX VALUES ('äää'); And fetching from

[flexcoders] create XML from adjacency model db

2008-01-06 Thread ericbichara
Hi everyone, I need your help! I have a database modeled after the adjacency list model, for example: Id Parent 1 null 2 1 3 1 4 2 5 3 6 5 and i need to be able to feed this hierarchy to a Tree component in flex. I am running a mySQL database and using php

[flexcoders] Re: create XML from adjacency model db

2008-01-06 Thread ericbichara
you'll have a feel for which is the best place for your app. If it is 4, then please re-state your question and I'll have another read. Simon --- In flexcoders@yahoogroups.com, ericbichara ericbichara@ wrote: Hi everyone, I need your help! I have a database modeled after the adjacency list

[flexcoders] double refresh when transitioning between viewStack states using showEffect

2007-03-18 Thread ericbichara
Hi All, Im having a small issue when changing between viewStack states and using the showEffect, here is some sample code ?xml version=1.0 encoding=utf-8? mx:Application xmlns:mx=http://www.adobe.com/2006/mxml; layout=horizontal mx:ApplicationControlBar width=100% height=30 dock=true

[flexcoders] Re: Cairngorm 2.1 AMFPHP 1.9

2007-01-31 Thread ericbichara
Hi, your config script looks fine to me, give us an example of your service.mxlm file, maybe youre calling the service inccorectly? Here is an example of mine: ?xml version=1.0 encoding=utf-8? cairngorm:ServiceLocator xmlns:mx=http://www.adobe.com/2006/mxml;

[flexcoders] Loading Mouse Icon?

2006-08-20 Thread ericbichara
hi everyone, Im using flex with amfphp and was wondering how to get the loading mouse icon (round swirly one) to show up while data is being fetched from the database. is there a way to turn it on and off? Thanks in advance -- Flexcoders Mailing List FAQ: