Actionscript 3 屏幕键盘
我正在为触摸屏创建一个动作脚本键盘。 我有从 A 到 Z 的按钮。
如何从鼠标事件中获取值?
Q.addEventListener(MouseEvent.MOUSE_DOWN, keyPressed);
W.addEventListener(MouseEvent.MOUSE_DOWN, keyPressed);
function keyPressed(e:MouseEvent):void {
trace("clicked " + value??);
}
I am creating an action script keyboard for a touch screen.
I have buttons from A - Z.
How do I get the value out of the mouse event?
Q.addEventListener(MouseEvent.MOUSE_DOWN, keyPressed);
W.addEventListener(MouseEvent.MOUSE_DOWN, keyPressed);
function keyPressed(e:MouseEvent):void {
trace("clicked " + value??);
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以创建一个具有变量值的 KeySprite 类,并且键应该是 KeySprite :
并且事件捕获将是:
You can create a class KeySprite which has a variable value and the key should be KeySprite :
And the event catch will be :