0
我正在使用Flash actionscript2.0,並使用此代碼來顯示自定義光標。Flash - 右鍵單擊上下文菜單鼠標光標在使用自定義光標時不可見
onEnterFrame = function()
{
Mouse.hide();
myCursor._x = _xmouse;
myCursor._y = _ymouse;
}
但這會導致觀看點擊右鍵快捷菜單消失時,鼠標光標。 查看上下文菜單時有沒有辦法顯示標準的鼠標光標?
謝謝。