Re: [flexcoders] Problem with loading module -- mx.core::LayoutContainer could not be found.

2007-04-20 Thread bjorn -
: [flexcoders] Problem with loading module -- mx.core::LayoutContainer could not be found. Hi Alex, I've got Flex Builder 2.0.1 and the library path for framework.swc is ${FRAMEWORKS}/libs/framework.swc .. I assume that will link to the 2.0.1version which shipped with the Flex Builder I'm using

RE: [flexcoders] Problem with loading module -- mx.core::LayoutContainer could not be found.

2007-04-19 Thread Alex Harui
@yahoogroups.com Subject: Re: [flexcoders] Problem with loading module -- mx.core::LayoutContainer could not be found. Hi Alex, I've got Flex Builder 2.0.1 and the library path for framework.swc is ${FRAMEWORKS}/libs/framework.swc .. I assume that will link to the 2.0.1 version which shipped

RE: [flexcoders] Problem with loading module -- mx.core::LayoutContainer could not be found.

2007-04-18 Thread Alex Harui
it? From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of bjorn - Sent: Tuesday, April 17, 2007 6:20 AM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] Problem with loading module -- mx.core::LayoutContainer could not be found. Yeah, it seems the file system

Re: [flexcoders] Problem with loading module -- mx.core::LayoutContainer could not be found.

2007-04-18 Thread bjorn -
@yahoogroups.com *Subject:* Re: [flexcoders] Problem with loading module -- mx.core::LayoutContainer could not be found. Yeah, it seems the file system is pretty tricky. I can't load from it even though I have ... this in my application: public function init():void { Security.allowDomain

Re: [flexcoders] Problem with loading module -- mx.core::LayoutContainer could not be found.

2007-04-18 Thread bjorn -
Hi Alex, I've got Flex Builder 2.0.1 and the library path for framework.swc is ${FRAMEWORKS}/libs/framework.swc .. I assume that will link to the 2.0.1version which shipped with the Flex Builder I'm using. As for the -load-externs, what do you mean? The classes are in my main app (although

Re: [flexcoders] Problem with loading module -- mx.core::LayoutContainer could not be found.

2007-04-17 Thread bjorn -
I don't have a crossdomain file, didn't think I needed one as it was all on localhost .. I get the problem when I run my project in Flex hitting ctrl-F11 since it will load my app directly (e.g. file:///C:/dev/FlexWorkspace/MyApp/build/MyApp-debug.html ) - while trying to load the module from a

RE: [flexcoders] Problem with loading module -- mx.core::LayoutContainer could not be found.

2007-04-17 Thread Alex Harui
:[EMAIL PROTECTED] On Behalf Of bjorn - Sent: Tuesday, April 17, 2007 12:32 AM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] Problem with loading module -- mx.core::LayoutContainer could not be found. I don't have a crossdomain file, didn't think I needed one as it was all on localhost

RE: [flexcoders] Problem with loading module -- mx.core::LayoutContainer could not be found.

2007-04-17 Thread Alex Harui
Could you be linking the main app against a 2.0 framework.swc? You need to link against 2.0.1. Also, normally you -load-externs against classes in the main app and not from some package. -Alex From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On

Re: [flexcoders] Problem with loading module -- mx.core::LayoutContainer could not be found.

2007-04-17 Thread bjorn -
*Subject:* Re: [flexcoders] Problem with loading module -- mx.core::LayoutContainer could not be found. I don't have a crossdomain file, didn't think I needed one as it was all on localhost .. I get the problem when I run my project in Flex hitting ctrl-F11 since it will load my app directly (e.g

Re: [flexcoders] Problem with loading module -- mx.core::LayoutContainer could not be found.

2007-04-16 Thread Tom Chiverton
On Monday 16 Apr 2007, bjorn - wrote: Anyone know what might cause this? Googling the error didn't help me much Any luck if you import it in your code (but don't use it) ? Or creating a dummy variable of that type ? -- Tom Chiverton Helping to carefully coordinate value-added data on:

Re: [flexcoders] Problem with loading module -- mx.core::LayoutContainer could not be found.

2007-04-16 Thread bjorn -
Thanks for the tip .. I did try that already though, and it didn't make any difference. On 16 Apr 2007 06:23:20 -0700, Tom Chiverton [EMAIL PROTECTED] wrote: On Monday 16 Apr 2007, bjorn - wrote: Anyone know what might cause this? Googling the error didn't help me much Any luck if you

Re: [flexcoders] Problem with loading module -- mx.core::LayoutContainer could not be found.

2007-04-16 Thread Robert Cadena
Hi Bjorn, when you load the module, what ApplicationDomain are you passing to the the IModuleInfo? and how do you construct it if you are passing it as a param? /r http://www.searchcoders.com/flex/search/module http://www.laflex.org/ - Los Angeles Flex Users Group bjorn - wrote: Thanks for

Re: [flexcoders] Problem with loading module -- mx.core::LayoutContainer could not be found.

2007-04-16 Thread bjorn -
Robert, thanks for leading me onto the correct path :-) The problem has to do with security. If I set the module url to a local path (c:\..) instead of localhost, I'm able to load it. Strange error message for security issues, don't you think? Well, now it's soon on Google at the least. - Bjørn

Re: [flexcoders] Problem with loading module -- mx.core::LayoutContainer could not be found.

2007-04-16 Thread Robert Cadena
Glad I could help. Just cause I'm curious: - do you have a crossdomain at the root of your localhost server? - is your parent app not loaded from the same domain (localhost)? - you are doing this with the swf player, maybe on the browser or by running the swf directly, not in apollo, right?