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

  1. #1

    Default How to...

    I'm sure this is pretty simple but to date I just haven't figured it out.
    I want to create a projector that opens two movies. One will contain music
    only, and one that is my main movie. But How? Also, the movie with the music
    should always remain open and hidden in the background, the only access will be
    the user turning the music on/off.
    Thanks for any help.

    jkgiven Guest

  2. #2

    Default Re: How to...

    Open a MIAW containing your sound clip and place it off screen. You can open
    it with a frame script on frame 2 for example...

    Michael Hamstra



    Michael Hamstra Guest

  3. #3

    Default Re: How to...

    That music control could be done be scripting in your main movie using a
    couple of different schemes to play a sequence of music.

    The more roundabout second movie could be done, using a movie in a
    window.


    you can run a miaw without opening ( the window visible is left false)


    window( "Player" ).fileName = the pathname & "playerFile"
    tell window "Player" to startMusic

    on startMusic handler in the playerFile.dir file would kick off the
    music.
    JB Guest

  4. #4

    Default Re: How to...

    Am a little confused... If all you want is music, why do you need a window?
    puppetSound which channel wich(audio)CastMember would give you your music and
    with the sound channel a puppet, you could control it with lingo.


    Rumplestiltskin Guest

  5. #5

    Default Re: How to...

    If you goto another movie, your audio will stop when you leave the original
    movie...

    MH

    "Rumplestiltskin" <webforumsuser@macromedia.com> wrote in message
    news:c7da6j$c8d$1@forums.macromedia.com...
    > Am a little confused... If all you want is music, why do you need a
    window?
    > puppetSound which channel wich(audio)CastMember would give you your music
    and
    > with the sound channel a puppet, you could control it with lingo.
    >
    >

    Michael Hamstra 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