Dynamic class property retrieval

Thaylin | December 11, 2009

I’m taking a break from the pattern tutorials for the moment to write the as3 facebook connect integration library I’ve been meaning to write. With that said, here’s a little method I didn’t realize was around to pull properties from classes. Normally the for..in method you can pull properties available within an object, but this [...]

Spiraling through a matrix

Thaylin | August 21, 2009

As I was saying in my previous post, I ran into a little trickiness with circling through the squares in my matrix of squares. Now there may be a better way to do this, and by all means if there is let me know, but here is the best way I figured out how to [...]

Papervision 3D Audio Matrix

Thaylin | August 21, 2009

I’m in the process of getting to know Papervision 3D more finally. With that I decided to play around with it and music. I created a group of squares and each squares Z axis is controlled by a byteArray set with SoundMixer.computeSpectrum. I run through the byteArray, assigning each square it’s own Z pos based [...]

the down lo on ExternalInterface and javascript injection via actionscript 3

Thaylin | May 21, 2009

Yesterday I did a presentation on ExternalInterface and it’s uses along with how to inject javascript on the page and a few other tidbits at FlashCodersNY.
Here’s the zip file with the project we went over. Whether you were there or not you should still be able to easily follow along since there’s tons of comments [...]

Flex 3 Professional free for the unemployed!

Thaylin | April 9, 2009

Currently Adobe is offering flex free for anybody who is unemployed! It’s only to be used with non commercial projects as a means to learn with but that’s just awesome.
For anyone interested, you can pick it up here:
https://freeriatools.adobe.com/learnflex/?PID=1225267

What the Heck are Runtime Shared Libraries?

Thaylin | July 10, 2008

So keeping in the topic from my previous post of low overhead flash apps, I decided to talk a little bit about runtime shared libraries.
So what are Runtime Shared Libraries?
These are libraries that are used just like you normally use your libraries in Flex 3 but instead of storing them within the swf, during runtime [...]

XMLSyndication

Thaylin | July 10, 2008

So Last week I did a presentation on the adobe xmlsyndication package and the use of css within an as3 environment sans mxml at the flashcodersny meeting. I think all in all it turned out pretty good but there were a few issues I noticed.
The first being the dependancy on the adobe corelib package and [...]

A quick note.

Thaylin | June 27, 2008

I was trying to determine a way to sort an array without all the for loops and that sort of business when I ran across this post
Granted it’s a little specific to what you want to sort but I’m sure with a little change you could sort based on the function call maybe. I implemented [...]

Flash to PDF

Thaylin | June 15, 2008

I was reading back to some of my blogs and noticed I forgot to look into embedding swf files into pdf documents.
Here is a link to a tutorial for it.
http://www.adobe.com/designcenter/tutorials/flashpdf/
Check it out.

an update on my FirebugLogger class

Thaylin | June 6, 2008

I decided to tweak the class a bit more so I figured I’d throw it up here.
 

?View Code ACTIONSCRIPT1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
import flash.external.ExternalInterface;
 
 
public class FireBugLogger
{
private static var _enabled:Boolean = false;
 
public function FireBugLogger(singleton:SingletonEnforcer){}
 
public static function set enabled(t:Boolean):void{ _enabled = t; }
public static function get enabled():Boolean{ return _enabled }
public static function log(s:String):void { if(enabled)call(’log’, s); }
public static function debug(s:String):void { [...]