Category Archives: ActionScript

MinimalComps 0.9.6

It’s been a while, but I finally got around to doing some work on MinimalComps. I went through all the issues that people had entered in Google Code. Some were older and already handled. Some were requests for new features, … Continue reading

Posted in ActionScript, Components, Flash | 9 Comments

AS3 Sound Synthesis IV – Tone Class

In order to make the code so far a little more reusable, I moved it over into its own class, called Tone. I also implemented some optimizations and other little tricks. The most important is that instead of calculating the … Continue reading

Posted in ActionScript, Flash | 21 Comments

AS3 Sound Synthesis III – Visualization and Envelopes

In Part I and Part II of this series, we learned how to utilize the Sound object to synthesize sound, and how to create sounds of various frequencies. This post will just be a quick detour onto a couple of … Continue reading

Posted in ActionScript, Flash | 13 Comments

AS3 Sound Synthesis II – Waves

This post will show you how to generate sine waves for specific frequencies using the AS3 Sound object. It assumes you have read, or are familiar with the data in Part I of this series. Basics of Sound Sound itself … Continue reading

Posted in ActionScript, Flash | 13 Comments

Sound Synthesis in AS3 Part I – The Basics, Noise

I’ve been meaning to write something up on this for quite a while. It recently struck me that there still wasn’t a whole lot of good material on this out there already. So I figured I’d throw something together. We’ll … Continue reading

Posted in ActionScript, Flash | 7 Comments

Scientific American

In the June 2010 issue of Scientific American, on page 58, there is an article entitled, “Is Time an Illusion?” by Craig Callender. You can see it here: The large artwork on the first and last pages of the story, … Continue reading

Posted in ActionScript, Flash | 20 Comments

A few MinimalComp updates

Addressed all reported bugs and added a few graphical goodies. [kml_flashembed publishmethod=”static” fversion=”10.0.0″ movie=”http://www.bit-101.com/blog/wp-content/uploads/2010/04/Updates.swf” width=”420″ height=”320″ targetclass=”flashmovie”] [/kml_flashembed] First is grids. The Panel now has a few new properties. Panel.showGrid turns on or off a grid drawn in the background. … Continue reading

Posted in ActionScript, Components, Flash | 15 Comments

MinimalComps: RangeSlider

I know I’m supposed to stop making new components and clean things up for 1.0, but this got in my head and I had to bang it out. It’s basically a slider with two handles. You get a lowValue and … Continue reading

Posted in ActionScript, Components | 8 Comments

Minimal NumericStepper

I wasn’t planning on doing this before 1.0, but I needed one and put a couple of buttons and an input text together for the project I’m doing. Then I needed another one elsewhere in the project. So I extracted … Continue reading

Posted in ActionScript, Components | 11 Comments

Encoding PNGs in AS3, asynchronously

Occasionally I make apps that create bitmaps and save them. To do so you need to use an encoder to turn the bitmapdata bits into a byte array that can be saved in some image format. AS3 has a PNGEncoder … Continue reading

Posted in ActionScript | 17 Comments