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

  1. #1

    Default Wait for Flash

    Hi I am using this script to play a flash movie then display some objects in director.
    at the moment the objects come on staight away while the flash movie is still animating. What I what is to wait for the flash movie to stop play (or get to frame 11) then show the sprites in director.

    on NameInput_Open me , opSprite
    member("ClientName_Field").text = cName
    sprite(opSprite).member = member"option_false"
    sprite(70).visible = true
    sprite(70).frame = 2

    sprite(71).visible = true
    sprite(72).visible = true
    sprite(73).visible = true
    end



    Thanks.
    Kaan


    FunkyJunk webforumsuser@macromedia.com Guest

  2. Similar Questions and Discussions

    1. If we wait one year....
      Will we see DSLRs incorporating all elements available only across many different manufacturers as of now? For instance, Olympus has ultrasonic...
    2. Please wait...
      Hello, I'm trying to add a message "Please Wait..." while my front page loads, so I pasted the following code in index.php but is not working...
    3. wait loop
      Hello, How do I pause my application for a given number of seconds without blocking any other application or user input? I've found the sleep...
    4. wait some time
      Hi David, as you probably guessed I'm still trying to get my head around this squish game. I put: if keyPressed(space) then sendsprite(15,...
    5. wait until flash is done
      I have a flash file in director. I want director to wait until the flash movie is done playing before it continues on. Any ideas?
  3. #2

    Default Re: Wait for Flash

    Hi Kaan,

    [url]http://www.macromedia.com/support/director/programs_fl.html[/url]
    should have what you're looking for.

    ja
    Windows for Shockwave
    [url]http://vispo.com/wfs4[/url]


    vispo webforumsuser@macromedia.com Guest

  4. #3

    Default Re: Wait for Flash

    I would simply put

    stop();
    getURL("event: lingoHandler");

    in the last frame of your flash movie. "lingoHandler" has to be a function
    within a Director movie script and can contain the code to make all your
    other sprites visible. That function will only be called, when the flash
    movie enters its last frame and sends the command to Director.

    Hope it helps!
    L.S:


    Loren Schwarz 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