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
LAF Wafeform Tips?
@d-healey you are right that did the trick :) next step would be the lottie, but i guess its not possible to include it like a svg in laf. Maybe its possible...
Forum (forum.hise.audio)
-
@DanH Superb... Thanks buddy.. That's what I was looking for.