My site

I think I’m finally done… check it out:

http://web.mit.edu/lavaboy/www

thanks, tell me what you think

hey ive seenyou site before… where… flashkit.com?
anyway the popup is cool :slight_smile:

hey man… that’s a cool footer. And I’ve only posted my site here.

hey lavaboy? how did you make your music player on your site. i searched flashkit for the fla and i could not find it. if you can, can you point me in the right direction on where i can find the fla.

thanks

P.S- i really like your flash site.:beam:

well, I just reused old swfs that I had. My first site was html, and I didnt want to put MP3s on a school server, so I stuck the mp3s in a flash movie and I streamed them. With my music player, all I’m doing is loading an external swf into an empty movie clip ( I called it music play… and the code looks like this.

musicplay.loadMovie(playlist[current]);
//where playlist is an array and [current] is a variable with url text
//like 'music/youneverknow.swf'

the play/pause button has this code

on (release) {
	switch (playing) {
	case 1 :
		musicplay.stop();
		playcolor.setRGB(white);
		playing = 0;
		break;
	case 0 :
		musicplay.play();
		playcolor.setRGB(green);		
		playing = 1;
		break;
	}
}

And the next button would be this…

musicplay.loadMovie(playlist[current++]);

But it’s really a bunch of elements thrown together… it’s not like my music player is a single object in my movie. If you have more questions, I can go into detail. I hope this helps.

wow, im confused. lol

this is to advanced for me. i will just try to find one on flashkit. but thanks for your help<:}