Saturday, March 1, 2008

FLV to MP3

Totally found this incredible application that allows you to convert FLV to MP3. I wanted to have No One by Alicia Keys on my wedding website but I didn't want the one that was played to death on the radio. Then there was vixy.

http://www.flv2mp3.com/
http://vixy.net/

http://www.gotoandlearn.com/

http://www.gotoandlearn.com/

FLASH & XML tutorial by Pixel2Life

http://www.pixel2life.com/publish/tutorials/31/flash_and_xml_a_beginners_guide/

Sunday, February 3, 2008

Flash Decompiler from Trillix

Ever wonder how somebody did something? Well, now you can break it down with
http://www.blogger.com/img/gl.link.gif

Grab YouTube Video

So I figured out a way to download YouTube Videos to your desktop.

http://keepvid.com/

After you download it, you can embed the videos into your timeline using CS3.

Wednesday, January 30, 2008

Smooth Imported Image

This is code that allows an imported image via getMovie to be smoothed. I got it here.

--------

_global.smoothImageLoad = function(imgURL, targetMovie) {
var i=0
do { i++ } while (eval("_root.smoothImageLoadTemp"+i) != undefined)
tmc = _root.createEmptyMovieClip("smoothImageLoadTemp"+i, _root.getNextHighestDepth())
tmc.createEmptyMovieClip("ti", tmc.getNextHighestDepth())
tmc.tm = targetMovie
with(tmc) {
tmcl = new MovieClipLoader()
tmcl.onLoadComplete = function() {
ti.onEnterFrame = function() {
pixelData = new flash.display.BitmapData(ti._width, ti._height);
pixelData.draw(ti);
tm.attachBitmap(pixelData, 1, true, true);
tm.smoothImageLoadComplete()
removeMovieClip(ti._parent)
}
}
tmcl.loadClip(imgURL, tmc.ti)
}
}

--------

smoothImageLoad("image.jpg", mytargetmc)

Tuesday, January 29, 2008

Perspective Skew by Eric Lin

So the site says it's not "true" perspective but honestly, who cares. The effect is believable enough.



You can read more about it and download the FLA on his page.