Tuesday, May 18, 2010

Praat: Exporting soundwaves as EPS

http://www.fon.hum.uva.nl/praat/

Okay, so I don't know exactly what this program is for. All I know is that you can import an audio file, and export it's soundwave as EPS. How badass is that?

Tuesday, May 4, 2010

Ascii to Flash ActionScript Key Codes

http://people.uncw.edu/tompkinsj/112/flashactionscript/keycodes.htm
This is more of a bookmark for myself, but if anyone needs to know the complete set of keycodes for keypresses in Flash, check out the above link.

Usage:
keyListener = new Object();
keyListener.onKeyDown = function() {
if (Key.isDown(49)) {
trace("CTRL is pressed");
}
Key.addListener(keyListener);