does anyone know how to put music in your sig
Printable View
does anyone know how to put music in your sig
No clue, but dont do it here anyways :P
Itll lag it so much
I'm pretty sure people use Flash to do it. I don't know any of the details on how to do it seeing how I don't know crap about flash but thats how I've always heard of it being done. I'm sure it would be pretty easy to find a tut or something for it though.
I did some flash a long time ago, never got seriously into the actionscript. Anyway, yes you would use flash for it. I'm not sure how youd go about it, being that it's been so long (and that the newer versions are too different anyway), but youd enter the proper actionscript commands etc. then use the .swf as your signature.
I do it using Swishmax.
Here's one I made earlier (might take a little while to load.. they are pretty big files):
http://img178.imageshack.us/my.php?image=t...f&width=320
Here's an animated one I made for a girl in my clan:
http://img201.imageshack.us/my.php?image=r...f&width=320
BTW the image quality is bad because you set the height and width when you embed them to your webpage. Since I can't do that on here (AFAIK CX doesn't support flash files) I am limited to a couple of imageshack preset sizes which stretch the images.
You basically need to create two scenes in swishmax and script scene 1 to perform:
And then script scene 2 to perform:Code:onFrame (1) {
****stop();
****stopAllSounds();
}
on (rollOut) {
****stop();
****stopAllSounds();
}
on (rollOver) {
****_root.gotoAndPlay(1);
****stopAllSounds();
}
The rest is pretty intuitive.. you should be able to work it out no problem if you have a copy of swishmax open. For animations it's alittle more complicated so I'm not even going into that.Code:on (rollOut) {
****prevSceneAndStop();
****stopSound("your.mp3");
}
on (rollOver) {
****stop();
****playSound("your.mp3");
}
I did this a long time ago. You will be creating pause/play buttons; all done in flash.
http://www.runescapecommunity.com/in...owtopic=269102