Help with Mouse Within and Mouse Leave problem...

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

  1. #1

    Default Help with Mouse Within and Mouse Leave problem...

    I have a shockwave 3d file of a building with individual floors split up into seperate objects.

    I want a pop-up information box (set at a MARKER) to appear when the user mouse overs a specific floor. For this I am using the MOUSE WITHIN(a floor) to trigger a CLICK MODEL GO TO MARKER action to go to the marker with the pop-up box. This works fine.

    I want the pop-up information box to go away when the user's mouse Leaves that floor. For this I tried using MOUSE LEAVE (that floor) to trigger a CLICK MODEL GO TO MARKER to go to the marker w/o the pop-up box. But this doesn't work. If I move my mouse over the model really fast, it will go to that marker once in awhile.

    Which leads me to believe...
    MOUSE WITHIN works at the individual 3d object level
    MOUSE LEAVE works at the entire shockwave 3d sprite level
    Are these safe assumptions?

    I have included a link to an example of what I am trying to do, real simple mousewithin/mouseleave actions. Any ideas or suggestions of how to resolve this problem or possibly another way of doing this? Please help.

    [url]http://www.khanhngo.com/schockwave/3dmouseover_test.dcr[/url]

    THANKS IN ADVANCE.
    -Khanh



    Referring URLs
    [url]http://www.khanhngo.com/schockwave/3dmouseover_test.dcr[/url]




    Khanh75 webforumsuser@macromedia.com Guest

  2. Similar Questions and Discussions

    1. Mouse Problem
      I use an Art Pad Mouse and Stylus on my system. Whenever I open Acrobat 6.0 the mouse stops working. I have uninstalled and reinstalled Acrobat and...
    2. Move mouse cursor to X,Y location and simulate mouse click
      Hi, Just something that slip my mind.. but how do you move the mouse cursor to a sprite member and simulate a mouse click? Any help is...
    3. ps/2 mouse is not loaded by the kernel (neither is usb mouse)
      I've been looking all over the net trying trying to solve this problem, I found a few posts where people had the same problem, but no solution. ...
    4. Fading alpha on mouse over/mouse off
      Hi, Wondering if someone could take a minute to help a flash newbie: I'm trying to create a set of images which fade to 1% alpha when the mouse is...
    5. WMaker amd mouse problem
      On Wed, Jun 25, 2003 at 01:27:13PM +0200, Christian Langner wrote: I had this strange problem too, but in most times i can solve it with using the...
  3. #2

    Default Re: Help with Mouse Within and Mouse Leave problem...

    try: modelunderloc not modelsunderloc

    you will find a little script where you have only to change the number of
    the sprite where your 3dmember is in.
    if you now klick into your scene you get the name of the model that is under
    your mouse.

    then you can go on with

    if m = member("3D").model("gb5") then
    alert "everything ok?"
    end if


    instead of alert "everything ok?" you can let the movie do what ever you
    want. in your case open a window or close a window or both....

    lutz!


    "Khanh75" <webforumsuser@macromedia.com> schrieb im Newsbeitrag
    news:bqj2cr$fcs$1@forums.macromedia.com...
    > I have a shockwave 3d file of a building with individual floors split up
    into seperate objects.
    >
    > I want a pop-up information box (set at a MARKER) to appear when the user
    mouse overs a specific floor. For this I am using the MOUSE WITHIN(a floor)
    to trigger a CLICK MODEL GO TO MARKER action to go to the marker with the
    pop-up box. This works fine.
    >
    > I want the pop-up information box to go away when the user's mouse Leaves
    that floor. For this I tried using MOUSE LEAVE (that floor) to trigger a
    CLICK MODEL GO TO MARKER to go to the marker w/o the pop-up box. But this
    doesn't work. If I move my mouse over the model really fast, it will go to
    that marker once in awhile.
    >
    > Which leads me to believe...
    > MOUSE WITHIN works at the individual 3d object level
    > MOUSE LEAVE works at the entire shockwave 3d sprite level
    > Are these safe assumptions?
    >
    > I have included a link to an example of what I am trying to do, real
    simple mousewithin/mouseleave actions. Any ideas or suggestions of how to
    resolve this problem or possibly another way of doing this? Please help.
    >
    > [url]http://www.khanhngo.com/schockwave/3dmouseover_test.dcr[/url]
    >
    > THANKS IN ADVANCE.
    > -Khanh
    >
    >
    >
    > Referring URLs
    > [url]http://www.khanhngo.com/schockwave/3dmouseover_test.dcr[/url]
    >
    >
    >
    >

    Lutz Westermann Guest

  4. #3

    Default Re: Help with Mouse Within and Mouse Leave problem...

    Lutz... I am in debted to you. THANK YOU!!!


    Khanh75 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