RSS

How to Load External Images in Actionscript 3.0

14 Comments | This entry was posted on Mar 11 2009

loadingimage

Using the flash.display.Loader class in AS3, you can load in external image files to display in flash. The loader class supports loading in JPG, SWF, PNG, or GIF file types. The Loader class sounds more like a loading manager that watches load progress, rather than a display object. Fact is, the Loader is treated as a DisplayObject, so when it’s ready you just add it to the stage. Pretty simple, so let’s get started!

Read more »

Connecting to a Flash Media Server using RTMP

35 Comments | This entry was posted on Aug 03 2008

RTMP is the protocol used by Adobe’s Flash Media Server to stream content into flash. Most of the help documentation doesn’t touch much on this method of connection and is limited to sources not easily available to users.
Read more »

What the hell is Modulus?!

0 Comments | This entry was posted on May 24 2008

Grant Skinner has started a great series of posts related to core functionality. Each post will discuss methods that are less than 5 lines of code. These “Core AS3″ snippets can be HUGE time savers when used properly. Grant does a great job at fully explaining what you need to do, and why you would want to do it.

This week: Modulus (%)