Posts filed under 'I just thought'

My 2009 Predictions

  1. Britney gets remarried.
  2. Amy Winehouse goes back to rehap.
  3. Steven Colbert majorly retools his show.
  4. An amemdment is passed for poligamy but not gay marriage.
  5. Another Hulk movie w/ another actor, again
  6. Flying cars

Add comment December 31st, 2008

Merry Christmas I’m not completely Tone Deaf?…am I?

If you have every wondered how I’d sound if I tried recorded an EP Christmas album for Disney Records, here is your chance. I had fun singing like a goof.

All songs created w/ Abelton Live, an AutoTune and/or lots of reverb and chorus.
Jingle Bell Rock
MerryXmas (War is over)
Wonderful Christmas Time

Add comment December 25th, 2008

Happy Birthday, me

(Either JavaScript is not active or you are using an old version of Adobe Flash Player. Please install the newest Flash Player.)

Add comment June 20th, 2008

How to use Bitmap and BitmapData in ActionScript 3 – v3

example of BitmapTest 3 Alright, this example is very similar to the other examples I have done. But with this one I am scaling all pixels at the same rate. Just click on it the image in the example Source | Example

[as] import flash.display.*;
import caurina.transitions.Tweener;
import flash.sampler.*;

var pixHolder:Sprite = new Sprite();

var img:Img = new Img();
//pixHolder.opaqueBackground = true;

addChild(pixHolder);

var coords_array:Array = [];
var pixels_array:Array = [];

var bmd:BitmapData = new BitmapData(img.width, img.height, false);
bmd.draw(img, new Matrix());
bmd.lock();
startSampling();

for (var i:int = 0; i < img.width; i++)
{
for (var j:int = 0; j < img.height; j++)
{
var coords:Object = {};

//var pixData:BitmapData = new BitmapData(1, 1, false, bmd.getPixel(i, j));

//var pixBit:Bitmap = new Bitmap(pixData, PixelSnapping.ALWAYS, true);

var pixSprite:Sprite = new Sprite();
pixSprite.graphics.beginFill(bmd.getPixel(i, j), 1);
pixSprite.graphics.drawRect(0, 0, 1, 1);
pixSprite.graphics.endFill();

pixSprite.x = i;
pixSprite.y = j;
//pixSprite.filters = [new BlurFilter(5, 5, 3)];
//pixSprite.addChild(pixBit);
pixHolder.addChild(pixSprite);

coords.sprite = pixSprite;
coords.x = i;
coords.y = j;
coords_array.push(coords);
}
}
trace(”what: ” +getSampleCount() )

bmd.unlock();
bmd.dispose();
stage.addEventListener(MouseEvent.CLICK, updating, false, 0, true);

function updating(evt:MouseEvent):void
{
removeEventListener(MouseEvent.CLICK, updating);
trace(”over”);

for(var k:int = 0; k < coords_array.length; k++)
{
Tweener.addTween(coords_array[k].sprite, {x:coords_array[k].sprite.x * 2, scaleX:coords_array[k].sprite.scaleX * 2, scaleY:coords_array[k].sprite.scaleY * 2, delay:.5,  y:coords_array[k].sprite.y * 2, transition:”linear”, time:.5});
}
trace(getSampleCount() )
}
[/as]

Add comment April 29th, 2008

Mrs. Spitzer’s thoughts during her husbands sex scandal press conference

Mrs. Spitzer has a lot to think about. – Link

Add comment March 12th, 2008

Hilary Clinton’s Advice to NY Governor’s wife – Bitstrips is awesome

She’s good! -Link

Add comment March 12th, 2008

I heart FOX/NBC Universial hulu

hulu logoSo I love being on the computer and I love exploring the world of flash. Sometimes that poses a problem because I like watching tv (my tv is not near my computer) and not having to wait for it to download through torrents. So I found through Mashable, hulu.

hulu.jpg

Hulu is nice all around. It works 10x better then ABC’s player. The interface is nice, it gives you the lots of info on the video like when it aired, and who was in it. I enjoy the face that you can gray out everything on the page to focus your eyes on the video not the dumb banner ads.

Lastly the best thing is you can embed it anywhere. Why? Because somebody smart though let’s not restrict where the video can play and allow the ads to stream in no matter where it’s embedded. I have a Simpsons episode from last week on my myspace.

Check hulu out.

Add comment February 27th, 2008

My thoughts on the writers strike

Though Jay Leno and Conan are coming back, there’s still a strike. My advice to you if you are trying to find something to do is, Code more!

Add comment December 27th, 2007

Temp Dev Rig

So I’m working from home this week since none of my co-workers are in. So I wanted to work on the couch and not the desk. Then it hit me a can make a table out of something sturdy like a snare drum stand, minimal and efficient.

dev rig 1dev rig 2

Add comment December 26th, 2007

Merry Christmas to all…

I say Merry Christmas. Some may not celebrate Christmas so Merry _______________(insert holiday). Or Happy Day off. And remember today is a day for family so close down Flash and Flex Builder and watch A Christmas Story with them.

Add comment December 25th, 2007

Previous Posts


    Blog Calendar

    March 2010
    M T W T F S S
    « Jun    
    1234567
    891011121314
    15161718192021
    22232425262728
    293031  

    Posts by Month

    Posts by Category