Announcement

Collapse
No announcement yet.
X
  • Filter
  • Time
Clear All
new posts

    How to change mouse cursor on static text

    Hello,

    How to change cursor icon to hand, while mouse roll over to staticTextItem in dynamic form,

    Thanks in advance,

    #2
    Here is my code. But staticTextItem don't inherit from Canvas, has no property cursor .
    I don't know how to do :(

    Code:
    isc.defineClass("MWImg", Img).addProperties({
        width: 16,
        height: 16,
        showRollOver: true,
        mouseOver: function(){
            if (this.cursor != "hand") {
                this.setCursor("hand");
            }
        }
    });

    Comment

    Working...
    X