Skip to content

Instantly share code, notes, and snippets.

@caseypugh
caseypugh / gifplayer.as
Created September 23, 2011 18:26
GIFPlayer - How to resize an animated GIF
// See http://www.bytearray.org/?p=95
// Insert into GIFPlayer.as
import flash.geom.Rectangle;
public function resize(w:Number, h:Number):void
{
for (var i = 0; i < aFrames.length; i++) {
aFrames[i].resize(w, h);
}
}