How to Customize Audio Waveform CTI with LAF
-
How to Customize Audio Waveform CTI with LAF ?
-
Probably
drawTableRuler
-
@d-healey said in How to Customize Audio Waveform CTI with LAF:
Probably
drawTableRuler
@DabDab I guess it is
drawThumbnailRuler
-
@Tania-Ghosh @d-healey Can you please give an example?
-
@DabDab look at the table ruler example in the docs under look and feel glossary. It probably does the same thing...
-
@DanH said in How to Customize Audio Waveform CTI with LAF:
@DabDab look at the table ruler example in the docs under look and feel glossary. It probably does the same thing...
Only Line is coming but not moving...
LAF.registerFunction("drawThumbnailRuler", function(g, obj) { g.setColour(Colours.withAlpha(obj.bgColour, 0.1)); var x = obj.position * obj.area[0]; g.setColour(Colours.red); g.drawLine(x+2,x+2, x,obj.area[2], 1); });
-
@DabDab have a look in this thread
https://forum.hise.audio/topic/6764/laf-wafeform-tips/9?_=1675800238483
-
@DanH Superb... Thanks buddy.. That's what I was looking for.