Tag Archives: experiment

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

Synesthesia | Installation- converting sound to shape and color

synesthesia 1. A condition in which one type of stimulation evokes the sensation of another, as when the hearing of a sound produces the visualization of a color. Installation. May 2005 I had a microphone feed into the computer and audio from the room changed the display. I displayed a circle related to the voice of the room [...]
Posted in portfolio | Also tagged , , , , | 1 Comment

Circle Cube

Circle cube graphic pushing colors. Thinking of the design as shapes in a stained glass window. ARST4810 CAD Fab class exhibition. My Shattered Little World Slide, Circle cube Published in the Flagpole, April 4th 2007: Rhinoceros Makes Art: Students in Michael Oliveri’s Computer Aided Design and Fabrication class at UGA are exhibiting their work in the Thomas Street Gallery. Using [...]
Posted in portfolio | Also tagged , , , , , | Leave a comment

Ice Ballet

Music Video made for Mark o’Conner’s appalachain waltz music. Ice Ballet, is the mash-up name for it. Sped up and put to music, melting ice seems to dance… See for yourself!
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