Re: [Flashcoders] (From a PDF?) Getting bitmap data successfully

2010-12-02 Thread wdb
You should be able to use ImageMagick to get the image. See: http://bytes.com/topic/php/answers/867585-convert-pdf-image-imagemagick-ghostscript ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com

Re: [Flashcoders] flash for Android: resources?

2010-04-22 Thread wdb
On Thu, 22 Apr 2010 16:46:37 -0400, Matt S. mattsp...@gmail.com wrote: I'm guessing some of y'all have already dove into the world of developing Flash for Android, I'm wondering if there are sites/books/resources you can recommend to get started? Don't you mean the upcoming iPhone support in

Re: [Flashcoders] Re: is it ever ideal to NOT use weak references?

2010-02-07 Thread wdb
Yes, I am doing the same because the trouble weak event listeners can cause. function loadImage():void { var loader:URLLoader = new URLLoader(); loader.addEventListener(Event.COMPLETE, onComplete, false, 0, true); loader.load(new URLRequest(url)); } function