RE: [flexcoders] Resource bundles and static vars

2009-06-01 Thread Gordon Smith
flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of Tim Rowe Sent: Monday, June 01, 2009 5:34 PM To: flexcoders@yahoogroups.com Subject: RE: [flexcoders] Resource bundles and static vars That's exactly along the line I was looking at the problem being, though

RE: [flexcoders] Resource bundles and static vars

2009-06-01 Thread Tim Rowe
ent: Tuesday, 2 June 2009 10:26 AM To: flexcoders@yahoogroups.com Subject: RE: [flexcoders] Resource bundles and static vars Reources are not loaded into the ResourceManager early enough for use at static initialization time. If you want a resource-based public static foo, do somethin

RE: [flexcoders] Resource bundles and static vars

2009-06-01 Thread Gordon Smith
excod...@yahoogroups.com] On Behalf Of Manish Jethani Sent: Monday, June 01, 2009 5:18 PM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] Resource bundles and static vars Try putting a breakpoint in SystemManager's installCompiledResourceBundles() function. That's where the resource bun

Re: [flexcoders] Resource bundles and static vars

2009-06-01 Thread Manish Jethani
Try putting a breakpoint in SystemManager's installCompiledResourceBundles() function. That's where the resource bundles are set up. It's possible that your class is being loaded before the resource bundles are set up, and that's why you're getting null. Manish On Tue, Jun 2, 2009 at 5:08 AM, Ti