Archive

Archive for the ‘Flash’ Category

Screen Scales

June 18th, 2009

Screen Scales is a project that a friend of mine and I created. This is the first free AIR application that we have created. It is a utility that allows you to drag points around the screen and it will calculate the distance between them in pixels (by default).

Although there are a few different screen caliper type of programs, we wanted to create our own so we could make it do exactly what we wanted (and more). The features that we added that may be different from some of the other caliper programs are the ability to have multiple line segments on-screen at once, measure diagonal distances with the ability to see the horizontal and vertical delta measurements, display angle measurements, set a custom scale factor, and others.

If you are interested, you can download it for free by visiting the Screen Scales Project page.

Some day I will get around to posting about some of the things we did to make it work the way we wanted it to.

AIR, Actionscript 3, Flash

Reading Data from XML

February 17th, 2009

One of the most common actions to do in a flash movie is reading data from outside sources. There are many different ways and formats for reading data, and we will start with reading from an XML document.

Reading from an XML document provides us with a lot of different abilities. First off, you can modify an XML file easier than a Flash file because you don’t have to recompile it. Second (and more importantly in my opinion), XML files can be the dynamically creating using PHP which means you can pull data directly out of a database.
Read more…

Actionscript 3, Flash

Simple Flash Slide Show

February 5th, 2009

The first tutorial will be to create a very simple slide show using Flash and Actionscript 3. I know, there are thousands of these things out there and it would be easier to download one of those and use it, but by building your own you will learn some of the concepts in programming with Actionscript 3.
Read more…

Actionscript 3, Flash