movie branching to wrong frame

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

  1. #1

    Default Re: movie branching to wrong frame

    I have always avided multple movie files embedded in a projector, are
    you sure you can navigate between embedded movies?
    JB Guest

  2. Similar Questions and Discussions

    1. movie inside movie with different frame rates
      Hi all, I have a movie that plays inside a main movie. It seems like the embedded movie follows the frame rate of the main movie. Is it possible...
    2. To build a movie frame-by-frame at runtime via AS
      I have a task that I want to do, but I'm not exactly sure how to go about it I have a text file that contains...
    3. Communicating with frame labels. What am I doing wrong?
      Hey all, Im having some difficulty in doing some basic actionscript. On my maintime line I have a frame label called: closeanim Also on that...
    4. Communicating with frame labels. What am I doing wrong?
      > This is what I have, what am I doing wrong? you've got it all backward .. did you not look at the many example in the documentation ????? on...
    5. Published SWF starts on wrong frame
      I have a flash movie that works fine when tested. However when I publish the SWF file it starts at frame number 5, not frame number 1 as it should....
  3. #2

    Default movie branching to wrong frame

    Hello

    I have a main movie with an interface and buttons that branches too several
    other movies. The script is on frame 1087. When I click on the button with
    the script below, it goes and opens the "newcar" movie but starts playing at
    frame 1081. In the new car movie I have a marker at frame 20 labeled as
    start where I want it too begin.

    The stranger thing is, that if I add the ".dir" extension onto the movie
    name the branching works fine, and starts at start. But that's no good when
    I will need to save this project as a projector.

    Any ideas?

    Thanks in advance,
    Rob Langlands

    on mouseEnter me
    sprite(10).foreColor = 6
    end

    on mouseDown me
    set the ink of sprite the currentSpriteNum to 3
    beep
    end

    on mouseUp me
    set the ink of sprite the currentSpriteNum to 0
    go to frame "start" of movie "newcar"
    end

    on mouseLeave me
    sprite(10).foreColor = 233
    end


    Rob Langlands 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