Flash actionscript 'clicks' question
- Started
- Last post
- 5 Responses
- clearblur
Does anyone know how to prevent OS 'clicks' (on the PC, anyway) from occurring when using javascript:getUrl()?
Here's a code snippet:getUrl('JavaScript:func();')
Setting the OS' audio settings to 'off' isn't an option in this case. I'm really looking for a way to do this in flash.
- Mick0
It's an OS thing. I don't think there's a way to do it because it's running a function from the HTML page.
- autonoma0
Not possible.
- enobrev0
give this a shot.. getURL ("javascript:my_window=window.op... my_window.focus(); void(0);");
.. it seems to work for one of my swf's,..
- clearblur0
Nope, still leaves the clicks here.
I have to assume it's possible, as you can write interface javascript for DHTML that doesn't produce clicks...
- nevub0
You would be looking for the FSCommand to do what you want.
Here is some documentation from Macromedia.
http://www.macromedia.com/suppor…
As well as a list of where it's supported.