button functionallity not working with "wait for cue point" in tempo

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

  1. #1

    Default button functionallity not working with "wait for cue point" in tempo

    I am creating a CD-ROM presentation for a client with a slides and audio tracks. There are 42 slides each with there own audio track. There are buttons to go from slide to slide, forward and back. The buttons have a rollover, "go to" script and a cursor change function attached. I have a "wait for cue point" in the tempo channel to wait for the "{end}" cue point after the audio file is finished, then it goes to the next slide. When I attach this function to the tempo channel, the rollover and "go to" scripts dont work, but the cursor change does.
    Has anyone seen this problem, and if so, how did you fix it?
    Is there a way to use a custom script to perform the same thing, without using the tempo channel?

    Please Help!


    Crainford Guest

  2. Similar Questions and Discussions

    1. Text as paths, when below 32 point, "l" and"-" become strokes not boxes
      Acrobat Distiller 7.0 using Freehand MX When text is converted to paths before distilling, straight characters such as "l" and "-" become a...
    2. "wait for cue point" stops everything...need alt.
      I am using "Wait for cue point" in "Frame properties" to pause the timeline while a sound finishes, but all the actions on the timeline stop whilst...
    3. "Submit" button quit working!
      I designed our website (www.equinedentistryschool.com) in MS Publisher 2000. I have NO instructions at all and fumbled through with the wizard and...
    4. I'm trying to emulate in Lingo the "Wait for Cue Point" command.
      attach this to your sprite. It gives a 1/10 second leway at the end of the movie. I find that for some reason, mostly with mpeg files, sometimes...
    5. "Null Event" Session Wait - hung Sessions
      Originally posted by Martin -- Posted via http://dbforums.com
  3. #2

    Default Re: button functionallity not working with "wait for cue point" in tempo

    Yea, any of the tempo channel settings 'put the processor to sleep' it's
    better to use a score script to replace the tempo channel function,
    here's a quick one that might work. (done from memory hope prop names
    are right) put your



    on exitFrame
    if sound(1).currentTime < sound(1).member.duration then
    go to the frame -- loop here until done
    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