Jeff dePascale Blogging on and developing web and mobile technologies

Featured Post:
Why the iPad’s user agent string presents a problem

Apple marketed the iPad at launch as an internet device designed for the full web. So why then are they explicitly classifying it as a mobile device?

Read the story »

Prequel version 1.0 and documentation released on Google Code

Prequel has been fully documented and released open source as a 1.0, available now on google code, link below:

Prequel on Google Code

Quick start PDF available here:

Prequel Quickstart PDF

And class documentation is located here:

com.jeffdePascale Documentation

Prequel upgraded to .96 – now with bandwidth detection

As of the .96 release just pushed to google code, Prequel now features optional bandwidth detection. Implemention alongside Prequel:

import com.jeffdePascale.prequel.*;

var preload:Prequel = new Prequel();
var bandwidth:BandwidthDetection = new BandwidthDetection(preload);
bandwidth.addEventListener(BandwidthEvent.BANDWIDTH, eBandwidthHandler);
preload.preload([this]);

function eBandwidthHandler(e:BandwidthEvent):void{
trace("bandwidth: " + e.bandwidth + " kbps");
trace("seconds: " + e.seconds);
}