Jeff dePascale Blogging on and developing web and mobile technologies

Featured Post:
2010 predictions: iPhone OS version 4.0 features

As 2009 draws to a close, its a good time to start preparing for upcoming trends and advances in the web and mobile space. The first in a series, this post is all about what should be the buzz of March 2010: the iPhone OS 4.0 announcement.

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);
}