[flexcoders] Bar chart horizontal date-time axis

2008-02-09 Thread hworke
Hi, I am trying to create a bar chart which has a horizontal date-time axis. Each bar will have two dates and the length of the bar will indicate the duration of an item in terms of days. BTW the vertical axis of the graph is a category axis. Any suggestions... Regards

Re: [flexcoders] GOLD color for a bad chart

2008-02-09 Thread Vivian Richard
Thanks for the link. I guess in this page they are just using one yellow color which is closest to gold color. I have seen Ely's code where he used color combination which is more close to gold color. Here is the link: http://demo.quietlyscheming.com/ChartSampler/app

RE: [flexcoders] Re: PopUp Containers and Scrolling Issues

2008-02-09 Thread Alex Harui
Try adding minHeight=0 to the HBox as well. Think of minHeight=0 as "you can be smaller than your measured height". This propagates down from the top so the TitleWindow will ask the HBox for its measuredHeight which will include the tallest VBox, so the HBox needs to allow itself to be shrunk be

Re: [flexcoders] GOLD color for a bad chart

2008-02-09 Thread Sherif Abdou
look all the way down, it might help http://en.wikipedia.org/wiki/Gold_(color) - Original Message From: hworke <[EMAIL PROTECTED]> To: flexcoders@yahoogroups.com Sent: Saturday, February 9, 2008 11:18:28 PM Subject: [flexcoders] GOLD color for a bad chart Hi, I am not a color speciali

[flexcoders] GOLD color for a bad chart

2008-02-09 Thread hworke
Hi, I am not a color specialist but trying to make the bars of my barchart look like GOLD bars, just metallic gold color. Which color combination do I need for that? Please suggest. Best regards...

RE: [flexcoders] Re: Not getting runtime errors

2008-02-09 Thread Alex Harui
Make sure you have a debugger player installed From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of tomeuchre Sent: Saturday, February 09, 2008 4:56 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: Not getting runtime errors --

RE: [flexcoders] Bug when extending in Flex a component created in Flash CS3 ??

2008-02-09 Thread Alex Harui
Try public dynamic class TestExtended extends Test From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of João Sent: Saturday, February 09, 2008 8:30 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Bug when extending in Flex a com

RE: [flexcoders] DataGrid limit on amount of records or data?

2008-02-09 Thread Merrill, Jason
As a side note, taking a step back, why would you want to present that many records at a time to the user? It seems anything above a few hundred is overly cumbersome to wade through, and should perhaps instead be filtered further. No? Jason Merrill Bank of America GT&O L&LD Solutions Design

[flexcoders] How to implement the ItemRenderer container?

2008-02-09 Thread Manuel Saint-Victor
Good morning flexcoders. I'm trying to figure out how I would create a subclass of the Canvas component that would be able to contain itemrenderers. Can someone please direct me to a tutorial or resource about what requirements the container must meet to be able to do this? Thanks, Mani

RE: [flexcoders] Browser Sensitive Editable DataGrid

2008-02-09 Thread Alex Harui
Please use a debug build so we get line numbers in the stack trace, then post the stack trace. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Jon Harris Sent: Saturday, February 09, 2008 10:20 AM To: flexcoders@yahoogroups.com Subject:

RE: [flexcoders] autoscroll base on control with focus

2008-02-09 Thread Alex Harui
Watch for "focusIn" on the canvas. Any child that gets focus will bubble that to the canvas and then you can find its position and scroll to it From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of dbronk Sent: Saturday, February 09, 2008 8:0

RE: [flexcoders] DataGrid limit on amount of records or data?

2008-02-09 Thread Alex Harui
The only limit should be the amount of memory, not some number. What problem did you see when you got above 5000? From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Luke Vanderfluit Sent: Saturday, February 09, 2008 4:36 PM To: flexcoders@

[flexcoders] autoscroll base on control with focus

2008-02-09 Thread dbronk
I have an input page where the inputs go off the bottom of the canvas causing a vertical scroll bar. How can I auto scroll so that which ever control has focus is in the viewable area? Thanks, Dale

Re: [flexcoders] Re: Getting values from a tileList to appear on a popup

2008-02-09 Thread Sherif Abdou
All Right so here is what you need to do http://www.adobe.com/2006/mxml"; layout="vertical" width="900" height="900"> 10 Cane Rum White the description assets/ pictures/ 10cane_rum. png 1 itemClick="showPopUp();" /> http://www.adobe.com/2006/mxml"; creationComplete= "popUpCente

[flexcoders] Re: Getting values from a tileList to appear on a popup

2008-02-09 Thread Ben Dover
My xml file looks like this: 10 Cane Rum White the description assets/pictures/10cane_rum.png 1 Basically, i have a lot of tags with all their relevant information stored in the same manner, and the image appears on the tileList, so when I click

Re: [flexcoders] DataGrid limit on amount of records or data?

2008-02-09 Thread Sherif Abdou
I think that is a the limit for the flash player, i remb someone made a post a while back on the same thing. Alot of people just said to do a paged since there is no way someone is going to look at 5000 or 10 records. So maybe load up 1000 then page the DataGrid. - Original Message ---

[flexcoders] DataGrid limit on amount of records or data?

2008-02-09 Thread Luke Vanderfluit
Hi. Im using flex with a hibernate backend. I have tables in a db that Id like to show using Datagrid. I have done tests and found that there is a limit to the number of records shown in the datagrid. Is this a limitation of the datagrid? How do I get around this? I currently am able to show ar

[flexcoders] FB watch expression for a singleton object

2008-02-09 Thread Mike Chabot
In FB3 debug mode I want to be able to observe the value of my singleton object at any time. However, if I write "ModelLocator.getInstance()" as a watch expression I get the error of "No such variable: ModelLocator," which is true since this is not a local variable to the page, unless my breakpoint

[flexcoders] cairngorm generator

2008-02-09 Thread markflex2007
Hi, I try one online but it hard to use. Do you know which one is easy to use? the tool only create site structure. Thanks Mark

[flexcoders] Browser Sensitive Editable DataGrid

2008-02-09 Thread Jon Harris
This is my own response to my sourpuss missive re mx:DataGrid and it erupting in a RTE on a simple "hold down the tab key stress test" My app WORKS* in MSIE 6.z (that is, no RTE dialog) The same URL fails in Mozilla Firefox 2.0.0.12 and Opera 9.25 - pretty much identically. I

[flexcoders] Re: mx:Image memory leak

2008-02-09 Thread Damien Legros
Thanks for your replies :) After doing some investigations and tests, i arrive to these results: Test: Browsing 10 pictures (+/- 400Kb/pic) With flex 3: - System.totalMemory = 20Mb - Task manager (IE7) = Stabilized around 94Mb With flex 2.0.1: - System.totalM

Re: [flexcoders] Getting values from a tileList to appear on a popup

2008-02-09 Thread Sherif Abdou
what does ur xml look like - Original Message From: Ben Dover <[EMAIL PROTECTED]> To: flexcoders@yahoogroups.com Sent: Saturday, February 9, 2008 12:50:56 AM Subject: [flexcoders] Getting values from a tileList to appear on a popup Hello, I'm very new to flex, and I'm trying to develop

[flexcoders] where to set Styles

2008-02-09 Thread Sherif Abdou
Best practices is it done in the createChildren or doing it here is fine to set the styles of custom buttons etc..? /** * * Set the Style of the Button and Indicator here */ override public function styleChanged(styleProp:String):void{ super.styleChanged(styleProp); if(closeButton && !closeButto

RE: [flexcoders] Changing defaultButton programatically

2008-02-09 Thread Carl Vorster
Yes, this is it, perfect. Thanks guys !!! _ From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Sherif Abdou Sent: Saturday, February 09, 2008 7:38 PM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] Changing defaultButton programatically you mean li

RE: [flexcoders] Changing defaultButton programatically

2008-02-09 Thread Dealy, Brian
sheriff: my answer overlooked the obvious simple answer you mentioned below: the defaultbutton is available for the application control without having to reference an id as would be needed in other containers. it's still early here in California! regards. Brian From: [EMAIL PR

Re: [flexcoders] Changing defaultButton programatically

2008-02-09 Thread Sherif Abdou
you mean like this or am i misunderstanding something private function swapFunc():void { defaultButton=button2; } - Original Message From: Carl Vorster <[EMAIL PROTECTED]> To: flexcoders@yahoogroups.com Sent: Saturday, February 9, 2008 11:26:56 AM Subject: RE: [flexcoders] Changing def

RE: [flexcoders] Changing defaultButton programatically

2008-02-09 Thread Carl Vorster
Hi, Maybe I'm not explaining properly. Here's some code; I've got three buttons in the code. With creation the default button is set to button1; so when I press enter, button1's function is being called. What I want to do is press the swap button and then change the default button from but

Re: [flexcoders] Changing defaultButton programatically

2008-02-09 Thread Sherif Abdou
you can make that button invisible and the other visibile, have diffrent skins. - Original Message From: Carl Vorster <[EMAIL PROTECTED]> To: flexcoders@yahoogroups.com Sent: Saturday, February 9, 2008 9:26:24 AM Subject: [flexcoders] Changing defaultButton programatically Hi, I’ve go

[flexcoders] Re: Remote Object Security

2008-02-09 Thread barry.beattie
"you can create a persistent instance of a remote object, set credentials on it after the user successfully logs in, and then continue to use it without fear of any session timeout" ah ha! sounds great. thanks Jeff ... you wouldn't happened to have blogged this at all, by chance?

RE: [flexcoders] Re: issues with multiple module and HTTPService

2008-02-09 Thread Seth Hodgson
I haven't worked with modules directly. It looks like you'll want to get modules using the manager but then add listeners to the returned IModuleInfo handles to wait for them to actually load and be properly inited before attempting to use them. You could probably chain your calls to getModule() in

[flexcoders] Bug when extending in Flex a component created in Flash CS3 ??

2008-02-09 Thread João
After some hours fighting, I've tried to create the simplest test case to solve one problem I was having with a component created in Flash CS3 and exported to Flex. I have created in Flash CS3 a very simple component: - One MovieClip "Test" (without code or graphics) - Inside that MovieClip, anot

[flexcoders] [TextInput] Select the entire line of text by triple-clicking

2008-02-09 Thread Cédric DELTHEIL
Hi, Does anyone has an elegant solution to make a TextInput emulates the behavior "triple click to select the whole line" ? Thanks, Cédric

[flexcoders] Getting values from a tileList to appear on a popup

2008-02-09 Thread Ben Dover
Hello, I'm very new to flex, and I'm trying to develop an application that acts lik an online store. In my program I am laying out my items using tileList, and what I want it to do is that when I click each object in the tileList, I want a pop up window to show up with information about the produc

[flexcoders] Changing defaultButton programatically

2008-02-09 Thread Carl Vorster
Hi, I've got a Panel with a default button, but would like to change the default button to another button when a certain event occurs. Can someone point me in the right direction to do this? Thanks in advance Carl

[flexcoders] Re: Binding to an overridden property

2008-02-09 Thread reflexactions
data already dispatches a DataChange event and is declared bindable. --- In flexcoders@yahoogroups.com, Sherif Abdou <[EMAIL PROTECTED]> wrote: > > try dispatching an event in the setter and binding that event in the getter > > > - Original Message > From: reflexactions <[EMAIL PROTECT

[flexcoders] Re: issues with multiple module and HTTPService

2008-02-09 Thread ezderman
Thanks Seth, It looks like the problem is loading them concurrently. When I am loading them with Timer class 2 secs apart it behave fine. The way I am loading my module is by loading the module instance once with the ModuleManager and then getting its factory like that: moduleEvent.module.factory.c

Re: [flexcoders] Binding to an overridden property

2008-02-09 Thread Sherif Abdou
try dispatching an event in the setter and binding that event in the getter - Original Message From: reflexactions <[EMAIL PROTECTED]> To: flexcoders@yahoogroups.com Sent: Saturday, February 9, 2008 8:24:33 AM Subject: [flexcoders] Binding to an overridden property I am trying to bind a

[flexcoders] Binding to an overridden property

2008-02-09 Thread reflexactions
I am trying to bind a TextArea.text property to the data property in an panel. This works fine until I overrode the getter of panel data property, even with a simple override that does nothing but return super.data the binding seems to stop working. Once overriden if I set data although it upd

[flexcoders] Re: Not getting runtime errors

2008-02-09 Thread tomeuchre
--- In flexcoders@yahoogroups.com, "Larry Mahar" <[EMAIL PROTECTED]> wrote: > > I have been using Flex for 6 months and suddenly this week I am no > longer getting runtime errors which is making it very dificult to > debug. Does anyone know what would cause runtime errors to be disabled? > Yes.

Re: [flexcoders] Flex Component Kit (ContainerMovieClip scaling)

2008-02-09 Thread Carlos Rovira
Hi, You can see an example of how to solve this in the following url: http://www.madeinflex.com/2007/10/21/using-flash-and-flex-together/ In concrete, the example is this: http://www.madeinflex.com/files/zip/max2007/wfl3_FlexComponentKit.zip Hope this solve your problem. Best, Carlos Rovira.

[flexcoders] Flex Component Kit (ContainerMovieClip scaling)

2008-02-09 Thread dkhvost
Hi All, I have tried everything that I can think of with no luck. When ever I scale my ContainerMovieClip the content also scales by changin the scaleX and ScaleY. How can I make it so that The size of the ContainerMovieClip only affects the width and height of the content. Dennis

[flexcoders] Flex Component Kit (ContainerMovieClip scaling)

2008-02-09 Thread dkhvost
Hi All, I have tried everything that I can think of with no luck. When ever I scale my ContainerMovieClip the content also scales by changin the scaleX and ScaleY. How can I make it so that The size of the ContainerMovieClip only affects the width and height of the content. Dennis

[flexcoders] Printing Receipts

2008-02-09 Thread Fidel Viegas
Hello folks, I am wondering if any of you has had any experience printing to a Receipt Printer. I have an Epson TM-U220 LPT printer, and I want to send the data to the printer. Does anyone have any idea or an example that does this? Thanks in advance, Fidel.

Re: [flexcoders] Upload with parameters

2008-02-09 Thread Fidel Viegas
Hi guys, It seems to be working, but only with GET parameters. The POST parameters never show up. I was wondering if it wasn't working because of the frame rate. I am using the default frame rate generated. Does the frame rate afect the transfer of the files? Thanks in advance, Fidel.