Heyas
I’m building a mock website, and there are 4 songs that need to play. 1 is the main song for most of the pages, but then there are 3 songs that play during their relevant image galleries.
Currently, I’m using this actionscript so that the music loops:
ABC = new Sound (this)
ABC.attachSound(“NI”)
ABC.start(0,99)
Thing is, the music plays on the right page, but it won’t stop playing for the other pages. This is potentially sounding very complicated ^^’ And I’m a bit of a flash noob too. I’ll try to explain like so:
Page 1 = Song 1
Page 2 = Song 1
Page 3 = Song 1
Page 4 = Song 1
Page 5 = Song 2
Page 6 = Song 3
Page 7 = Song 4
So basically, when you go back to page 1 from page 5/6/7, the music needs to change…Help?