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 { [...]

Utilizing FireFox Firebug

Thaylin | May 16, 2008

FireBug, for those that don’t know about it, is a great little tool for debugging your apps online. 
One of the many things you can do is use it as a logger. This is excellent for flash development debugging on the server as you can easliy utilize the console.log, console.debug, console.error, console.warn, and console.info. The following [...]

oh the randomness

Thaylin | May 14, 2008

?View Code ACTIONSCRIPT1
2
3
4
5
6
7
8
9
10
private function randomSort(a:*, b:*):Number
{
return Math.random()>.5 ? -1 : 1;
}
private function myFunc():void
{
var myArrayToSort = [1,2,3,4,5];
myArrayToSort.sort(randomSort);
[...]

oh man sweet

Thaylin | May 13, 2008

So a little update with the video project. I’ve got things importing into the Sliver clips and tweening open yada yada. 
Mostly all of the tweaks are externalized, i.e. the reavling time, duration, text x and y on the clip, but the most fascinating thing was what I just discovered. 
I was aware of being able to [...]

Where I am now…

Thaylin | May 10, 2008

So for this project since I need all the text that will show up in the video to be externalized for language conversion, I have to load everything streaming. This will also cut down on loads times tremendously. 
My first idea is to make this nice and quick and simple. I’ve got 2 classes that I [...]

Interesting Note…

Thaylin | April 18, 2008

I just saw the current speaker embed a swf into a pdf. Interesting concept. I’ll need to look that up later.

Flex Camp Wall Heat….

Thaylin | April 18, 2008

Omg it is incredibly hot in here. The conference started about an hour ago and I’m sweating balls. Oy. hopefully the things I learn todya will be worth it.

R.I.P. Surface

Thaylin | April 1, 2008

Well Microsoft surface had it’s run. It wowed a couple people but now there’s even better and greater potential with the technology Apple gained by purchasing the company that created the screen tech for the iPhone. 
Microsoft, you guys had your short lived run but it’s just too difficult to fit your big table box in [...]