Color your Flash album with navigators

Flash Album Jumper - Glay Player
You can add a navigator for your flash album with FLIP Flash Album Deluxe.  So you can click “prev”, “next”, “home”, “end”, “menu” to browse your album.

You can choose more than 8 style jumpers right now.

Flash Album Jumper - Blue Player
Flash Album Jumper - Blue Stars
Flash Album Jumper - Colorful Glass Balls

Flash Album Jumper - MAC OS
Flash Album Jumper - MetalModern
Flash Album Jumper - Red Heart Love
Flash Album Jumper - Rounded Green Player

How to change jumper for my album?Beginner

 You will find “Add jumper buttons for prev, next” option in “Advance Panel“. Change it then preview your album.

Change jumper for Flash Album

In a future time we will add more jumper styles. If you do not like all of jumpers, we can custom build the jumper you need $19 each ( custom it for me ). OR you can create it with Macromedia© Flash 8 by yourself.

How to create my own jumper? Advance

It was quite simple if you knew something about “Macromedia Flash”. Add buttons you like, then you should copy and paste the ActionScripts to the buttons you added.

// Menu Button
on(release)
{
_root.album.gotoPage( 2,true);
}

// Back Button
on(release)
{
_root.album.prevPage();
}

// Next Button
on(release)
{
_root.album.nextPage();
}

// End Button
on(release)
{
_root.album.gotoPage(_root.album.maxpage,true);
}

// Cover Button
on(release)
{
_root.album.gotoPage( 1, true);
}

// Fullscreen Button
on(release)
{
if(jumper.fullscreen)
fscommand( “fullscreen”, “false”);
else
fscommand( “fullscreen”, “true”);
jumper.fullscreen = !jumper.fullscreen;
}

Leave a Reply

You must be logged in to post a comment.