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

  1. #1

    Default marker in a new way

    Hi,


    I 'm getting a precular problem in director.I want to go different marker on click over a button .which is made in flash.But I don't want to put any lingo over that .I want to do it with flash actionscript.
    I am using a button of flash5 which is contianing a code :

    on (release) {
    getURL("lingo:trapFlashEvent(\"1.1\")", "_self");
    }


    Through which i want to mean that it will take me to a director marker named 1.1.But it does not work .Is there any problem with my director file or flash button I cannot understand.Will I add any Xtra for that action script to work.


    Please Help Me.Please...






    mediamagic webforumsuser@macromedia.com Guest

  2. Similar Questions and Discussions

    1. go to marker in different movie
      I have a project with several movies. The markers in all these movies have unique names. On the navigation buttons I put "go to "marker", but I get...
    2. Opening a miaw at a particular marker
      I want to create a miaw glossary, so when the user clicks on an item a miaw opens at a particular marker. I can open the miaw but can not go to a...
    3. marker by frame
      is it possible to get the marker name when knowing the frame number it is on ? i need to know the last markers before my currunt frame so far...
    4. Go to Marker
      "Willidar" webforumsuser@macromedia.com wrote: It seems like you gotta move your picking Lingo into the mouseEnter event. Something like this:...
    5. Fade out before jumping to a new marker
      Hello, I'm sure this is easy to do, but I'm new to Director and I've been trying all week long now and I just don't get how to do what I want. ...
  3. #2

    Default Re: marker in a new way

    Try this...

    on (release) {
    getURL("lingo:go to frame 'start'"); -- Excecute Lingo
    }


    on (release) {
    getURL("lingo:go to frame 1");
    }


    You can also do this...

    on (release) {
    getURL("event: gotoCustomFrame"); -- Create an event... you would
    have to create a on gotoCustomFrame handler in director
    }



    --
    ='o'= Arturo ='o'=
    [url]www.miltonfrank.tv[/url]



    "mediamagic" <webforumsuser@macromedia.com> escribió en el mensaje
    news:buj7nk$18l$1@forums.macromedia.com...
    > Hi,
    >
    >
    > I 'm getting a precular problem in director.I want to go different
    marker on click over a button .which is made in flash.But I don't want to
    put any lingo over that .I want to do it with flash actionscript.
    > I am using a button of flash5 which is contianing a code :
    >
    > on (release) {
    > getURL("lingo:trapFlashEvent(\"1.1\")", "_self");
    > }
    >
    >
    > Through which i want to mean that it will take me to a director marker
    named 1.1.But it does not work .Is there any problem with my director file
    or flash button I cannot understand.Will I add any Xtra for that action
    script to work.
    >
    >
    > Please Help Me.Please...
    >
    >
    >
    >
    >
    >

    Arturo Toledo Guest

  4. #3

    Default Re: marker in a new way

    Thanks.......It is now working.I have saved my time and work load ...I have visited ur site .But it is not in english...I can't understand anything.

    Thanks once again.


    mediamagic webforumsuser@macromedia.com Guest

  5. #4

    Default Re: marker in a new way

    I am glad it worked out...

    I am working currently on my new site but as my main market is in Mexico
    well that´s why Spanish rules hahaha! Debes aprender a hablar español
    amigo!!! cada día es más importante... adios!

    Arturo



    "mediamagic" <webforumsuser@macromedia.com> escribió en el mensaje
    news:bul148$gmr$1@forums.macromedia.com...
    > Thanks.......It is now working.I have saved my time and work load ...I
    have visited ur site .But it is not in english...I can't understand
    anything.
    >
    > Thanks once again.
    >
    >

    Arturo Toledo 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