Flex and Flash Developer – Jesse Warden dot Kizz-ohm

A blog on software development, technology, games & movies.

About

This is the blog of Jesse Warden, a Rich Internet Application Architect. He specializes in using Flex and Flash to create Rich Internet Applications.

Archive for June, 2005

Parent SWF Security Sandbox & Zinc

Wednesday, June 29th, 2005

First off, wanted to report the sad news my blower’s dead; wrong mixture of gas & oil, piston’s busted or something.
Anyway, deploying a project yesterday and doing the unthinkable, loadMovie. A parent SWF loads a child SWF after a successful login. These child SWF’s are basically applications and the shell that loads them [...]

Read the rest of this entry »

Post AJUG: AJAX & ThinkCAP

Tuesday, June 21st, 2005

The Atlanta Java Users’ Group meeting tonight was about AJAX. Takeaways:

Back button becomes Cancel
Submit button becomes Save
Tons of open source frameworks to bridge to the backend
Code does not need to exist on the client beyond connection scripts; JavaScript can be sent to browser to be executed; basically remote invoking via passing of code (aka [...]

Read the rest of this entry »

I’m convinced I’ll have a job in technology till the day I die. At the rate things are going, maybe it won’t be coding, but I’ll bet my last dollar it’s in maintenance.
I spent, oh, 20 minutes at lunch trying to fix my blower; it’s a 2 stroke engine with a fan that generates [...]

Read the rest of this entry »

No Complete Event for Internal Content

Monday, June 20th, 2005

Both Flash & Flex have a Loader component to load content into. It’s nice in Flash because it abstracts sizing & loading code. It’s even cooler in Flex because you can bind to contentPath.
However, if the content you are loading in Flash is an internal symbol, or embedded content in Flex (same thing), [...]

Read the rest of this entry »

Typically, if you want external content in Flash, you link to an external text file, and load it into a text field like so:
lv = new LoadVars();
lv.owner = this;
lv.onData = function(str)
{
this.owner.my_txt.text = str;
};
lv.load(”yourTextFile.txt”);
Quick and dirty, right? Well, Flex does the same thing for you, but without all the work; check this out:
<mx:String [...]

Read the rest of this entry »