Sine Wave Generator

January 15, 2012

I’m working on making a synth app in Flash, sorta like a Moog. This is my Hello World application of the AS3 SampleData class.

It uses the X and Y to compute the left and right frequencies.

Warning: May blow your speakers….! :) not really, but it has some ear piercing sounds which might annoy your neighbour’s dog slightly, and If you get the sound down really low and turn your speakers up you could probably soil your pants! Makes some mean Martian flying saucer sounds.

view demo : here

source code : download

Tween Delay AS3

November 22, 2011

An ActionScript 3 version of  Tim Walling’s Tween Delay Class which I adapted. Extending  the  AS3 Tween class.

For More info visit : http://timwalling.com/

TweenDelayAS3.zip

Example of usage:

import fl.transitions.Tween;
import fl.transitions.easing.*;
import fl.transitions.TweenEvent;
import com.timwalling.TweenDelay;

bg.alpha=0;
var bgTween:TweenDelay = new TweenDelay(bg, "alpha", Strong.easeOut, 0, 1, 1, 0, true);