[flexcoders] Re: trouble with custom 'Text Bubble' component (examples included)

2010-03-31 Thread G
anyone have any ideas? --- In flexcoders@yahoogroups.com, G gmonie...@... wrote: I'm trying to use a custom Text component to show a series of comments. I got the original idea from: http://www.eonflex.com/?p=40 I've got the base case working but I am stuck with 2 problems I cant seem

Re: [flexcoders] List Scrolling Width Issues

2010-03-31 Thread Carlos Rovira
Yesterday I was using a itemRenderer based on mx:Image and must to change to runtime BitmapImage like this one: http://polygeek.com/2452_flex_extending-spark-bitmapimage so I recomend you to go that way 2010/3/31 Alex Harui aha...@adobe.com If you search the archives, you’ll see that

[flexcoders] Amfphp and require_once

2010-03-31 Thread Christophe
Hello, When I use a foreign class in my Amfhp service part, with the line: require_once(myclass.php); Amfphp does not work anymore. I have the error message: Channel disconnected. What can I do? Thx, Christophe,

Re: [flexcoders] Amfphp and require_once

2010-03-31 Thread Oleg Sivokon
Either one of these: Required file cannot be found. Required file was found but contained errors. Try Charles HTTP proxy - it'll display what the response contained. It'll have some PHP generated error / warning text in the message - easier to diagnose the problem. Best. Oleg

[flexcoders] Flex 4 - How to refresh all rows of a spark List ?

2010-03-31 Thread Adnan Doric
Hello all, How to refresh all rows of a spark List please, there is no invalidateList() method anymore ? Thank you in advance, Adnan

[flexcoders] Re: Amfphp and require_once

2010-03-31 Thread valdhor
Also check the Apache error log. I always tail this file while testing. --- In flexcoders@yahoogroups.com, Oleg Sivokon olegsivo...@... wrote: Either one of these: Required file cannot be found. Required file was found but contained errors. Try Charles HTTP proxy - it'll display what the

Re: [flexcoders] Flex 4 - How to refresh all rows of a spark List ?

2010-03-31 Thread Alex Harui
You could try setting itemRenderer=null and then restoring it. On 3/31/10 8:04 AM, Adnan Doric astrona...@gmail.com wrote: Hello all, How to refresh all rows of a spark List please, there is no invalidateList() method anymore ? Thank you in advance, Adnan -- Alex Harui Flex SDK Team

[flexcoders] Plot chart problem

2010-03-31 Thread arutheunicorn
Ok, I know this is gonna sound really bad on me but I've learned Swiz, figured out how to simulate a Java-like Thread.wait() using a timer and check a object for data changes, I've even been able to get around Flex 4...But I am having a goose chase on where my tooltips are, I get blank tooltip

[flexcoders] Line Chart Legend problem

2010-03-31 Thread Monette
I was successful in customizing the datapoints in a line chart with multiple series. The background fill of the datapoint changed according to other values in the xml file. Now my legend which contained the circle color of each series is not displaying. Only the legend label shows up. What

[flexcoders] Flex4 Tile performance very slow?

2010-03-31 Thread Nigel Magnay
Hi We have a flex3 app, part of which has a dialog box from which the user can pick a particular graph-type component to add to their display. Internally, this is generated with an mx:Tile list, where the dynamic list of children is created then addChild()-ed to the tile. This seems fine - but

[flexcoders] Compare two datagrids

2010-03-31 Thread cvsikh
Hi, I am looking for a solution to compare data in two datagrids. The date fields are exactly the same. Any help on this will be greatly appreciated. If somehow, we can color code repeated data, that will be ideal.

[flexcoders] Re: ComboBox fullscreen issue

2010-03-31 Thread elder.mich...@rocketmail.com
Thanks for the response. Would this entail setting styles or the drodownWidth property, or would I need to modify the factory? Is it possible to force the direction the dropdown comes out of the ComboBox? --- In flexcoders@yahoogroups.com, Alex Harui aha...@... wrote: mx:ComboBox doesn't

[flexcoders] Re: Line Chart Legend problem

2010-03-31 Thread arutheunicorn
--- In flexcoders@yahoogroups.com, Monette monett...@... wrote: I was successful in customizing the datapoints in a line chart with multiple series. The background fill of the datapoint changed according to other values in the xml file. Now my legend which contained the circle color of

[flexcoders] Re: Plot chart problem

2010-03-31 Thread arutheunicorn
Figured it out, do call a custom componet from a module not an application... --- In flexcoders@yahoogroups.com, arutheunicorn arutheunic...@... wrote: Ok, I know this is gonna sound really bad on me but I've learned Swiz, figured out how to simulate a Java-like Thread.wait() using a timer and

Re: [flexcoders] Compare two datagrids

2010-03-31 Thread Mark Lapasa
Don't compare two datagrids. Compare two datasets. If you need thew view to display what's in common, then you can create your own Filter function and apply it to the underlying data sets. Any changes made to the data will be reflected in the view. On Wed, Mar 31, 2010 at 4:51 PM, cvsikh

[flexcoders] Allowing Jpgs saved Within Flex to be named by the user

2010-03-31 Thread James
My app allows a user to take a snapshot of a website and it then saves this snapshot as a jpg. However what I want is for the user to be able to name this jpg BEFORE it is saved eg if they type in yahooimage into a textinput component in my app (imagenameentry) and then click a button to create

Re: [flexcoders] Re: ComboBox fullscreen issue

2010-03-31 Thread Alex Harui
I’d probably replace the factory with a subclass of List that handles scaling. On 3/31/10 1:20 PM, elder.mich...@rocketmail.com michaer.sp...@gmail.com wrote: Thanks for the response. Would this entail setting styles or the drodownWidth property, or would I need to modify the factory?

[flexcoders] Uploading a Specific file rather than browsing

2010-03-31 Thread James
My app allows users to create a user-named jpg like so:- var enteredimagename:String = imagenameentry.text; var file:File = File.applicationDirectory.resolvePath(('assets/images/')+enteredimagename+('.jpg')); However I now want to allow a user to upload that specfic file automatically to my

Re: [flexcoders] List Scrolling Width Issues

2010-03-31 Thread Dan Vega
using BitmapImage changes nothing.. how is there no examples of a list containing images? anyone? Thank You Dan Vega danv...@gmail.com http://www.danvega.org/ On Wed, Mar 31, 2010 at 6:20 AM, Carlos Rovira carlos.rov...@gmail.comwrote: Yesterday I was using a itemRenderer based on mx:Image