Tag Archives: flash

iKill Game

My BFA exit project. I made this flash game. Long story short, you pick fruit, sell it and buy happy meals. See if you can reach the top scores! Go here to play iKill Check out the documentation blog DigMeExit to see the game develop over the semester and even play older version of the game.
Posted in portfolio | Also tagged , , , , , , , | Leave a comment

I Heart Net Art | net.Art Exhibit

Class exhibition of net art. ARST3800 Net Art Studio Fall 2005. Mark Callahan @ Digital Media @ Lamar Dodd School of Art @ The University Of Georgia Net Art Studio examines the current state of artistic practice on the Internet and facilitates the production of new works for networked audiences. The course consists of concurrent [...]
Posted in portfolio | Also tagged , , , , , , | Leave a comment

Dynamic Scrolling Buttons

Here’s an example. A dynamic scroll, that changes speed according to your mouse. Here is the code for it as well, I tried to keep it pretty generic, just put this onto a movie clip I named “scroll.” And change the variables to fit your needs. Enjoy, and let [...]
Posted in portfolio, tutorial | Also tagged , , , , , , | 13 Comments

Evanrude Website

Here’s my first portfolio website, from the archive in 2004. Some of the links are broken, but you get the idea. I made an interactive flash version and an html version with frames in dreamweaver. Evanrude link
Posted in portfolio | Also tagged , , , , , , | Leave a comment

Circlecube HTML website

Circlecube HTML Website link. Portfolio site done with simple HTML. very plain, clean look.
Posted in portfolio | Also tagged , , , , , , | Leave a comment

Gravity

A variation of the gravity with throwable ball experiment. It has optional gravity. Click the ball to drag and release to drop or throw it. Press the space bar to add more balls (up to 30). Press the down arrow to turn gravity off, and pres the up arrow to turn it back on. You can make some [...]
Posted in portfolio | Also tagged , , , , | Leave a comment

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