Ask a Question related to Macromedia Director Basics, Design and Development.
-
GregRohman webforumsuser@macromedia.com #1
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
-
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... -
FLASH mouse clicks on touch screen
noboddy got any ideas still ? why u need to double click on a touchscreen on a flash sprite? -
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... -
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... -
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... -
Gretchen Macdowall #2
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:
authoring mode, the browser functions properly. When I create a> I have a Director MX project with an embedded WebBrowser control. In
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.on it, the browser functions correctly.>
> If I click outside of the projector (to lose focus) and then click backYou 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
-
GregRohman webforumsuser@macromedia.com #3
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
-
Gretchen Macdowall #4
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:
The first click seems to work, but subsequent clicks do not.> Thanks for the tip. However, it didn't seem to alleviate the problem.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
-
GregRohman webforumsuser@macromedia.com #5
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



Reply With Quote

