Change Text Colour on Hover and Clicked using PaintRoutine
-
I am bit stuck on this code.. How can I change Text Colour on Hover and Clicked using Paint Routine.
const var openwebsite = Content.getComponent("openwebsite"); openwebsite.setPaintRoutine(function(g) { g.setColour(Colours.darkgrey); g.setFont("Arial",24); g.drawText("Open Website", [0,0,this.getWidth(),this.getHeight()]); }); openwebsite.setMouseCallback(function(event) { if(event.clicked) Engine.openWebsite("https://www.google.com"); });
-
https://docs.hise.audio/scripting/scripting-in-hise/scriptpanel.html#the-mouseevent-callback
Add another if statement to the MouseCallback
if(event.hover) //change colour
-
@iamlamprey Superb got it.
Thank you.