Home Contact RSS

Archive for April, 2007

Circlecube @ Del.icio.us

Circlecube on the social bookmarking site Delicious!
Circlecube @ Del.icio.us

Here’s my list of bookmark’s if you’re interested, mostly flash/art/code related stuff:

And my delicous tags:

Tags:

Evan Mullins on Facebook


The social network
Facebook

Tags:

Exit Poster

Poster for my BFA Digital Media Exit show

exit poster

Exit 2007
Digital Media
The University of Georgia
Lamar Dodd School of Art
Visual Arts Building
285 South Jackson Street
Athens Georgia 30602

May 4th through May 10th
Opening Reception May 4th 7:00 -9:00
Performance at 8:00

Evan Mullins
Lauren Macdonald

Tags: ,

Exit Card

Here’s my card I made for my graduation BFA Exit Show. For the show I’ve made a game called “iKill”

exit Card

Digital Media
Exit 2007

Evan Mullins

May 4th through May 10th
Opening Reception May 4th 7:00 -9:00

The University of Georgia
Lamar Dodd School of Art
Visual Arts Building
285 South Jackson Street
Athens Georgia 30602

Tags: ,

Dynamic Scrolling Buttons

(Either JavaScript is not active or you are using an old version of Adobe Flash Player. Please install the newest Flash Player.)
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 me know what you make with it.

  1. onClipEvent(load) {
  2. //variables
  3. scrollMovieClipW = this._width - Stage.width;
  4. leftScrollMargin = 175;
  5. rightScrollMargin = 275;
  6. verticalScrollMargin = 250;
  7. //Note: The lower acceleration value the faster the scroll will be.
  8. acceleration = 3;
  9. }
  10.  
  11. onClipEvent (enterFrame) {
  12. //to move left
  13. //if mouse is right of 0 (left edge)
  14. if (_root._xmouse >= 0 &&
  15. //if mouse is left of left scroll margin
  16. _root._xmouse <= leftScrollMargin &&
  17. //if mouse is vertically below green line (over the scroll movie clip)
  18. _root._ymouse >= verticalScrollMargin &&
  19. //if the scroll movie clip can still scroll further
  20. _root.scroll._x <= 0) {
  21. this._x -= (_root._xmouse - leftScrollMargin) / acceleration;
  22. }
  23.  
  24. //to move right
  25. else if (_root._xmouse >= rightScrollMargin &&
  26. _root._xmouse <= Stage.width &&
  27. _root._ymouse >= verticalScrollMargin &&
  28. _root.scroll._x >= -scrollMovieClipW) {
  29. //move right
  30. this._x -= (_root._xmouse - rightScrollMargin) / acceleration;
  31. }
  32. }

download the source.

Tags: , , , , , , ,

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 (pitch relates to size, and volume relates to color). As the viewer/participant speaks or sings or yells they see their voice transformed into colorful movements of varying size. The louder the sound- the colors of these forms brightened. In the background I had a sweeping cascade of colored lines. These would take control if there was no noise in the space.
I plan on making the display available online using personal mics from viewers computers to animate it. Ideally I would want multiple users to be able to log on and effect the animation collectively. Each input will generate shapes.

Here is a captured video feed.
(Either JavaScript is not active or you are using an old version of Adobe Flash Player. Please install the newest Flash Player.)

Tags: , , , , ,