actionscript 3 - how to hide default cursor in chrome?

actionscript, flash, google-chrome, mouse-cursor

Solution

I've tried this

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

and it worked for me in google chrome.

Problem

is there a way to hide default cursor[flash]when it's opened using chrome? i can hide it using ordinary way when it's opened using firefox/IE but somehow it doesn't work when it's opened using google chrome.

Original source