Content

Visual communicator / logbook & brain bin

File: September 2009

This project demonstrates timeline navigation, key stroke detection, a basic URLRequest, context menu modification, and how to make an object annoyingly trail the mouse cursor. The code follows after the jump.

Tagged: » »

 » Read the rest

An EventListener listen for clicks for each of the four buttons, executing the corresponding function, which manipulates the X or Y value by 10. Is there a more efficient way to do this? btn_left.addEventListener(MouseEvent.CLICK, nudge_left); btn_right.addEventListener(MouseEvent.CLICK, nudge_right); btn_up.addEventListener(MouseEvent.CLICK, nudge_up); btn_down.addEventListener(MouseEvent.CLICK, nudge_down); function nudge_left(e:MouseEvent):void{ black_circle.x -= 10; } function nudge_right(e:MouseEvent):void{ black_circle.x += 10; } function nudge_up(e:MouseEvent):void{ [...]

Tagged: » »

 » Read the rest

2009-09-28 :: Asgeir // Animation
I am an airplane

The EventListener listens for every time Flash enters a new frame, and executes the function fly, which manipulates the X values of three objects on the stage.

Tagged: » »

 » Read the rest

I’m trying to wrap my head around Flash and basic Actionscript. So far, I have produced this exciting button, which loses 5% alpha for every click, and then restores alpha to 100% when the cursor leaves the button. Getting there!

Tagged: » »

 » Read the rest

2009-09-25 :: Asgeir // Animation + University
Zap! Cola, 3d commercial

The cola commercial (which I’ve mentioned recently) was due this morning, and my endless hours of rendering time were condensed to a 30 second display of glass textured concept-lacking madness. I had only used Cinema 4D once, for a still-frame bottle render, before this, hence the modest detail in the models. Anyway, I’m very happy [...]

Tagged: » » »

1 comment  » Read the rest