Thaylin | August 11, 2008
So the recent site I worked on is on Adobe’s site of the day. W00t.
http://www.adobe.com/cfusion/showcase/index.cfm
And finally someone said stuff about my map! Sheesh. lol.
The only thing I’m not liking is the shameless plugs they try to do. They say the site was created in flash(!?!) and dreamWeaver? Who even touches dreamweaver these days for a [...]
Category: adobe |
No Comments »
Tags: actionscript, flash
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 [...]
Category: actionscript, adobe, programming |
No Comments »
Tags:
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 [...]
Category: actionscript, adobe, programming, technology |
No Comments »
Tags:
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 [...]
Category: actionscript, adobe, programming |
No Comments »
Tags:
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.
Category: adobe, programming |
No Comments »
Tags:
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 { [...]
Category: actionscript, adobe, programming |
No Comments »
Tags:
Thaylin | May 27, 2008
Ok, so all in all today wasn’t a bust. I think I walked away from each session with at least a couple new things to ponder about. Not so bad.
ReflexUtil was one of those things. Looks to be a great debug utility. Check it out yourself.
Category: adobe |
No Comments »
Tags:
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 [...]
Category: actionscript, adobe, programming |
No Comments »
Tags:
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);
[...]
Category: actionscript, adobe, programming |
No Comments »
Tags:
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 [...]
Category: actionscript, adobe, programming |
No Comments »
Tags: