//the start button on (release) { one1 = new Sound(pic1); two1 = new Sound(pic2); three1 = new Sound(pic3); one1.attachSound("one"); two1.attachSound("two"); three1.attachSound("three"); one1.start(0,99); two1.start(0,99); three1.start(0,99); one1.setVolume(45); two1.setVolume(45); one1.setPan(20); two1.setPan(80); on1._visible = false; off._visible = true; } //button off on (release){ _root.one1.setVolume(0); } //button on on (release){ _root.one1.setVolume(45); }