Tag Archives: actionscript

Drag Line

Actionscript exercise with a line connecting movable movieClips. Flash Example
actionscript 1234567891011121314151617// get x and y coordinates of the circles var ax = _root.point1._x; var ay = _root.point1._y; var bx = _root.point2._x; var by = _root.point2._y; var cx = _root.point3._x; var cy = _root.point3._y; // draw line between them _root.createEmptyMovieClip ("line", 0); with (_root.line){   lineStyle (1, 0x999999, 100);   moveTo (ax, ay);   [...]
Posted in portfolio | Also tagged , , , , | Leave a comment

Multiple Targets

An actionscript exercise. Trying to get a movie clip to go to the closest dynamically created target. Click the button to make more targets. Dragable targets. Move the targets around to see the ball’s target change. Example
actionscript Here’s the actioscript for the little ball: 123456789101112131415161718192021222324252627282930313233343536373839404142434445onClipEvent (load) {   //random [...]
Posted in portfolio, tutorial | Also tagged , , , , | Leave a comment

Mothorax

A website with an alternative navigation philosophy. The site is a game you must “play” in order to see the content. Use the arrow keys to move around.
Posted in portfolio | Also tagged , , , , | Leave a comment

Weather Forcast

Forecast for your zip code, like the real meteorologists do it! Guessing!
Posted in portfolio | Also tagged , , | Leave a comment

Error

A little prank. No worries!
Posted in portfolio | Also tagged , , , | Leave a comment

3D Walls

A navigation idea creating a navigatable 3D space. Mouse over the walls to either side.
Posted in portfolio | Also tagged , , , , | Leave a comment

Dice

Little flash experiment to play with responsiveness.
Posted in portfolio | Also tagged , , , | Leave a comment

Crowded Faces

More faces in the crowd and more of a crowd. Click the center target button to restart, if you can.
Posted in portfolio | Also tagged , , , | Leave a comment