[flexcoders] Re: using custom components

2010-03-19 Thread valdhor
I have no idea how you would use Catalyst - I haven't used it. I know you can't embed an MXML file like you are trying. You may like to peruse the archives of this list as I seem to remember seeing something like this before. Perhaps compiling your MXML file to a SWF and embedding that may

[flexcoders] Re: Scroll Problem

2010-03-19 Thread criptopus
Basically I need to know how I would construct a VBox that must resize with the browser but not resize with regard to its internal contents producing scroll bars. Is this possible - Anyone? - Stephen

[flexcoders] Re: Pb with Amfphp

2010-03-19 Thread valdhor
I would also need to see your remoting-config.xml file to see the destinations you have created. --- In flexcoders@yahoogroups.com, Christophe christophe_jacque...@... wrote: Please, find below my services-config file: services-config services service

[flexcoders] Re: Pb with Amfphp

2010-03-19 Thread valdhor
Forget the last message. It looks like you are not loading in a remoting-config.xml file. You could try adding the following to the services-config.xml file (This is actually in my remoting-config.xml file)... default-channels channel ref=my-amfphp/ /default-channels --- In

[flexcoders] Re: What book in Flex would you guys recommend for a newbie ?

2010-03-19 Thread valdhor
Before you go and buy a book, I recommend doing the Flex in a Week video training (https://www.adobe.com/devnet/flex/videotraining/). It's free and a great start to learning Flex. After that, all you should need is the Flex Documentation and, perhaps, a good ActionScript 3 reference. I

[flexcoders] Re: Problem reading an XML file

2010-03-19 Thread valdhor
I am not very good with XML (That's Tracy's expertise) but you can get it with the following: myXML..woeid myXML[0]..woeid and probably a dozen different ways. You may like to check these out for more detail... http://www.adobe.com/devnet/flex/quickstart/accessing_xml_data/

Re: [flexcoders] What book in Flex would you guys recommend for a newbie ?

2010-03-19 Thread Darrin Kay
Flex 4 in Action, its not out yet but was able to get a early view of it and with Flash Builder 4 this is where I would start. http://groups.adobe.com/posts/fa890211a0 Flex 4 in Action On Thu, Mar 18, 2010 at 9:15 PM, Steve Mathews happy...@gmail.com wrote: The community is great at

[flexcoders] How can i localize and internationalize a flex application

2010-03-19 Thread Thomas Silvester
Hi All, I did all the steps for this like copyloale, create resource file and cnage the compiler optionin Flex builder. The localization works in Flex builder environment, but when I try to compile the resourcebundles from command line, I get for fr_CA and de_CH, he following Error: unable to

[flexcoders] Re: Reuse a LabelFunction

2010-03-19 Thread Amy
--- In flexcoders@yahoogroups.com, Angelo Anolin angelo_ano...@... wrote: Hi FlexCoders, I have created a labelfunction which I use in my datagrid to format the display value. mx:DateFormatter id=df formatString=DD/MM/ / And this is the AS function private function

[flexcoders] Re: What book in Flex would you guys recommend for a newbie ?

2010-03-19 Thread Amy
--- In flexcoders@yahoogroups.com, fred44455 fred44...@... wrote: I already asked questions on this forum but I rarely get feed backs. I was told that the Adobe community was a fantastic one but I guess it is very much like linux if you are a newbie you are on your own. Anyway I would

[flexcoders] Arrows for TabNavigator

2010-03-19 Thread Christophe
Hello, How to cancel the left and right arrow event for a TabNavigator ? Thank you, Christophe,

[flexcoders] DateField month's name

2010-03-19 Thread Christophe
Hello, In a date field, how to setup the name of the month (Ex: 18 March 2010). And how to have the month in the language of the interface ? Thank you, Christophe,

Re: [flexcoders] Arrows for TabNavigator

2010-03-19 Thread Jake Churchill
Add an event listener for the keyDown event and do event.preventDefault(); event.stopPropagation(); event.stopImmediatePropagation();. That should take care of it as long as you catch it before it gets anywhere. If that doesn't work, you'll need to extend tabNavigator in a custom component and

[flexcoders] FileReference.load() not found -- help please?

2010-03-19 Thread reflexactions
This API is marked as FP10. We have been having a problem with some people getting the above error and they are using FP10. One guy was using FP10.0.32.18 and got the error, another guy was using 10.1 the same version as I was using and they got they error but I didnt. We even tried an

[flexcoders] Re: What book in Flex would you guys recommend for a newbie ?

2010-03-19 Thread Laurence
I learned a lot from Adobe Flex 3: Training From The Source. It takes you through an entire project, from start to finish. They also have their own web-page and a discussion group as well. Very, very helpful. The book:

[flexcoders] Re: FileReference.load() not found -- help please?

2010-03-19 Thread tntomek
If this problem is in the IDE open all your .project/.flexProperties etc files and manually search for 9.x. Flex libraries don't have version number exposed in the IDE which makes it even harder to troubleshoot -Tom Gruszowski (http://tomek.me) --- In flexcoders@yahoogroups.com, reflexactions

[flexcoders] Re: FileReference.load() not found -- help please?

2010-03-19 Thread reflexactions
No its not just in the IDE (and yes we did that). To be very clear what we have done as a final resort to test the problem We went to this site http://sherifabdou.com/2008/06/using-the-new-filereference-class-in-flex-to-save-and-load-without-a-server/ and accessed the flex app there.

RE: [flexcoders] How can i localize and internationalize a flex application

2010-03-19 Thread Gordon Smith
You probably just need to create fr_CA and de_CH subdirectories inside of frameworks/locale so that the resource SWCs for these locales can be created there. Gordon Smith Adobe Flex SDK Team From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of Thomas Silvester

RE: [flexcoders] DateField month's name

2010-03-19 Thread Gordon Smith
The month names are pulled from localized resources according to the ResourceManager's localeChain. If you set resourceManager.localeChain = [ fr_FR ] then the month names should be in French. Are you using the ResourceManager to localize your interface for various locales? Gordon Smith Adobe

[flexcoders] How to unset a color from an external CSS file

2010-03-19 Thread reflexactions
A backgroundColor is defined in a base class. I need to set it to undefined in an external CSS to stop it from drawing. In css if I use undefined or null I get a string 'undefined'. Any way to handle this?

Re: [flexcoders] How to unset a color from an external CSS file

2010-03-19 Thread Jamie S
In your CSS, try using... backgroundColor: ClassReference(null); Jamie On Fri, Mar 19, 2010 at 2:13 PM, reflexactions reflexacti...@yahoo.comwrote: A backgroundColor is defined in a base class. I need to set it to undefined in an external CSS to stop it from drawing. In css if I use

[flexcoders] Flex Builder Out of Memory Errors

2010-03-19 Thread d9_tech
It's pretty frustrating that Flex Builder regularly crashes with Out of Memory errors during compile and sometimes even when design view is refreshing. After searching for solutions and trying all sorts of memory configurations in the Flex Builder config file, our dev team finally gave up

[flexcoders] Re: How to unset a color from an external CSS file

2010-03-19 Thread reflexactions
Ah thanks. --- In flexcoders@yahoogroups.com, Jamie S jsjph...@... wrote: In your CSS, try using... backgroundColor: ClassReference(null); Jamie On Fri, Mar 19, 2010 at 2:13 PM, reflexactions reflexacti...@...wrote: A backgroundColor is defined in a base class. I need to

[flexcoders] Re: Flex Builder Out of Memory Errors

2010-03-19 Thread reflexactions
This is not a fix but what I tend to do is keep a track of how much memory FB is using throughout the day (I have TaskManager open all the time anyway to kill IE instances) and when I get over a gig I restart FB. --- In flexcoders@yahoogroups.com, d9_tech d9t...@... wrote: It's pretty

RE: [flexcoders] Flex Builder Out of Memory Errors

2010-03-19 Thread Christopher McArthur
Yeah, I get this constantly too. I have 4GB of ram, and Flexbuilder never goes above 700Mb, but still get the errors constantly. Ive also tried everything I can find on google adjusting the memory settings, tried values all over the place, and nothing, constnatly out of memory crashes. Our

[flexcoders] New Opening in my company

2010-03-19 Thread anil kumar
Hi Their are few new openings in our company for flex designers. Interested candidates can apply in next 10days. Location India, Noida -- Anil Kumar Gupta email : anil4urh...@gmail.com