Re: Re: [Flashcoders] Mtasc Delegate

2006-08-05 Thread Hans Wichman
´will check that - Original Message - From: Pål Østerud [EMAIL PROTECTED] To: flashcoders@chattyfig.figleaf.com Sent: Wednesday, August 02, 2006 6:48 AM Subject: Re: [Flashcoders] Mtasc Delegate Hi João, Mtasc is more strict with variable scope than MM's compiler. If you want to use mtasc

Re: Re: [Flashcoders] Mtasc Delegate

2006-08-05 Thread jcarlos
: [Flashcoders] Mtasc Delegate Hi, are you compiling in mtasc with the -mx flag? If so, the delegate class will not be compiled into your swf and it will not work. When I work with Mtasc (through FlashDevelop) i find it the easiest to use an injection swf, but i dont know if that is an option

Re: Re: [Flashcoders] Mtasc Delegate

2006-08-04 Thread Chris Allen
, jcarlos [EMAIL PROTECTED] wrote: thanks Pål I´will check that - Original Message - From: Pål Østerud [EMAIL PROTECTED] To: flashcoders@chattyfig.figleaf.com Sent: Wednesday, August 02, 2006 6:48 AM Subject: Re: [Flashcoders] Mtasc Delegate Hi João, Mtasc is more strict with variable

Re: [Flashcoders] Mtasc Delegate

2006-08-02 Thread Pål Østerud
Hi João, Mtasc is more strict with variable scope than MM's compiler. If you want to use mtasc on MM's Delegate method you can rename the variable called func inside the dynamically created function in the Delegate.create method (that is two places exactly, and don't touch the line

Re: [Flashcoders] Mtasc Delegate

2006-08-02 Thread jcarlos
it doesn´t work - Original Message - From: John Grden [EMAIL PROTECTED] To: Flashcoders mailing list flashcoders@chattyfig.figleaf.com Sent: Wednesday, August 02, 2006 12:30 AM Subject: Re: [Flashcoders] Mtasc Delegate what's the error you get? or does it just simply not work? JPG

Re: [Flashcoders] Mtasc Delegate

2006-08-02 Thread jcarlos
thanks Pål I´will check that - Original Message - From: Pål Østerud [EMAIL PROTECTED] To: flashcoders@chattyfig.figleaf.com Sent: Wednesday, August 02, 2006 6:48 AM Subject: Re: [Flashcoders] Mtasc Delegate Hi João, Mtasc is more strict with variable scope than MM's compiler

[Flashcoders] Mtasc Delegate

2006-08-01 Thread jcarlos
hi All, I´m having problems using Delegate with MTASC this works fine Flash compiler if (_actionRelease) { container_mc.onRelease = Delegate.create (this, handleRelease); } but doesn´t work with MTASC Any help? Directions ? Thanks in advance João Carlos

Re: [Flashcoders] Mtasc Delegate

2006-08-01 Thread John Grden
what's the error you get? or does it just simply not work? JPG On 8/1/06, jcarlos [EMAIL PROTECTED] wrote: hi All, I´m having problems using Delegate with MTASC this works fine Flash compiler if (_actionRelease) { container_mc.onRelease = Delegate.create (this, handleRelease); }

Re: [Flashcoders] Mtasc Delegate

2006-08-01 Thread Adam Pasztory
Use this instead. It will make you happy. http://www.person13.com/articles/proxy/Proxy.htm -Adam On 8/1/06, John Grden [EMAIL PROTECTED] wrote: what's the error you get? or does it just simply not work? JPG On 8/1/06, jcarlos [EMAIL PROTECTED] wrote: hi All, I´m having problems using