Slide show with Lingo

Ask a Question related to Macromedia Director Lingo, Design and Development.

  1. #1

    Default Slide show with Lingo

    I am producing a linear presentation that requires me to display a series of images or slide shows throughout various sections of the presenation.
    There may be 10 images or there may 100 images depending on the section. Once the final image in each section has been reached I require the presention to conrinue on it's linear course.
    Can any one offer any help as to how I can achieve this with Lingo??

    Many kind regards
    Dave



    frasier13 webforumsuser@macromedia.com Guest

  2. Similar Questions and Discussions

    1. Me Again. Need help on slide show
      I want to insert a slide show into my web site, but when I do and preview it, it is static. Any help would be appreciated
    2. Slide Show
      Using the automation feature in Photoshop 7.0, can you make a slide show that can be emailed out and played on any computer?
    3. please, help me with a slide show
      I copied-pasted frames into the movie clip, first movie and the movie clip are the same size
    4. PDF Slide Show
      Photoshop elements can create a PDF slide show. Is there an equivalent function available for Photoshop 7?
    5. Slide show on DVD
      Any recommendations for software to make slide shows from digital or scanned photos on DVD ? Bendik
  3. #2

    Default Re: Slide show with Lingo

    you can embedd multiple movies in a projector so they run in
    sequence,that's an approach I never used.

    with a series of external director files, each with 10 to 100 images,
    you can have a go to movie command in the last frame of each movie.

    Either hard code the next movie name in the script, or lookup the next
    movie in a global play list variable.


    on exitframe -- simple
    go to movie "theoneafterme"
    end




    ---setting up list at initial movie start

    global playlist, currentMovieNum
    currentMovieNum = 0
    playlist = ["fisrtone", "anotherfile", "finalmovie"]



    on exitframe -- last frame script using list
    global playlist, currentMovieNum
    currentMovieNum = currentMovieNum + 1
    go to movie playlist[currentMovieNum]
    go to movie "theoneafterme"
    end
    JB Guest

  4. #3

    Default Re: Slide show with Lingo

    Hi Dave

    The best method for a slide show, is to have a single Bitmap member in the
    cast and swap them on run-time, I have made many presentations like this and
    works awesome!

    If you do not know the number of images, use FileXtra / Buddy API to get the
    FileList from the Image Folder.. then take the count of that list .. once
    you reach the end, reset the counter and loop through.

    More to it .. use Cool DM / MM effects for transition!

    I like it!
    Kart


    "frasier13" <webforumsuser@macromedia.com> wrote in message
    news:bj7ign$jnu$1@forums.macromedia.com...
    > I am producing a linear presentation that requires me to display a series
    of images or slide shows throughout various sections of the presenation.
    > There may be 10 images or there may 100 images depending on the section.
    Once the final image in each section has been reached I require the
    presention to conrinue on it's linear course.
    > Can any one offer any help as to how I can achieve this with Lingo??
    >
    > Many kind regards
    > Dave
    >
    >

    Creative Acceleration Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139