Yeah, art and programming/electro things are hard to combine I guess

Looking at similar topics and
http://www.arduino.cc/cgi-bin/yabb2/YaBB.pl?num=1218303858/3#3 looks quite similar to what i want.
Another sollution that i'm thinking of is :
int rawcount1, rawcount2, rawcount3;
int THRESHOLD = 100;
void setup()
{
Serial.begin(9600);
}
void loop()
{
rawcount1 = analogRead(0);
if( rawcount1 > THRESHOLD ) {
Serial.print (rawcount1);
Serial.print (", ");
}
rawcount2 = analogRead(1);
if( rawcount2 > THRESHOLD ) {
Serial.print (rawcount2);
Serial.print (", ");
}
rawcount3 = analogRead(2);
if( rawcount3 > THRESHOLD ) {
Serial.print (rawcount1);
Serial.print (", ");
}
// delay(500);
}
Anyone care to help a noob with coding? or a push in the right way.
cheers