如何通过单击 Flex 4 中的图像将图像粘贴到光标上
我有一个面板,显示图像和控制栏,其中带有右侧标记缩略图形式的按钮。当用户单击右侧标记的缩略图时,我想将该右侧标记的缩略图粘贴到鼠标指针上,当他单击图像时,缩略图相关图像应粘贴在图像上。拖放与单击事件的概念相同。
I'm having a panel which shows an image and control bar with buttons in the form of thumbnail image of right mark. When a user clicks on the thumbnail of right mark I want to stick the thumbnail image of that right mark to the mouse pointer and when he clicks on the image, the thumbnail related image should be paste on the image. Same concept of drag and drop with click event.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
你的问题仍然很难理解,但我相当确定你需要的是 Sprite#startDrag() 和 Sprite#stopDrag()。
下面是一个帮助您入门的小示例设置:
请注意,我将
lockCenter
参数设置为 true。这将使图像粘在鼠标上。否则,您将开始将图像从其原始位置拖动。Your question is still pretty hard to understand, but I'm fairly certain that what you need is Sprite#startDrag() and Sprite#stopDrag().
Here's a little example setup to get you started:
Note that I set the
lockCenter
argument to true. This will make the Image stick to the mouse. Otherwise you would start dragging the image from its original location.试试这个:单击选择按钮并双击按钮即可放下。
Try this:to pick button single click and to drop you have to do double click.