弯曲鼠标光标“异或”颜色
在我使用 Flex 3 进行的在线地图应用程序中,我需要一个光标来执行某些与背景进行异或着色的操作。
即,它始终是其上方任何像素的“负”颜色(黑底白字、绿底红字等)。
这可以用 Flex 来完成吗? (我可以滚动自己的编程光标吗?)
In an online mapping application I'm doing in Flex 3 I need a cursor for certain operations that has XOR coloring with the background.
i.e. it is always the "negative" color of whatever pixels it stands above off (white on black, red on green, etc.).
Can this be done with Flex? (Can I roll my own programmatic cursor?)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
看一下 displayObject.blendMode 属性: http:// /livedocs.adobe.com/flex/3/langref/flash/display/BlendMode.html#INVERT
使用自定义光标,并将该属性设置为 BlendMode.INVERT
更新:
这是解决方案
Cursor 类:
用法:
Take a look at displayObject.blendMode property: http://livedocs.adobe.com/flex/3/langref/flash/display/BlendMode.html#INVERT
Use a custom cursor with that property set to BlendMode.INVERT
Update:
here is the solution
Cursor class:
Usage:
当然,您可以拥有自己的光标:
http://www.switchonthecode.com/tutorials/flex-custom-cursor-教程
希望有帮助!
Sure, you can have your own cursor:
http://www.switchonthecode.com/tutorials/flex-custom-cursor-tutorial
Hope that helps!