Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在 Web 应用程序中使用 flex2。我在我的应用程序中成功添加了一个繁忙的光标,但是只要光标动画,我就需要禁用光标单击事件。我可以这样做吗?我该怎么做?
我是新来的。请给我一个示例代码。提前致谢。
不是我不知道的。但是您始终可以删除页面上组件的“点击”侦听器。
例如,
myComponent.removeEventListener(MouseEvent.CLICK, onMouseClickEventDoThis);
不过这很痛苦,因为您必须对每个视觉组件都这样做。
我过去所做的只是让component.enable = false。这样,它会变灰并且不监听任何事件。
myComponent.enable = false;
请记住在完成忙碌光标后重新启用它。
myComponent.enable = true;