I created a flash slideshow (slide presentation), and I want user to choose which slides to show.
The first frame of the movie shows images of all the slides (like a thumbnail viewer) then user can select say frames 1,5,34,56 (tick box on frame) and assign a number to each for the order of the slideshow, and then they press play and it shows the slideshow in that order.
Is this possible?
I got some ideas so far, but do not know how to implement them:
"If you create a new array which is empty at the beginning, you can give each image/button a value so that when the user selects the image, this variable can be pushed in to the array using the arrayName.push command.
Once all the images have been selected, try using a loop to go through the array displaying each number for a set amount of time, before going on to the next one"
"setInterval would be the best for this idea "
Cheers
Kathy
The first frame of the movie shows images of all the slides (like a thumbnail viewer) then user can select say frames 1,5,34,56 (tick box on frame) and assign a number to each for the order of the slideshow, and then they press play and it shows the slideshow in that order.
Is this possible?
I got some ideas so far, but do not know how to implement them:
"If you create a new array which is empty at the beginning, you can give each image/button a value so that when the user selects the image, this variable can be pushed in to the array using the arrayName.push command.
Once all the images have been selected, try using a loop to go through the array displaying each number for a set amount of time, before going on to the next one"
"setInterval would be the best for this idea "
Cheers
Kathy