FINAL YEAR PROJECT
Wednesday, May 18, 2011
Sunday, May 1, 2011
animations
I have been experiencing problems with my animations, but suddenly i managed to fix quiet a lot of things and a bit relieved to move forward, now the measure thing i am working at is creating audio for my installation.
GARAGE BAND
since i am not very good when it comes to sound creations i decided to use garage band to create audio/ background music for my installation.
The audio that i am creating it varies in terms of tempo, rythm in order to suite different animations for both sad and happy mood, is a challenge for me but i know with hard work i will make the best sounds for this. audio will soon be uploaded
Wednesday, April 20, 2011
CRITIC 2(CODING AND PROGRAMMING)
This is the code that i will be using; so far i have tested it and it works with just few errors that i am trying to fix at the moment. After consulting with the lecturer he advised i use the key presss counters to call out the animations(swf files ) that i created using both after effects and flash.
CODE
var k = new Object(this);
var listen = true;
var r;
var counter = 0;
var t;
t = setInterval(resetcounter, 10000);
function resetcounter(){
counter = 0;
emc.unloadMovie(this);
}
k.onKeyDown = function(){
//if(listen == true){
if(Key.isDown(65)){ //code for A is 65
trace("Key A");
counter++;
emc.loadMovie(counter+".swf");
//listen = false;
}
if(Key.isDown(66)){
trace("Key B");
counter++;
emc.loadMovie(counter+".swf");
//listen = false;
}
if(Key.isDown(67)){
trace("Key C");
counter++;
emc.loadMovie(counter+".swf");
//listen = false;
}
if(Key.isDown(68)){
trace("Key D");
counter++;
emc.loadMovie(counter+".swf");
//listen = false;
}
if(Key.isDown(69)){
trace("Key E");
counter++;
emc.loadMovie(counter+".swf");
//listen = false;
}
if(Key.isDown(70)){
trace("Key F");
counter++;
emc.loadMovie(counter+".swf");
//listen = false;
}
if(Key.isDown(71)){
trace("Key G");
counter++;
emc.loadMovie(counter+".swf");
//listen = false;
}
//}
}
Key.addListener(k);
CODE
var k = new Object(this);
var listen = true;
var r;
var counter = 0;
var t;
t = setInterval(resetcounter, 10000);
function resetcounter(){
counter = 0;
emc.unloadMovie(this);
}
k.onKeyDown = function(){
//if(listen == true){
if(Key.isDown(65)){ //code for A is 65
trace("Key A");
counter++;
emc.loadMovie(counter+".swf");
//listen = false;
}
if(Key.isDown(66)){
trace("Key B");
counter++;
emc.loadMovie(counter+".swf");
//listen = false;
}
if(Key.isDown(67)){
trace("Key C");
counter++;
emc.loadMovie(counter+".swf");
//listen = false;
}
if(Key.isDown(68)){
trace("Key D");
counter++;
emc.loadMovie(counter+".swf");
//listen = false;
}
if(Key.isDown(69)){
trace("Key E");
counter++;
emc.loadMovie(counter+".swf");
//listen = false;
}
if(Key.isDown(70)){
trace("Key F");
counter++;
emc.loadMovie(counter+".swf");
//listen = false;
}
if(Key.isDown(71)){
trace("Key G");
counter++;
emc.loadMovie(counter+".swf");
//listen = false;
}
//}
}
Key.addListener(k);
Subscribe to:
Posts (Atom)