PDA

View Full Version : my site



lava
February 22nd, 2003, 07:47 PM
I think I'm finally done... check it out:

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

thanks, tell me what you think

Rockstar
February 22nd, 2003, 08:39 PM
hey ive seenyou site before.. where.. flashkit.com?
anyway the popup is cool :)

lava
February 23rd, 2003, 12:26 AM
hey man... that's a cool footer. And I've only posted my site here.

Alex
February 23rd, 2003, 12:35 AM
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:

lava
February 23rd, 2003, 01:23 AM
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.

Alex
February 23rd, 2003, 01:26 AM
wow, im confused. lol

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