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

  1. #1

    Default Re: volume question

    I should add at this point that the code sound(1).volume = 0 works.

    What I actually should have been asking is, "How do I turn off the sound in
    a QuickTime movie?" I've tried member("quicktime movie").volume = 0 which
    doesn't work, and sprite(3).volume = 0, which also doesn't work.

    I wanted to put this code on a button and am using a mouseUp event to call
    them.

    Any suggestions?

    Thanks
    S

    "Sue" <slott@ix.netcom.com> wrote in message
    news:bfm3l1$kje$1@forums.macromedia.com...
    > Hi people-
    >
    > I'm trying to make a setup screen in which the user can turn the sound for
    a
    > kiosk off. I have all my VO in channel 1 in the score.
    >
    > Lingo Dictionary says sound(1).volume = 0 should turn off the sound
    in
    > that channel. But it doesn't.
    >
    > Does it only turn it off for the frame where this
    code/sprite/button/member
    > is?
    >
    > How do I turn it off for the whole movie?
    >
    > Thanks in advance
    > S
    >
    >

    Sue Guest

  2. Similar Questions and Discussions

    1. Publishing Question proper use of Volume and Issue
      I am working on a series of publications that will come out on a Bi-annual basis, or, maybe annually, I'm not sure yet. I do not know the actual...
    2. How to determine if a volume is a remote volume
      Lorenzo P. Thurman wrote: I'm not 100 percent sure this will help, but it's probably worth a look. FSGetVolumeInfo() will get you an...
    3. System Volume Information- A Question
      My hard drive is partitioned into 4 drives. Each one has a file on it called "System Volume Information". There must be something wrong with one...
    4. when volume changes a beep sounds at the new volume
      A beep sounds every time a change the volume. I have turned off all the windows sounds in control pannel -> Sounds. I've looked in every other...
    5. Volume Group Migration Question
      Hello all, We have a p6000 e server running AIX 5.1.0.0 patch 5100-03. We have a large Volume Group consisting of multiple smaller logical volumes...
  3. #2

    Default Re: volume question

    goto to the properties for the quickTIme movie in your cast and you can
    untick the boxes which should be

    image, audio, loop, DTS (direct to stage), paused at start

    sprite(2).audio = FALSE
    member("whatever").audio = FALSE

    try that... if audio doesn't work try

    sprite(2).sound = FALSE

    audio is suppose to be Real Media specific... but sometimes stuff like that
    works on other media!



    "Sue" <slott@ix.netcom.com> wrote in message
    news:bfm57c$nla$1@forums.macromedia.com...
    > I should add at this point that the code sound(1).volume = 0 works.
    >
    > What I actually should have been asking is, "How do I turn off the sound
    in
    > a QuickTime movie?" I've tried member("quicktime movie").volume = 0
    which
    > doesn't work, and sprite(3).volume = 0, which also doesn't work.
    >
    > I wanted to put this code on a button and am using a mouseUp event to call
    > them.
    >
    > Any suggestions?
    >
    > Thanks
    > S
    >
    > "Sue" <slott@ix.netcom.com> wrote in message
    > news:bfm3l1$kje$1@forums.macromedia.com...
    > > Hi people-
    > >
    > > I'm trying to make a setup screen in which the user can turn the sound
    for
    > a
    > > kiosk off. I have all my VO in channel 1 in the score.
    > >
    > > Lingo Dictionary says sound(1).volume = 0 should turn off the
    sound
    > in
    > > that channel. But it doesn't.
    > >
    > > Does it only turn it off for the frame where this
    > code/sprite/button/member
    > > is?
    > >
    > > How do I turn it off for the whole movie?
    > >
    > > Thanks in advance
    > > S
    > >
    > >
    >
    >

    Andrew Kennedy Guest

  4. #3

    Default Re: volume question

    sound off and on... easy..

    set the soundLevel to 0 (min)

    set the soundLevel to 7 (max)

    this kills all sound...

    "Sue" <slott@ix.netcom.com> wrote in message
    news:bfm3l1$kje$1@forums.macromedia.com...
    > Hi people-
    >
    > I'm trying to make a setup screen in which the user can turn the sound for
    a
    > kiosk off. I have all my VO in channel 1 in the score.
    >
    > Lingo Dictionary says sound(1).volume = 0 should turn off the sound
    in
    > that channel. But it doesn't.
    >
    > Does it only turn it off for the frame where this
    code/sprite/button/member
    > is?
    >
    > How do I turn it off for the whole movie?
    >
    > Thanks in advance
    > S
    >
    >

    Andrew Kennedy 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