Schlagwort: random

  • Brownian Motion (Reloaded)

    Brownian Motion (Reloaded)

    Foreword: Processing is a flexible software sketchbook and a language for learning how to code within the context of the visual arts. In this workshop you’ll make your first steps! I took part in an online course about „Creative Coding“ – I’ll share lessons learned and assist your first steps. Install Processing beforehand. We want…

  • Find the Chameleon: Modes #1 #2 #3 #4

    Find the Chameleon: Modes #1 #2 #3 #4

    I guess you could call it „digital conceptual blatant art“ (DCBA). I’ve taken a picture of a chameleon and subjected it to four pixel based operations (modes) and sorted them in rising file size / randomness: Don’t worry if you do not find the chameleon in modes #1, #3 and #4 but once you’ve found…

  • Process 0 #0793

    Process 0 #0793

    This week I imagined the day when computers create art to awe other computers, I wondered how much randomness one can add before chaos takes over, and, finally, I found an application for exp() 😉 I like the notion of creativity as a social and cultural activity – brains as synapses of a much bigger…

  • Randomized Signature Block

    Randomized Signature Block

    For years I updated the signature for my email client manually – until I got fed up… That’s why I wrote a script to create a randomized signature block automatically from an RSS feed! Check it out 😀 In this workshop you’ll customize the script for your needs! In my setting I use Linux and…

  • Slide to Random Position on Mouse rollOver

    Clip | Source ActionScript onClipEvent (load) {   var intStageSizeX = 300;   var intStageSizeY = 300;   var fltRandomX;   var fltRandomY;   this.onRollOver = function() {     do {       fltRandomX = Math.random()*(intStageSizeX-this._width)                    +this._width/2;       fltRandomY = Math.random()*(intStageSizeY-this._height)                    +this._height/2;     } while (Math.abs(fltRandomX-this._x) < 2*this._width ||              Math.abs(fltRandomY-this._y) < 2*this._height);     this.onEnterFrame = function() {       var fltDeltaX = (fltRandomX-this._x)/4;       var fltDeltaY = (fltRandomY-this._y)/4;       this._x…

  • Random Button Functions

    Clip | Source

  • GetRandomFileName

    Clip | Source

  • Duplicate and Randomly Distribute Clip

    Clip | Source Some help from Macromedia. How to Use the Clip? Create an empty movie clip: Insert > New Symbol > MovieClip Name it clipRandom. Place it on the layer you want it (e.g. at the bottom). Add the ActionScript in the first frame of the main timeline: clipRandom.loadMovie(„duplicate-and-randomly-distribute-clip.swf“); This is all – you…