Another variation of Sound Spectrum 1. Used bitmap data and applied some blur.
Here is the code
PLAIN TEXT
Actionscript:
package
{
import flash.display.Bitmap;
import flash.display.BitmapData;
import flash.display.Shape;
import flash.display.Sprite;
import flash.display.StageAlign;
import flash.display.StageScaleMode;
import flash.events.Event;
import flash.events.IOErrorEvent;
import flash.events.MouseEvent;
import flash.filters.BitmapFilterQuality;
import flash.filters.BlurFilter;
[...]
Another variation of Sound Spectrum.
code:
PLAIN TEXT
Actionscript:
package
{
import flash.display.Shape;
import flash.display.Sprite;
import flash.display.StageAlign;
import flash.display.StageScaleMode;
import flash.events.Event;
import flash.events.IOErrorEvent;
import flash.events.MouseEvent;
import flash.geom.ColorTransform;
import flash.media.Sound;
import flash.media.SoundChannel;
import flash.media.SoundLoaderContext;
import flash.media.SoundMixer;
import flash.net.URLRequest;
import flash.text.TextField;
import [...]
After a long time I had some time to experiment. I played with SoundMixer computeSpectrum. following is a very basic sound spectrum. click to play. it may will take some time to load the sound. enjoy!
Sound is downloaded from http://incompetech.com
here is the code.
PLAIN TEXT
Actionscript:
package
{
import flash.display.Shape;
import flash.display.Sprite;
[...]
Today I came across a very unusual problem. While compiling an old Flash CS3 project in Flash CS4, Compiler thew an error saying "1044: Interface method {Methodname} in namespace {InterfaceName} not implemented by class {ClassName}." while in CS3 the same project complied without any problem. Class was implementing an Interface and an internal Class was [...]