Re: [Flashcoders] JPGEncoder and com folder

2009-09-27 Thread Bassam M
Mike I'm confuse can you tell me where to copy the folder, I don't know where is com folder and the class I use Flash CS4 On Fri, Sep 25, 2009 at 7:49 AM, Mike Chambers mcham...@adobe.com wrote: You need to download the code from the as3corelib library: http://code.google.com/p/as3corelib/

Re: [Flashcoders] JPGEncoder and com folder

2009-09-27 Thread Glen Pike
Hi, This is really a bit of a newbie question, so if you have any more really basic ones like this, I would suggest trying the other list - http://chattyfig.figleaf.com/mailman/options/flashnewbie/ - but to give you a bit of a pointer... You can unzip the as3corelib files anywhere

Re: [Flashcoders] Best way to detect key KEY_DOWN on MovieClip

2009-09-27 Thread Glen Pike
Hi, You should be able to do this with something like below. You can add your code on the timeline, or inside a class, it's up to you. You will need to make sure that the thing the code is inside has been added to the stage - you listen for keyboard events on the stage, not the movieclip, so

Re: [Flashcoders] Flash Cache in IE FF

2009-09-27 Thread Charles Parcell
You can append a query string to any URL and this forces a reload of the data from the CLIENT. For example, as someone has already pointed out. Main.swf?nocache=+(new Date()).getTime() You can also do this to your data file. myData.xml?nocache=+(new Date()).getTime() As you might have