Document.png Please expand this article or section. You can help by adding more information if you are an editor. More information might be found in a section of the talk page. (August 2018)
DocumentInQuestion.png It has been suggested that this page's contents be merged with the page How to Create a Slideshow. You can discuss this on the page's talk page. (January 2019)

Slideshows are projects that display a series of slides one after the other, commonly changing slides on a certain key press. Slideshows are usually used to explain a subject the creator wants to talk about, or a skill the creator wants to teach.

Common Uses

  • Explain a subject
  • Teach a skill
  • Express a view
  • Introduce oneself

Quick Method

This is a quick method to make a simple slideshow using the stage. Each backdrop of the stage will be one slide and the slides will advance when Space is pressed. One can put this script into the backdrop scripts area:

when gf clicked
switch backdrop to (slide 1 v) //reset
clear graphic effects
forever
  wait until <key (space v) pressed?> //only change slides on space pressed
  repeat (20)
    change [brightness v] effect by (5)
  end
  next backdrop //change backdrops while completely white, hiding the cut
  repeat (20)
    change [brightness v] effect by (-5)
  end
end

Using Graphic Effects

Frequently (including in the above example), Graphic Effects are employed as transitions between slides, to hide the jump-cut between slides or to enhance the experience. The only disadvantage of graphic effects is that they need to be cleared before the slideshow, but this is a minor qualm and does not make the creation process difficult.

Examples

See Also

Cookies help us deliver our services. By using our services, you agree to our use of cookies.