Jeff dePascale Blogging on and developing web and mobile technologies

13Feb/093

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

13Nov/080

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