Monthly Archives: December 2009

Flash Event.COMPLETE sometimes doesn’t fire in Firefox

I have run into some strange behaviour in Flash and Firefox recently. We had a Flash movie (AS3) that loads up, in its document classes constructor it sets a few event handlers on loaderInfo: this.loaderInfo.addEventListener(Event.COMPLETE, loadComplete); this.loaderInfo.addEventListener(ProgressEvent.PROGRESS, progress); this.loaderInfo.addEventListener(IOErrorEvent.IO_ERROR, ioErrorHandler); this.loaderInfo.addEventListener(HTTPStatusEvent.HTTP_STATUS, httpStatusHandler); The problem taht seemed to be happening (most of the time, ie not… Read more »

Posted

Notes on iPhone CoreLocation framework

If you tell the Location Manager to start updating, it will keep returning updates indefinitely until it’s told to stop. It returns the new location to its delegate method: didUpdateToLocation (Like a callback). It will keep trying to get you the most accurate location it can – when you create the Location Manager you can… Read more »

Posted