ActiveX Web Browser control not accepting mouse-clicks in windowed project

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

  1. #1

    Default ActiveX Web Browser control not accepting mouse-clicks in windowed project

    I have a Director MX project with an embedded WebBrowser control. In authoring mode, the browser functions properly. When I create a full-screen projector, it also functions properly. However, if I create a windowed projector, the browser control does not receive mouseclicks properly. Clicking anywhere inside the projector produces a flicker in the browser. Hyperlinks, form elements, etc. inside the browser also do not work.

    If I click outside of the projector (to lose focus) and then click back on it, the browser functions correctly.

    Any thoughts?

    -Greg


    ---
    Greg Rohman
    Harrison Leifer DiMarco
    [email]grohman@hldcreative.com[/email]
    GregRohman webforumsuser@macromedia.com Guest

  2. Similar Questions and Discussions

    1. director and FLASH mouse clicks with touchscreens
      hi, If anyone else knows about the bug in director and a possible solution please let me know! Basically, if you have a flash movie, with...
    2. FLASH mouse clicks on touch screen
      noboddy got any ideas still ? why u need to double click on a touchscreen on a flash sprite?
    3. FLASH MX mouse clicks in Director
      Hi, I've imported my MX swf as a sprite. The problem is, with the MX swf, a button with a simple on ( release) action doesn't work anymore on my...
    4. Sprites with Accessibility Speech behaviors and Mouse Clicks
      Does anyone know why a spirite with an attached accessibility behavior will "speak" when clicked on by a mouse. I thought the accessibily speech...
    5. multiple mouse clicks
      I want to be able to code a sprite change based on 2 mouse clicks. The sprite changes on the first mouse click and on a 2nd mouse click it would...
  3. #2

    Default Re: ActiveX Web Browser control not accepting mouse-clicks in windowed project

    In article <bk76s3$i9o$1@forums.macromedia.com>, "GregRohman"
    [email]webforumsuser@macromedia.com[/email] wrote:
    > I have a Director MX project with an embedded WebBrowser control. In
    authoring mode, the browser functions properly. When I create a
    full-screen projector, it also functions properly. However, if I create a
    windowed projector, the browser control does not receive mouseclicks
    properly. Clicking anywhere inside the projector produces a flicker in the
    browser. Hyperlinks, form elements, etc. inside the browser also do not
    work.
    >
    > If I click outside of the projector (to lose focus) and then click back
    on it, the browser functions correctly.
    >
    You can fix it with:

    on exitFrame
    moveToFront (the stage)
    end

    at some point before people start clicking on the web browser sprite.

    Gretchen Macdowall
    [url]http://www.updatestage.com/[/url]
    Gretchen Macdowall Guest

  4. #3

    Default Re: ActiveX Web Browser control not accepting mouse-clicks in windowed project

    Thanks for the tip. However, it didn't seem to alleviate the problem. The first click seems to work, but subsequent clicks do not.

    ---
    Greg Rohman
    Harrison Leifer DiMarco
    [email]grohman@hldcreative.com[/email]
    GregRohman webforumsuser@macromedia.com Guest

  5. #4

    Default Re: ActiveX Web Browser control not accepting mouse-clicks in windowed project

    In article <bkev7j$i0c$1@forums.macromedia.com>, "GregRohman"
    [email]webforumsuser@macromedia.com[/email] wrote:
    > Thanks for the tip. However, it didn't seem to alleviate the problem.
    The first click seems to work, but subsequent clicks do not.
    >
    You're right!! I never checked past the first click. This seems to allow
    more than one click:

    -- on frame script, sprite 1 is the browser

    property lastLoc

    on beginSprite me
    lastLoc = ""
    end

    on exitframe me
    if sprite(1).LocationName <> lastLoc then
    moveToFront (the stage)
    lastLoc = sprite(1).LocationName
    end if
    go the frame
    end

    Gretchen Macdowall
    [url]http://www.updatestage.com/[/url]
    Gretchen Macdowall Guest

  6. #5

    Default Re: ActiveX Web Browser control not accepting mouse-clicks in windowed project

    Thanks for the tip. As of now, the client preferred the projector to run full-screen as opposed to windowed anyways, but I will try this out of sheer curiousity.

    Thanks again for the assistance.



    ---
    Greg Rohman
    Harrison Leifer DiMarco
    [email]grohman@hldcreative.com[/email]
    GregRohman 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