View Full Version : Do you guyz want a flash jukebox hack?????
pattox2k1
05-16-2002, 04:42 AM
well it isnt really a hack.......u jus make a template and then edit the file to open the template or copy the template code and put it anywhere in the site (eg: footer) so what do you think?????
I don't want one... but thats no reason not to make one...
pattox2k1
05-16-2002, 06:26 AM
ok ill wait on the poll results
Aslong as it doesnt load any programs from your computer and is only a web side juke box... then yes.
pattox2k1
05-18-2002, 06:31 AM
no it is a flash SWF file with the MP3's built in to it and it loads them from there so it loads them from there but will load slow from the file size.......i can release v1.00 with the songs already built in but they arent that good..........
Xanthine
05-18-2002, 04:51 PM
Can it have some sort of option to add songs? (not usre if thats possible)
I would suggest using php to communicate to the flash juke box to add new songs and on reduce file load.
pattox2k1
05-19-2002, 10:00 AM
well one.....i donno much PHP (gotta start the boo again was on holidays when i started and couldnt test stuff) two, i donno if it is possible and three, the jukebox comes with flash 6.....i jus gonna edit the songs and stuff like that to how i like it.......
SONOFSAM
05-21-2002, 06:21 AM
i think this is whats hes talking about. this is a flash mp3 player from my site.
to view go here: www.clanrk.com and click on the mp3 player on left under quick links. click the playlist to change to another song.
you have to take mp3's and convert them over to a flash file, using swiftmp3, which is very easy to do with a few clicks.
i must warn you, this is something that will eat BANDWITH!!! even when i coded my mp3's at the lowest bitrate possible, the files with fairly big. ranging between 1.4-3.0 mb.
i have a link to my mp3 player on my site as well as on my forums. i have it open in a separate window so the user can continue to look at site while playing it.
pattox2k1
05-22-2002, 06:03 AM
no this is a flash 6 swf that has the MP3's built in i am working out how to edit the songs at the moment.......i know about the bandwidth problem aswell................hey neo maybe you can help me out with making the hack or the script that lets you edit the songs??????
SONOFSAM
05-22-2002, 11:42 PM
how much different is that from what i have?
mine has more then one track on the player...hit playlist. wont it act the same?
what are you trying to edit on the songs?
pattox2k1
05-23-2002, 04:30 AM
i dont know i havent seen urs :p but the code in "flash lingo" to play the songs is:
// initialize variables
whichSound = 1;
playing = false;
looping = false;
//
// create an instance of the Sound object
mySound = new Sound();
//
initialize(1);
function initialize(whichSound) {
mySound.stop();
mySound.loadSound("../sounds/sound"+whichSound+".mp3", false);
newPosition = 0;
playing = false;
input = whichSound;
transport.fader._x = transport.left;
}
//
// previuos and next buttons
next.onPress = function() {
if (whichSound<3) {
whichSound++;
initialize(whichSound);
}
};
back.onPress = function() {
if (whichSound>1) {
whichSound--;
initialize(whichSound);
}
};
//
// when selected sound reaches the end...
mySound.onSoundComplete = function() {
// mysound.stop();
newPosition = mySound.duration/1000;
if (looping) {
mySound.start(0, 1);
} else {
playing = false;
}
};
//
this.onEnterFrame = function() {
// limit input field
if (input>3) {
input = 3;
}
//
// initiate change to new sound when Enter key is pressed
if (Key.isDown(Key.ENTER) && whichSound != input) {
whichSound = input;
initialize(whichSound);
}
};
//
// if a number is entered in the input field but Enter is not pressed, change
// back to current sound number when clicking anywhere else
inputField.onKillFocus = function() {
input = whichSound;
};
what do u think i have to edit??????? i wanna use dis one.......
pattox2k1
05-23-2002, 11:58 PM
ok, well it seems like the poll is over and that majority wants this hack..........i will start working on it and release it within 2 or 3 weeks (got study to do, 1/2 yearlies :( )
vBulletin® v3.8.12 by vBS, Copyright ©2000-2025, vBulletin Solutions Inc.