Making a Slideshow
Document ID: IR10049The information in this article applies to:
- AutoPlay Media Studio 5.0 Professional Edition
SUMMARY
This article describes how to make a slideshow
DISCUSSION
The purpose of a slideshow is to display images at a predetermined rate. In AutoPlay Media studio 5.0, this is accomplished by creating a project with one page per image you wish to display.
- On every page in your project, create one image object containing the appropriate image.
- Create the following action in the On Show event of every page in your project:
Page.StartTimer(5000); --fires the timer once every 5 seconds.
- Create the following action in the On Timer event of every page in your project:
Page.Navigate(PAGE_NEXT);
The only page that does not have this action is the last page, because there are no more pages to jump to.
- Create the following action in the On Show event of your last page:
Page.StopTimer(); --stops the timer
The On Timer and On Show events are found by right-clicking on a blank space on the page and choosing Actions.
MORE INFORMATION
For more information please see the following topics in the AutoPlay Media Studio 5.0 help file:
- Program Reference | Actions | Page | Page.StartTimer
- Program Reference | Actions | Page | Page.StartTimer
- Program Reference | Actions | Page | Page.Navigate
KEYWORDS: AutoPlay Media Studio 5.0, Actions, Page, Jump, Slideshow
Last reviewed: September 26, 2003
Copyright © 2003 Indigo Rose Corporation. All rights reserved.
Comment