@DabDab Thanks bro, I appreciate your help:folded_hands:
Best posts made by xsaad
-
RE: preset browser scroll bar
-
RE: preset text is hidden
@d-healey It seems that GBT T knows nothing :grinning_face_with_smiling_eyes: :grinning_face_with_smiling_eyes: I appreciate your advice. I will start learning from your YouTube channel. Thank you
Latest posts made by xsaad
-
Preset browser scroll bar
Hi does anyone know how I can reduce the width of the background of the scroll bar? Thanks!
-
RE: preset browser scroll bar
@DabDab Thanks bro, I appreciate your help:folded_hands:
-
RE: preset browser scroll bar
@DabDab Thanks my friend. Do you have any example that can help me understand how to reduce its width?
-
preset browser scroll bar
Hello, how can I reduce the display size of this? Can someone help me?
-
RE: preset text is hidden
@d-healey It seems that GBT T knows nothing :grinning_face_with_smiling_eyes: :grinning_face_with_smiling_eyes: I appreciate your advice. I will start learning from your YouTube channel. Thank you
-
RE: preset text is hidden
@d-healey My friend suggested this
Can you correct it for me pleaselaf.registerFunction("drawPresetBrowserListItem", function(g, obj) { var a = obj.area; if (obj.columnIndex == -1) { g.setColour(Colours.withAlpha(Colours.white, obj.hover ? 1.0 : 0.8)); g.drawImage(obj.text, a, 0, 0); } else (obj.columnIndex == 1 || obj.columnIndex == 2) { g.drawText(obj.text, a, Justification.left, true); } });
-
RE: preset text is hidden
@d-healey I tried, but I think I didn't succeed. Thank you for your time.
laf.registerFunction("drawPresetBrowserListItem", function(g, obj) { var a = obj.area; if (obj.columnIndex == -1) { g.setColour(Colours.withAlpha(Colours.white, obj.hover ? 1.0 : 0.8)); g.drawImage(obj.text, a, 0, 0); } else if (obj.columnIndex == 1 || obj.columnIndex == 2) { g.drawText(obj.text, a, Justification.left, true); } });
-
RE: preset text is hidden
@d-healey can you show me where to add the edit because i'm still a biginner? I tried to do that but i didn't succed. thank you for your time
Content.makeFrontInterface(600, 400); const laf = Content.createLocalLookAndFeel(); loadExpansionImagesIntoLaf(laf); //fltPresetBrowser const var fltPresetBrowser = Content.getComponent("fltPresetBrowser"); fltPresetBrowser.setLocalLookAndFeel(laf); laf.registerFunction("drawPresetBrowserListItem", function(g, obj) { var a = obj.area; if (obj.columnIndex == -1) { g.setColour(Colours.withAlpha(Colours.white, obj.hover ? 1.0 : 0.8)); g.drawImage(obj.text, a, 0, 0); } }); inline function loadExpansionImagesIntoLaf(obj) { local expHandler = Engine.createExpansionHandler(); for (e in expHandler.getExpansionList()) { local img = e.getWildcardReference("Icon.png"); if (isDefined(img)) { obj.loadImage(img, e.getProperties().Name); } } }
-
RE: preset text is hidden
@d-healey I don't know how to do this. I would be grateful if you could help me.