Combined Code
button 7 {
on (release) {
if (_global.Behaviors == null) {
_global.Behaviors = {};
}
if (_global.Behaviors.Sound == null) {
_global.Behaviors.Sound = {};
}
if (typeof this.createEmptyMovieClip == 'undefined') {
this._parent.createEmptyMovieClip('BS_m1', (new Date()).getTime() - Math.floor((new Date()).getTime() / 10000) * 10000);
_global.Behaviors.Sound.m1 = new Sound(this._parent.BS_m1);
} else {
this.createEmptyMovieClip('_m1_', (new Date()).getTime() - Math.floor((new Date()).getTime() / 10000) * 10000);
_global.Behaviors.Sound.m1 = new Sound(this.BS_m1);
}
_global.Behaviors.Sound.m1.attachSound('m1');
_global.Behaviors.Sound.m1.start(0, 1);
}
}
button 10 {
on (release) {
stopAllSounds();
if (_global.Behaviors == null) {
_global.Behaviors = {};
}
if (_global.Behaviors.Sound == null) {
_global.Behaviors.Sound = {};
}
if (typeof this.createEmptyMovieClip == 'undefined') {
this._parent.createEmptyMovieClip('BS_m2', (new Date()).getTime() - Math.floor((new Date()).getTime() / 10000) * 10000);
_global.Behaviors.Sound.m2 = new Sound(this._parent.BS_m2);
} else {
this.createEmptyMovieClip('_m2_', (new Date()).getTime() - Math.floor((new Date()).getTime() / 10000) * 10000);
_global.Behaviors.Sound.m2 = new Sound(this.BS_m2);
}
_global.Behaviors.Sound.m2.attachSound('m2');
_global.Behaviors.Sound.m2.start(0, 1);
}
}
movieClip 13 {
}