弯曲鼠标光标“异或”颜色

发布于 2024-08-16 06:52:55 字数 139 浏览 1 评论 0原文

在我使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

南巷近海 2024-08-23 06:52:55

看一下 displayObject.blendMode 属性: http:// /livedocs.adobe.com/flex/3/langref/flash/display/BlendMode.html#INVERT

使用自定义光标,并将该属性设置为 BlendMode.INVERT

更新:
这是解决方案

Cursor 类:

package test
{
import flash.display.BlendMode;
import flash.display.Graphics;
import flash.display.Sprite;

public class InvertCursor extends Sprite
{
    public function InvertCursor()
    {
        super();
        draw();
        blendMode = BlendMode.INVERT;
    }

    public function draw():void {
        var g:Graphics = graphics;
        g.clear();
        g.beginFill(0);
        g.lineStyle(0);
        g.drawCircle(0, 0, 10);
        g.endFill();
    }

}
}

用法:

import mx.managers.CursorManager;
import test.InvertCursor;

private function setInvertCursor():void  {
    CursorManager.setCursor(InvertCursor);
}

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:

package test
{
import flash.display.BlendMode;
import flash.display.Graphics;
import flash.display.Sprite;

public class InvertCursor extends Sprite
{
    public function InvertCursor()
    {
        super();
        draw();
        blendMode = BlendMode.INVERT;
    }

    public function draw():void {
        var g:Graphics = graphics;
        g.clear();
        g.beginFill(0);
        g.lineStyle(0);
        g.drawCircle(0, 0, 10);
        g.endFill();
    }

}
}

Usage:

import mx.managers.CursorManager;
import test.InvertCursor;

private function setInvertCursor():void  {
    CursorManager.setCursor(InvertCursor);
}
最佳男配角 2024-08-23 06:52:55

当然,您可以拥有自己的光标:
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!

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文