Archive for the ‘flash 8’ Category

The funniest commerial

Sep
26

Asians want to be so black they got to be sterotyped in a commerial. That’s funny cause you know they couldn’t do a similar thing to black people we’d protest. HA! Click to see

The Horror Update (required flash 8 beta)

Aug
22

.

Special thanks to boone!
if you can’t see get flash player 8 beta

My first finished 100% actionscripted flash app.

Aug
18


I am excited to show off My first finished 100% actionscripted flash app. though crude, I will massage it but I wanted to put it up. Oh it using the lates flash 8 actionscript not out to the general public. I modified it from: http://www.osflash.org/doku.php?id=flashcoders:undocumented:flash-7-export-to-flash-8

here is the code

//————–origninal from: http://www.osflash.org/doku.php?id=flashcoders:undocumented:flash-7-export-to-flash-8
// if anyone knows how I can make this reverse the blur I would appreciate it.

function blurChange():Void {
if (nTimes >= 20) {
trace(nTimes);
dropShadow.blurY = nTimes-=2;
txtField.filters = [dropShadow];
txtField.htmlText = “The Horror”;
}
else if (nTimes = 20) {
dropShadow.blurY = nTimes+=2;
txtField.filters = [dropShadow];
txtField.htmlText = “The Horror”;
//clearInterval (nInterval);
}

}

var nTimes:Number = 100;
var nInterval:Number = setInterval(blurChange, 100);

// create textfield
this.createTextField(“txtField”, this.getNextHighestDepth(), 50, 100, 500, 800);
txtField.html = true;

txtField.textColor = 0×000000;
// set new antialias mode
txtField.antiAliasType = flash.text.TextRenderer.AntiAliasType.ADVANCED;
// create shadow filter
var dropShadow = new flash.filters.DropShadowFilter();
dropShadow.blurX = 1;
dropShadow.blurY = nTimes; //var from problem
dropShadow.distance = 3;
dropShadow.angle = 35;
dropShadow.quality = 4;
dropShadow.alpha = 75;
// apply shadow filter
txtField.filters = [dropShadow];