【问题标题】:Issue in chrome when using cursormanager(Its Displaying both custom cursor and normal mouse pointer)使用 cursormanager 时 chrome 出现问题(它同时显示自定义光标和普通鼠标指针)
【发布时间】:2011-02-09 07:41:51
【问题描述】:

我正在使用光标管理器为叠加层设置手形光标。

它在 mozilla firefox 和 IE8 中运行良好,但在 chrome 中它显示手形光标和普通鼠标指针,这是我的代码

import mx.managers.CursorManager;
import mx.managers.CursorManagerPriority;
[Embed(source="/assets/images/cursor_hand.gif")]
    public var handCursor:Class;

renderer.addEventListener(MouseEvent.MOUSE_OVER, function(event:MouseEvent):void{
                        CursorManager.setCursor(handCursor,CursorManagerPriority.HIGH, 3, 2);
                    });
                    renderer.addEventListener(MouseEvent.MOUSE_OUT, function(event:MouseEvent):void{
                        CursorManager.removeAllCursors();
                    });

我在这里错过了什么吗? 我正在使用 flex builder 3 和 Flash player 9。

【问题讨论】:

    标签: flex3 flashplayer-9


    【解决方案1】:

    在 Chrome 中访问 this 链接并检查您是否单独看到自定义光标。如果不是,请尝试更新您的 Flash Player 版本。我的版本是 10、0、45、2,我只看到 chrome 中的自定义光标。

    【讨论】:

      猜你喜欢
      • 1970-01-01
      • 2014-02-14
      • 2021-08-28
      • 1970-01-01
      • 2018-02-09
      • 1970-01-01
      • 2016-11-04
      • 1970-01-01
      • 1970-01-01
      相关资源
      最近更新 更多