[Flashcoders] AS3 loader applicationDomain question

2007-08-07 Thread Patrick Matte|BLITZ
Is this supposed to work? Right now flash IDE crashes everytime when it reaches the line: var instance = new ClassReference(); I just want to add the loader.content to the stage instead of the whole loader instance and I thought that would work.. function load():void{ var

Re: [Flashcoders] AS3 loader applicationDomain question

2007-08-07 Thread Muzak
ClassReference is a reserved word, at least it is in Flex 2. regards, Muzak - Original Message - From: Patrick Matte|BLITZ [EMAIL PROTECTED] To: flashcoders@chattyfig.figleaf.com Sent: Tuesday, August 07, 2007 10:05 PM Subject: [Flashcoders] AS3 loader applicationDomain question

Re: [Flashcoders] AS3 loader applicationDomain question

2007-08-07 Thread Matt Muller
[EMAIL PROTECTED] To: flashcoders@chattyfig.figleaf.com Sent: Tuesday, August 07, 2007 10:05 PM Subject: [Flashcoders] AS3 loader applicationDomain question Is this supposed to work? Right now flash IDE crashes everytime when it reaches the line: var instance = new ClassReference(); I just

RE: [Flashcoders] AS3 loader applicationDomain question

2007-08-07 Thread Patrick Matte|BLITZ
@chattyfig.figleaf.com Subject: Re: [Flashcoders] AS3 loader applicationDomain question try... var ClassReference:Class = event.target.applicationDomain. getDefinitionByName(className) as Class; MaTT On 8/7/07, Muzak [EMAIL PROTECTED] wrote: ClassReference is a reserved word, at least