[flexcoders] Chart font image quality

2009-07-28 Thread Jason Reynolds
Hi, I am trying to add some charts to a PDF using AlivePDF. Adding the image to the PDF looks horrible (very fuzzy font). I have tried using the ImageCapture with a high dpi, which looks alot better, but there are still a lot of 'artifacts' around the text in the chart labels. I also tried to

Re: [flexcoders] Flex Builder Does Not Compile Module

2008-09-29 Thread Jason Reynolds
In flexbuilder -- right click your project-click properties, go to 'Flex Modules' and add the module to the list. It should compile with the rest of the app now. Hope that is what you needed - Original Message - From: ilikeflex To: flexcoders@yahoogroups.com Sent:

Re: [flexcoders] Speeding up draw time with nested VBoxes

2008-09-24 Thread Jason Reynolds
Ya, I was joking about the grudge -- just some nice frustrated learning experience feelings! I don't know why but I've always had the impression that item renderers slowed down the list/datagrid display, so it's good to see people telling me I'm wrong. I'll do the custom renderer on my 2nd

[flexcoders] Speeding up draw time with nested VBoxes

2008-09-23 Thread Jason Reynolds
Hi, I have a component that extends VBox. I am making around 20 instances of this component. That component also contains a VBox, each of which contains 2-6 components. This takes a long time from creation to when I can see it on the screen -- around 3000ms. If I don't use a VBox in that 2nd

Re: [flexcoders] Speeding up draw time with nested VBoxes

2008-09-23 Thread Jason Reynolds
and a custom item renderer. Tracy -- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Jason Reynolds Sent: Tuesday, September 23, 2008 4:32 PM To: flexcoders@yahoogroups.com Subject

Re: [flexcoders] Speeding up draw time with nested VBoxes

2008-09-23 Thread Jason Reynolds
. Tracy -- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Jason Reynolds Sent: Tuesday, September 23, 2008 5:18 PM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] Speeding up

Re: [flexcoders] AMFPHP and date/datetime data from MySQL

2008-09-03 Thread Jason Reynolds
Adobe has some date parsing methods in the as3corelib library -- http://code.google.com/p/as3corelib/ I suppose it depends on the format your storing the date, the way I've been handling it is using as3 to parse the date string that AMF returns. Not sure if this is the best way, I'd be open to