Flash Jukebox

Attention!!

Since Adobe no longer supports Flash Player after December 31, 2020 and blocked Flash content from running in Flash Player beginning January 12, 2021. If you would like to test out/view this item you can run it on your machine locally by installing the Flash Player projector content debugger available here. Once done click the button to copy the swf url to load into your player.

Video Example

The Action Script

stop();
one_btn.onRelease = function() {
song01.unloadMovie();
song01.loadMovie("stray.swf");
};
two_btn.onRelease = function() {
song01.unloadMovie();
song01.loadMovie("requiem.swf");
};
three_btn.onRelease = function() {
song01.unloadMovie();
song01.loadMovie("coracao_selvagem.swf");
};
four_btn.onRelease = function() {
song01.unloadMovie();
song01.loadMovie("renga.swf");
};
five_btn.onRelease = function() {
song01.unloadMovie();
song01.loadMovie("pilgrim_snow.swf");
};
six_btn.onRelease = function() {
song01.unloadMovie();
song01.loadMovie("leaving_on_red_hill.swf");
};
seven_btn.onRelease = function() {
song01.unloadMovie();
song01.loadMovie("Shiro.swf");
};
eight_btn.onRelease = function() {
song01.unloadMovie();
song01.loadMovie("dogs_and_angles.swf");
};
nine_btn.onRelease = function() {
song01.unloadMovie();
song01.loadMovie("stranger.swf");
};
ten_btn.onRelease = function() {
song01.unloadMovie();
song01.loadMovie("sleeping_wolves.swf");
};
eleven_btn.onRelease = function() {
song01.unloadMovie();
song01.loadMovie("tip_toe_waltz.swf");
};
twelve_btn.onRelease = function() {
song01.unloadMovie();
song01.loadMovie("my_little_flowers.swf");
};
thirteen_btn.onRelease = function() {
song01.unloadMovie();
song01.loadMovie("could_you_bite_the_hand.swf");
};
fourteen_btn.onRelease = function() {
song01.unloadMovie();
song01.loadMovie("valse_de_la_lune.swf");
};
fifthteen_btn.onRelease = function() {
song01.unloadMovie();
song01.loadMovie("hot_dog_wolf.swf");
};
sixteen_btn.onRelease = function() {
song01.unloadMovie();
song01.loadMovie("silver_river.swf");
};
seventeen_btn.onRelease = function() {
song01.unloadMovie();
song01.loadMovie("sold_your_soul.swf");
};
eightteen_btn.onRelease = function() {
song01.unloadMovie();
song01.loadMovie("vision_of_a_flame.swf");
};
nineteen_btn.onRelease = function() {
song01.unloadMovie();
song01.loadMovie("run_wolf_warrior_run.swf");
};
twenty_btn.onRelease = function() {
song01.unloadMovie();
song01.loadMovie("gravity.swf");
};
eject_btn.onRelease = function(){
song01.unloadMovie();
};
stop_btn.onRelease = function() {
song01.stop();
};
play_btn.onRelease = function() {
song01.play();
};