【发布时间】:2013-03-06 15:11:53
【问题描述】:
我试图禁用鼠标单击并在 UIComponent 外部显示忙碌光标。我正在这样做:
protected function setBusyCursor() : void {
const stage:Stage = mx.core.FlexGlobals.topLevelApplication.stage;
if (stage){
stage.mouseChildren = false;
}
CursorManager.setBusyCursor();
}
这确实禁用了鼠标单击,但出现的光标是常规指针(不是忙碌的指针)。知道我做错了什么吗?
【问题讨论】:
标签: apache-flex cursor