It seems I’m not able to cabbageSet
outlineThickness
and outlineColour
on buttons
. See example below:
<Cabbage> bounds(0, 0, 0, 0)
form caption("Untitled") size(400, 200), guiMode("queue"), colour(0,0,0) pluginId("def1")
button bounds(30, 16, 80, 26) channel("slider1") text("A") colour:0(100,100,0,255) colour:1(255,255,0,255) fontColour:1(0,0,0,255) ;outlineColour(255, 0, 0, 255) outlineThickness(10)
</Cabbage>
<CsoundSynthesizer>
<CsOptions>
-n -d -+rtmidi=NULL -M0 -m0d ;--midi-key-cps=4 --midi-velocity-amp=5
</CsOptions>
<CsInstruments>
; Initialize the global variables.
ksmps = 32
;nchnls = 2
0dbfs = 1
instr 1
;cabbageSet "slider1", "colour:0(255,100,0,255)"
cabbageSet "slider1", "outlineColour(255, 0, 0, 255) outlineThickness(10)"
;cabbageSet "slider1", "text(\"X\")"
endin
</CsInstruments>
<CsScore>
;causes Csound to run for about 7000 years...
f0 z
i 1 0 -1
</CsScore>
</CsoundSynthesizer>