Apache Royale : how to show Handcursor over Jewel Label?

59 Views Asked by At

Is there a way to show Handcursor when mouse go over a j:Label ?

(equivalent of buttonMode="true" useHandCursor="true" ).

Regards

1

There are 1 best solutions below

0
On BEST ANSWER

You can use className="cursor-pointer". From Tour de Jewel examples:

<j:Label localId="label" text="This is a Label" click="labelClick(event)" className="cursor-pointer">
    <j:beads>
        <j:ToolTip toolTip="This Label is clickable!"/>
    </j:beads>
</j:Label>