Ultimate Gear War
Join the alien war, prepare your gear and protect your base at all cost!
4.23 / 5.00 13,987 Viewsim making this slide show on some halo characters im drawing for a big project i'm working on "It's a Halo Thing" Trilogy. and in the slide show i would like to have 3 buttons, on button that plays one looping song when you click, another buttn that plays another song that loops. and then a mute button. it's real simple. not much work needed no doubt, would like to know the coding and tuff, it would be much easier for me, and maybe for the one that chooses to participate in assisting me, if i just send the .fla file with the prepared buttons and then you just place in the coding... simply because i really have such limited knowlege on AS. and i would most likely complicates thing more than makeing them easier.
so if you're reading and decide to cooperate, it would also be an advantage commuication -wise to talk over this on MSN messenger (my email is on my NG profile). but if email works close enough hen i guess i'll be ok with that too.
i'd much appreciate your help, and you will be credited with what you do.
-thanks
Ok, you need to know a little about linkages to carry out some of the following codes:
Your mute button code:
on (press, release) {
stopAllSounds();
}
On your first music button:
on(press) {
track1 = new Sound(this);
track1.attachSound("sound1");
track1.start(0, 3);
}
On your second music button:
on(press) {
track2 = new Sound(this);
track2.attachSound("sound2");
track2.start(0, 3);
}
thanks
thats ll i need :)