Ask a Question related to Macromedia Flash Actionscript, Design and Development.
-
Drmres webforumsuser@macromedia.com #1
Slideshow help!
Hi,
I have read through every post I can find regarding automatic slideshows but none have provided any solution. In Flash MX Pro, how do you make a slideshow which pauses between slides using the actual slideshow functions of MX?
As an example, if you open "presentation_finished.fla" which is installed with Flash MX, it has a slide tree on the left. Each slide can be viewed using the navigation buttons in the slideshow itself, but if the buttons were removed and I wanted a 5 second delay between each slide before it automatically plays the next, how is it done?
The code would need to be independant of the number of slides, so it just advances automatically. Surely this can be done by coding into the root slide?
Thanks in advance
Drmres webforumsuser@macromedia.com Guest
-
slideshow
Hi there, a friend of mine sent me an slideshow.exe that can be played in Flashplayer...:)ofcourse.anyway,after i seen the pictures i realized that... -
XML slideshow
I'm trying to simplify a presentation .fla file I inherited. I was able to successfully build a slideshow that functions exactly as the original... -
Portfolio / Slideshow help please
Hi I recently made this site : ww.artnaive.co.uk I am not that happy with the gallery itself - and would like something more like the... -
Pause in slideshow
I 'm making a slideshow and I 've got some pictures with animated behaviors. I want to have a button pause with this behavior: "on mouseDown go to... -
pdf slideshow on web?
Okay, everyone, I haven't used this feature at all, so I need some help here. Someone has been asking me about putting the pdf slideshow on the web.... -
nITiNkIlLeRmEeRuT webforumsuser@macromedia.com #2
Re: Slideshow help!
Hi,
Here is the solution. Just what is happening through buttons you can put that code in a function and call that function after some interval. I have modified the script in the attachment for that.
To change the number of slides just change the value of --totalSlides-- variable.
Cheers
Nitin
[url]http://www.nitinbhardwaj.com[/url]
The reference material attached have copyrights of Macromedia and has been modified only for the solution of this problem.
[url]http://webforums.macromedia.com/attachments/slideShow111.zip[/url]
nITiNkIlLeRmEeRuT webforumsuser@macromedia.com Guest
-
Ed Skwarecki #3
Re: Slideshow help!
Try putting this as an object action of the root presentation slide:
on(reveal) {
advanceSlide = function ()
{
currentSlide.gotoNextSlide();
}
setInterval(advanceSlide, 5000)
}
--
Ed Skwarecki
Principal Architect
eLearning
Macromedia
Ed Skwarecki Guest
-
Drmres webforumsuser@macromedia.com #4
Re: Slideshow help!
on(reveal) {
advanceSlide = function ()
{
currentSlide.gotoNextSlide();
}
setInterval(advanceSlide, 5000)
}
Thanks Ed, that did the trick for playing in Flash. Unfortunately it doesn't work when the the slideshow is embedded (linked) into the Director movie. All slides appear at the same time stacked on top of each other. Any ideas on how to solve this would be appreciated!
Thanks nITiNkIlLeRmEeRuT too, though your suggestion does work, it is a slideshow using external images, not a "Flash Slideshow".
Drmres webforumsuser@macromedia.com Guest
-
Ed Skwarecki #5
Re: Slideshow help!
The Flash Xtra in the currently shipping version of Director & Shockwave only supports
Flash Player version 6. Try changing the publish settings of your Flash movie to export
for Flash 6 and see if that helps.
--
Ed Skwarecki
Principal Architect
eLearning
Macromedia
Ed Skwarecki Guest



Reply With Quote

