Re: [Flashcoders] AS2: Multilanguage-Listener

2007-06-12 Thread eka
hello :) you can use my opensource framework and this extensions with the localization model of ASGard (ext of VEGAS) Page of the Framework project : http://code.google.com/p/vegas/ Install VEGAS and this extensions : http://code.google.com/p/vegas/wiki/InstallVEGASwithSVN Example to use the

RE: [Flashcoders] AS2: Multilanguage-Listener

2007-06-12 Thread Jesse Graupmann
You have to initialize the object before you can add listeners; var listener:Object = new Object(); listener.click = function ( evt:Object) { trace(it worked!); }; var obj:Object = new Object(); mx.events.EventDispatcher.initialize ( obj ); obj.addEventListener( click, listener

RE: [Flashcoders] AS2: Multilanguage-Listener

2007-06-12 Thread Jesse Graupmann
- Von: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Im Auftrag von Jesse Graupmann Gesendet: Dienstag, 12. Juni 2007 22:09 An: flashcoders@chattyfig.figleaf.com Betreff: RE: [Flashcoders] AS2: Multilanguage-Listener You have to initialize the object before you can add listeners; var listener:Object