Actionscript 2.0 和 3.0:拖动动态图像并且不被另一个替换
我有一个功能,可以在影片剪辑顶部显示图像,但是当您单击另一个图像时,它当然会替换当前图像。我不知道如何阻止它替换图像,这样我可以显示一个图像并将其拖动到舞台上的某个位置,然后显示另一个图像并将其拖动到其他地方。 Actionscript 3.0 的拖动事件是什么?
I have a function that displays an image on top of a movie clip but when you click another image, it of course replaces the current image. I don't know how to stop it from replacing the image, that way I can make an image appear and drag it over somewhere on the stage and then make a different image appear and drag that somewhere else, too. and what is the drag event for Actionscript 3.0.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Sprite 或 MovieClip startDrag( ) 和 stopDrag() 方法。
我也不明白以下内容:
图像如何进入您的 swf(库、嵌入、加载器)?
为什么他们在 MouseEvent.CLICK 上互相替换?
根据我目前对您的问题的看法 Event.stopImmediatePropagation() 或 Event.stopPropagation() 可能会有所帮助
Sprite or MovieClip startDrag() and stopDrag() methods.
also i don't understand the following:
how do images get inside of your swf (library, embed, loader)?
why are they replacing each other on MouseEvent.CLICK?
according to my current vision of your problem Event.stopImmediatePropagation() or Event.stopPropagation() in MouseEvent.CLICK handler function may help