Search  

MOVE THE PREV NEXT PLAY BUTTONS IN ZOOM SLIDESHOW

HomeForumsHelp NeededMove the prev next play buttons in Zoom Slideshow
Default-profile cybersoup
1 post
Bought between 1 and 9 items

Is it possible to easily move the buttons (prev, next, play/pause) in the Zoom Slideshow? http://www.flashden.net/item/strongzoomstrong-slideshow-banner-rotator/13523

Posted about 1 month ago
67126 SaafiDesign
1582 posts
Exclusive author Item was featured Author was featured Referred at least one person Reviewer Sold between 50 000 and 100 000 dollars Bought between 1 and 9 items

You can set the x and y positions of the next/prev buttons inside the addNavigation function and for the play/pause button inside the onSlideLoadingComplete function.

For example to move the whole navigation to top right corner first in onSlideLoadingComplete function we would change the following line:

nextMC._y = Stage.height - nextMC._height - 5;

to

nextMC._y = nextMC._height - 5;

and

prevMC._y = Stage.height - prevMC._height - 5;

to:

prevMC._y = prevMC._height - 5;

and then inside the onSlideLoadingComplete function we will change the following line:

playPauseMC._y = Stage.height - playPauseMC._height - 5;

to

playPauseMC._y = playPauseMC._height - 5;

save the file and test.

Similarly to align to left corners you will have to play with the x values :)

Posted about 1 month ago