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

  1. #1

    Default Next Frame Delay

    I'm very new to all of this so i would be really grateful for any help you can give me!

    Basically, i have a small presentation to make which will run autonomously; it will have various media types, such as image, video and sound footage and will generally run very linear like a slideshow.
    there will be a continuous voiceover running throughout the slideshow which will be split up into lots of little sound clips, and i want to be able to delay the movement from one frame to another by the length of a soundclip/videoclip (ie, when it gets to the end of a soundclip/videoclip, ONLY THEN move to the next frame).

    im sure there is a very basic way of doing this, but unfortunately, im still pretty new to it all :)

    i would appreciate the help!



    Mendietta webforumsuser@macromedia.com Guest

  2. Similar Questions and Discussions

    1. linking on non frame page to a frame in a frame p
      Hello all, I'm doing a job for a friend. Is there a way to load a link from a non-frame page into a frame in a frame based page? Go to:...
    2. Delay in going to next frame
      When I advance from frame 3 to 4 by the step forward button in the control panel, I get an unwanted 10 second delay, consistently. All sprites in...
    3. newbie: jumping from 3d sprite frame to flash frame
      I'm a Flash developer new to Director. I have a 3D world in frame 1 that the user can walk around in and click things. When they click on certain...
    4. My website plays uncontrolled, frame after frame, instead of with buttons
      Hi there, I´ve created a website, which works fine in the flash player, but when it is loaded in a browser it has troubles. Instead of the...
    5. Frame Set Problem: Cannot Resize Frame Rows with Mouse
      Hi, I cannot resize my frame borders with the mouse. I created a Fixed Top, Nested Left Frame set. I added my assets into the top frame, and...
  3. #2

    Default Re: Next Frame Delay

    Tempo channel setting can wait for end of sound/video but be aware it
    effectively puts the user interface responce to sleep while waiting.

    A wait score script is better, will need 2 diferent kinds for sound and
    videos.

    -- here's an untested video wait to give you the idea

    on exitFrame
    if sprite(10).movietime < sprite(10).member.duration then
    go to the frame
    end if
    end
    JB 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