Temporary spot for art until I get my site up and running again…
-
Pages
-
Categories
-
Archives
It seems all the insane hours our development team at Fluid put into The North Face new website has payed off!! It was listed in the 2009 Hot 100 Sites on the interwebs.
Jeez. Definately going to visit Chicago for this!!!!
Burning Fight Book Release Show (Two-Day Pass)
May 2nd - 3rd, 2009
BURNING FIGHT - 90′S HARDCORE BOOK RELEASE SHOW
featuring
UNBROKEN, DISEMBODIED, TRIAL, MOUTHPIECE, KILLING TIME, UNDERDOG, 108, GUILT, SPLIT LIP, THREADBARE, REACH THE SKY, DAMNATION A.D., RINGWORM…and some other bands I don’t care about….
Adobe has a great feature that gives a developer the ability to easily and cleanly embed movieclip assets created in Flash CS3 Authoring Environment for use in Eclipse Flex/ActionScript projects. In older versions of Flash, a MovieClip could have a Linkage ID for access in your code. But now in CS3, the Linkage ID is now two parameters. The first is a qualifed class name that will act as a wrapper for your clip. The second is a base class that this clip should inherit from. What this gives you is the ability in an Flex or ActionScript Project to reference these “assets” as a class. No messy importing or dynamic loading from a SWF file.
import com.krisrange.assets.navigation.ButtonAsset;
function setup() : void
{
var button : ButtonAsset = new ButtonAsset();
addChild( button );
}
Alex and I drove down to LA last week to see the Cro-Mags. It was intense. Great setlist and good hang outs. Heres a video from it.
First post! As a first post, I’ve decided to share my experiences from last winter using XML namespaces. At the time I thought I was just delerious from the insane work hours, but atleast now I know it wasn’t me! There are really just two basic but important things to note about using them.
var ns : Namespace = new Namespace( dataModel.getNamespace() ); default xml namespace = ns;
public class NamespaceTest extends Sprite
{
/** Namespace */
private var ns : Namespace;
/** Constructor */
public function NamespaceTest() : void
{
create();
arrange();
}
/** Arrange me, gets called AFTER create() */
private function arrange() : void
{
// Nothing returned
trace( dataModel.getXML()..layout.@x );
}
/** Create me, called first */
private function create() : void
{
ns = new Namespace( dataModel.getNamespace() );
default xml namespace = ns;
}
}