Symbol 6 Button
on (press) {
if (_global.Behaviors == null) {
_global.Behaviors = {};
}
if (_global.Behaviors.Sound == null) {
_global.Behaviors.Sound = {};
}
if (typeof(this.createEmptyMovieClip) == "undefined") {
this._parent.createEmptyMovieClip("BS_audiobook", new Date().getTime() - (Math.floor(new Date().getTime() / 10000) * 10000));
_global.Behaviors.Sound.audiobook = new Sound(this._parent.BS_audiobook);
} else {
this.createEmptyMovieClip("_audiobook_", new Date().getTime() - (Math.floor(new Date().getTime() / 10000) * 10000));
_global.Behaviors.Sound.audiobook = new Sound(this.BS_audiobook);
}
_global.Behaviors.Sound.audiobook.attachSound("audiobook.mp3");
_global.Behaviors.Sound.audiobook.start(0, 1);
}