Beta Release on Google Code – ResizeToolkit
Release version .7, see notes on google code for preliminary documentation. This package of classes aims to simplify Fullscreen implentations in AS3, as well as handling stage resize events and the layout of objects based on stage proportions. More documentation coming soon...there's a lot of flexibility and control in this package.
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);
}


