Go to Director Movie

Ask a Question related to Macromedia Flash Actionscript, Design and Development.

  1. #1

    Default Go to Director Movie

    I am pretty new to Flash, and therefore have only a minimal understanding of Actionscript.

    I am using Flash to create a rollover menu that will be used for navigation in a Director projector. I know the Actionscript to use to go to a frame in the same Director movie in which the Flash menu is placed:

    getURL("lingo: go frame(2)")

    I do not know, however, the Actionscript to go to a different movie.

    For example, if the Flash menu the user is using is currently in the Director movie "fred.dir", and the user clicks a button in the Flash menu to go to another Director movie called "bob.dir", what is the Actionscript to go to "bob.dir"?

    Also, if I can ask a further question, what would be the Actionscript for going to a specific marker in "bob.dir"?

    Thanks for your help!


    maxsimms webforumsuser@macromedia.com Guest

  2. Similar Questions and Discussions

    1. Help with flash movie in director
      Im having trouble importing my flash movie into director 8. I created the movie in flash mx and iv imported the swf file into director, but all...
    2. Director movie to DVD
      How do I take a movie I create and turn it into a DVD disc capable of being played by most consumer standalone DVD players? If it is by creating a...
    3. Flash movie in Director
      Hi All, I am new to this user group. I am facing a problem in Director MX. I have imported a Flash Movie ( SWF ) in Director. What I require is...
    4. movie and director mx
      Hello, Could I have your help about : 1 - How does your mpeg1 in Director MX integrate? 2 - Over did my video, I put a menu with buttons style...
    5. Can Director MX save a movie as a Director 8.5 file?
      Can Director MX save a movie as a Director 8.5 file? I can't find this option in "save as" or "export." HELP!
  3. #2

    Default Re: Go to Director Movie

    try:

    getURL("lingo: go frame("FRAME_MARKER_NAME") of movie("MOVIE_NAME") ");

    where MOVIE_NAME is the name of the movie (without a .dir extension) and FRAME_MARKER_NAME is the name of the marker.

    so if you want to go to a frame marker called 'mark1' in a director movie called 'themovie.dir' the line would be:

    getURL("lingo: go frame("mark1") of movie("themovie") ");


    EdMX webforumsuser@macromedia.com Guest

  4. #3

    Default Re: Go to Director Movie

    Thanks Ed!


    maxsimms webforumsuser@macromedia.com Guest

  5. #4

    Default Re: Go to Director Movie

    You're welcome.


    EdMX webforumsuser@macromedia.com 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