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
I tried this
import flash.ui.Mouse; Mouse.hide();
and it worked for me on google chrome.
This is apparently a verified bug in Chromium, only on Mac:
https://code.google.com/p/chromium/issues/detail?id=32703
Chrome, Flash "" "" ().
- Flash - wmode "" ( "" ).
wmode - -, HTML , HTML- Flash, . HTML "wmode".
, 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(); }