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.
我正在尝试这个,但它不起作用:
_root.onPress = function(){ .. }
我想点击任何我想要的地方,不仅在对象中,有什么办法可以解决这个问题吗?
“舞台”不会触发onPressAS2 中的事件(因为它假定没有任何内容可按 - 例如按钮或 MovieClip 或其他任何东西)。但是您仍然可以onMouseDown像这样捕获:
onPress
onMouseDown
_root.onMouseDown = function(){ trace('hello'); };