[flexcoders] Re: Capture custom component event in parent application (application.mxml)

2008-09-07 Thread sleblang
Yes. However, ultimately, I just wanted to see if there was a better/best practices method of doing it. Thanks. --- In flexcoders@yahoogroups.com, Sherif Abdou [EMAIL PROTECTED] wrote: isn't that what bubbling is for? dispatchEvent(new Event(myEvent,true));

[flexcoders] Using a different image for a slider (not thumb, but the slider itself)

2008-09-07 Thread Jo Morano
Hi! I want to use a slightly better looking image for the slider instead of the standard (I'm not talking about the thumb, though I'll be changing that too). I couldn't find any way to do it! I used setStyle(icon, this[mySliderIcon]) as I'd do for buttons, and I did see my image but I also saw

[flexcoders] Re: Using a different image for a slider (not thumb, but the slider itself)

2008-09-07 Thread Jo Morano
Well the icon actually becomes the thumb skin so that's why it was behaving the way it did. I still have the unanswered question though, how to replace the slider itself with a thicker shaded line (basically use my own png). On Sun, Sep 7, 2008 at 12:09 AM, Jo Morano [EMAIL PROTECTED] wrote:

[flexcoders] Tile + HBox Container

2008-09-07 Thread itdanny2002
I wanna to put many textarea component on to HBox container horizontally and go to next line if it is full. However, HBox can't auto wrapping like Tile. Any container work likes this ? If I need to write my own, where is the starting point ? If I use Tile, I need to make it not standard size If I

RE: [flexcoders] Flex CF Gateway Integration with CF 7.02 - What Am I Doing Wrong?

2008-09-07 Thread Battershall, Jeff
When examining CF8's jar files vs. CF 7.02's, CF8 has a jar file ccfgatewayadapter.jar. That's pretty darned obvious but what I'm not understanding is the docs I read seem to indicate that CF 7.02 DOES SUPPORT CF to Flex Gateway integration

[flexcoders] FB PHPEclipse - suggestions?

2008-09-07 Thread nwebb
Hi, I'm setting up a local development environment to play around with a Flash-Remoting project. I'm using Flex PHP, therefore I'm using the FlexBuilder plugin and the PHPEclipse plugin, both within a single Eclipse installation. My Eclipse workspace is set to be: C:\xampp\htdocs My php file

[flexcoders] Is there a live example which shows Flex can handle thousands of concurrent users?

2008-09-07 Thread R H.
Hello Folks, Would there be anyone who can point me to some live cases where they show Flex can handle thousands of concurrent users, such as on trading floors? Thanks Ryan

[flexcoders] Re: FB PHPEclipse - suggestions?

2008-09-07 Thread nwebb
To answer my own question - I solved it by using linked folders which allows me to create an Eclipse project which actually points to amfphp/services. On Sun, Sep 7, 2008 at 4:18 PM, nwebb [EMAIL PROTECTED] wrote: Hi, I'm setting up a local development environment to play around with a

Re: [flexcoders] Is there a live example which shows Flex can handle thousands of concurrent users?

2008-09-07 Thread Paul Andrews
Wouldn't it really depend on the backend technology used, not just Flex? Flex is predomiately a client side technology with various options for interacting with a back-end server, so applications using large numbers of clients will be dependent more on the server setup, not so much the client.

Re: [flexcoders] Is there a live example which shows Flex can handle thousands of concurrent users?

2008-09-07 Thread Richard Rodseth
Agreed. And it could be argued that by designing the server interaction properly you can impose less load on the server than a typical HTML app. The initial download of the SWF may be larger, but you don't have all those page refreshes. Plus you have the option of efficient binary communication

Re: [flexcoders] Is there a live example which shows Flex can handle thousands of concurrent users?

2008-09-07 Thread Mike Chabot
Yahoo! Finance uses Flex and they are the most visited financial site on the Web. Fidelity is a heavy user of Flex. The Flex AMF remoting protocol is one of the fastest ways of communicating between a client and a server and plenty of people have done tests to prove this. I agree with Paul that

[flexcoders] Re: Using a different image for a slider (not thumb, but the slider itself)

2008-09-07 Thread Tim Hoff
Hi Jo, The slider has two parts; the track and the thumb. You can skin either/both of those: HSlider { thumbDownSkin: Embed(source=assets/images/slider_thumb_over.png); thumbUpSkin: Embed(source=assets/images/slider_thumb_up.png); thumbOverSkin:

[flexcoders] Re: Tile + HBox Container

2008-09-07 Thread Tim Hoff
Sounds like a TileList; with a custom tile itemRenderer to me. -TH --- In flexcoders@yahoogroups.com, itdanny2002 [EMAIL PROTECTED] wrote: I wanna to put many textarea component on to HBox container horizontally and go to next line if it is full. However, HBox can't auto wrapping like

Re: [flexcoders] package structure for different programming languages

2008-09-07 Thread Douglas Knudsen
which I find interesting. Early days showed folks mixing the two, I did in fact on couple a projects. Perter Marin of Adobe even had a special plugin for eclipse that made it possible to mix the Flex and J2EE natures in one project. This is wrapped into FB 3 now. What was seen then is to have

[flexcoders] FlexBook - How to start with a Right page 1 + autmatic resizing image

2008-09-07 Thread oneproofdk
Hi. Using FlexBook to show publications on our Intranet, there are some things that bug me a little. (enough to try to fix 'em) 1. When I want to display a publication of lets say 16 pages, soft cover - I add a blank png as page 1 to make page 2 (the original page 1) appear as the front left

[flexcoders] Eh. How does this still work?!

2008-09-07 Thread nwebb
Hi, I skipped a step when setting up a flex-remoting (amfphp) project, but it still works. I didn't set up the Flex project to use PHP when I created it, and so didn't define the webroot or the root url at all. I added in the services-config file (see code at the bottom of this email) and I

Re: [flexcoders] Re: Using a different image for a slider (not thumb, but the slider itself)

2008-09-07 Thread Jo Morano
Thanks Tim Hoff and Josh Tynjala. That was it! On Sun, Sep 7, 2008 at 9:32 AM, Tim Hoff [EMAIL PROTECTED] wrote: Hi Jo, The slider has two parts; the track and the thumb. You can skin either/both of those: HSlider { thumbDownSkin:

[flexcoders] export chart to a pdf

2008-09-07 Thread yk96290
Hi, Is there a way to export a chart to a pdf from Flex? Thanks Young

Re: [flexcoders] export chart to a pdf

2008-09-07 Thread Sherif Abdou
http://code.google.com/p/apdf/ -- Sherif Abdou http://VadexFX.com http://Sherifabdou.com - Original Message - From: yk96290 To: flexcoders@yahoogroups.com Sent: Sunday, September 07, 2008 9:11 PM Subject: [flexcoders] export chart to a pdf Hi, Is there a way to

Re: [flexcoders] Eh. How does this still work?!

2008-09-07 Thread Igor Costa
Actually you did manually what flex builder does with php server-side enabled. The amfphp project in the console setup to you when you first-load the gateway to do that. When you just set -services and the uri for the services-config.xml file the .swf is metadated to that uri to open a gateway

[flexcoders] Signing Air application!?

2008-09-07 Thread guillaumeracine
Hi i built an application that i want to use but i don't know how to sign it ... it seems i must provide a valid certificate but i dont want to pay for it since its not a commercial app... Is there a workaround?

Re: [flexcoders] export chart to a pdf

2008-09-07 Thread Igor Costa
Young You should consider like add bitmap data for a open-source library like this http://code.google.com/p/apdf/, you will to create a method to take a snapshot of your chart, grap it into a Object and than send to the apdf constructor to add that image to the pdf document. Not hassles to do

Re: [flexcoders] Signing Air application!?

2008-09-07 Thread Igor Costa
Not necessery to work arround . Here's all you need http://www.adobe.com/devnet/air/articles/signing_air_applications_print.html Regards Igor Costa www.igorcosta.org On Mon, Sep 8, 2008 at 1:53 AM, guillaumeracine [EMAIL PROTECTED]wrote: Hi i built an application that i want to use but i

Re: [flexcoders] array collection retrieve one row from database cause error

2008-09-07 Thread Igor Costa
The coeration error it means you're trying to convert an objectProxy to ArrayCollection. You should convert to array frist and than set the new array created to the ArrayCollection source. -- Igor Costa www.igorcosta.org On Sat, Sep 6, 2008 at 2:26 PM, xiu_jewel [EMAIL PROTECTED] wrote: I

Re: [flexcoders] Changing Root Node attributes

2008-09-07 Thread Josh McDonald
Have you tried: [EMAIL PROTECTED] = 59; And it didn't work? -Josh On Mon, Sep 8, 2008 at 3:46 PM, Rafael Faria [EMAIL PROTECTED]wrote: Hello All, I need your help again. I make a call and get in return a XML. With this XML, i feed my tree's dataprovider. It is something like this: