我试图禁用鼠标单击并从 UIComponent 外部呈现繁忙的光标。我这样做:
protected function setBusyCursor() : void {
const stage:Stage = mx.core.FlexGlobals.topLevelApplication.stage;
if (stage){
stage.mouseChildren = false;
}
CursorManager.setBusyCursor();
}
这确实禁用了鼠标单击,但出现的光标是常规指针(不是忙碌的指针)。知道我做错了什么吗?