How to hide default cursor in chrome?

is there a way to hide the default cursor [flash] when it opens using chrome?

I can hide it in the usual way when it opens using firefox / IE but for some reason this does not work when it opens using google chrome.

Many thanks

+5
source share
4 answers

I tried this

import flash.ui.Mouse;
Mouse.hide();

and it worked for me on google chrome.

+4
source

This is apparently a verified bug in Chromium, only on Mac:

https://code.google.com/p/chromium/issues/detail?id=32703

+2
source

Chrome, Flash "" "" ().

- Flash - wmode "" ( "" ).

wmode - -, HTML , HTML- Flash, . HTML "wmode".

+1

, Mouse.hide(). - :

 var myTimer : Timer;
 myTimer = new Timer(300, 1);
 myTimer.addEventListener("timer", timerHandler);
 myTimer.start();


 function timerHandler(event:TimerEvent):void {
 Mouse.hide();
 myTimer.stop();
 }
0

All Articles