how control the sound within going to movie?

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

  1. #1

    Default how control the sound within going to movie?

    --in a.dir, i use:
    sound(1).play(member("bgsound"))
    --when i
    go to movie "b"
    --then it jump to b.dir, b.dir also has the member("bgSound"), and the sound
    continues; in b.dir, i use:
    put sound(1).isbusy() ----1
    put sound(1).status ----0 why???
    put sound(1).member -----<void> ????

    sound(1).pause() -----the sound stop, i want to pause it
    sound(1).play() -----nothing, it does not play or continue!

    -----so it's a bug????
    -----and how, if i want to continue the sound and could control it like
    pause() or play() in another movie??
    -----do NOT use MIAW, there is a bug in puppetsound. and NO break during
    going to movie
    -----thank you!


    emicky Guest

  2. Similar Questions and Discussions

    1. Sound Movie Clips
      We have a main movie clip that has inside several movie clips that are buttons that should trigger a sound. How do we get the others to stop to...
    2. control main movie from inside a movie clip
      this has probably been discussed already but i couldn't find it, heck I may have already asked it. I have a movie clip with a button in it, when the...
    3. Sound Generation/Control - Advanced Sound ...
      does anybody know a way to get Director MX to generate it's own audio ... I know it can be done in visual basic, but I want to learn how to do it in...
    4. Detecting sound in a QT movie
      Hello I'm trying to make the audio in track 1 (of my Dir movie) go silent if there is a movie playing in Channel 19 that has audio. If the movie...
    5. play, pause and control sound on avi movie
      you will basically need 3 commands with different settings for all the controllers. sprite(1).movietime=0 -- reads (put sprite(1).movietime or...
  3. #2

    Default Re: how control the sound within going to movie?

    When you start to play a sound file, that file is put into memory and
    begins to play. Normally, you can control that sound file in any of a
    number of ways. Most of these methods reference the cast member that
    holds that sound file.

    If you start a sound file playing and then change movies, the Director
    session is still running, and so anything that was in memory from the
    first movie and is still in use, will remain. However, the reference to
    that sound file is now gone. Member "X" of movie "Y", is no longer
    available, and so you can only stop the sound.

    I don't think that this is a bug, but a fact of life. If you want to
    continue to control the sound file then you will have to use a method
    that will work. The most common is to create a MIAW and run the sound
    file from there.

    --
    Rob
    _______
    Rob Dillon
    Team Macromedia
    [url]http://www.ddg-designs.com[/url]
    412-243-9119

    [url]http://www.macromedia.com/software/trial/[/url]
    Rob Dillon Guest

  4. #3

    Default Re: how control the sound within going to movie?

    but, use MIAW, when i forget one window, the puppetsound in the main stage stop by itself. ???
    emicky Guest

  5. #4

    Default Re: how control the sound within going to movie?

    It shouldn't stop unless you run out of memory.

    --
    Rob
    _______
    Rob Dillon
    Team Macromedia
    [url]http://www.ddg-designs.com[/url]
    412-243-9119

    [url]http://www.macromedia.com/software/trial/[/url]
    Rob Dillon Guest

  6. #5

    Default Re: how control the sound within going to movie?

    ?
    in director mx 9.0
    in a.dir , i use sound(1).play(....), and then open a movie(b.dir) i a
    window, now the sound continues still;
    in window(b.dir), use one button to forget current window(b.dir), now the
    window(b.dir) forgot, but the sound in a.dir stopped!
    it's true! not the memory's problem, you can test it!

    emicky 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