I have had many a few issues with the widgets in cabbage. First off, the end of the hslider to the right doesnt generate all the way. Second off, im using groupboxes to group up widgets together. I know from messing around that widgets generated farther down the code are farther in front. In my ADSR groupbox, the image for the skin appears, but the knobs dont want to. I have code that looks somewhat like this
groupbox bounds(25, 308, 308, 308) visible(1) identchannel("GROUP_ENVALL") plant("GUI_ENVALL"){ groupbox bounds(0, 0, 308, 308) visible(1) identchannel("GROUP_ENV1") plant("GUI_ENV1"){ image bounds(0, 0, 308, 308) file("Skin\Envelope 1.png") rslider bounds(4, 512, 50, 70) range(0.001, 1, 0.001, 1, 0.001) text("Delay") channel("delay") $rsliderstyle rslider bounds(54, 512, 50, 70) range(0.001, 1, 0.001, 1, 0.001) text("Attack") channel("attack") $rsliderstyle rslider bounds(104, 512, 50, 70) range(0.001, 1, 1, 1, 0.001) text("Decay") channel("decay") $rsliderstyle rslider bounds(154, 512, 50, 70) range(0.001, 1, 1, 1, 0.001) text("Sustain") channel("sustain") $rsliderstyle rslider bounds(204, 512, 50, 70) range(0.001, 1, 0.3, 1, 0.001) text("Release") channel("release") $rsliderstyle rslider bounds(254, 512, 50, 70) range(0.001, 1, 0.3, 1, 0.001) text("Amount") channel("amount") $rsliderstyle }
}
as you can see, i have knobs over the image and groupbox, however, i get a result that looks like this:
i dont know whats causing this, as an example im looking at (toneZ) has code almost exactly like it. I dont have this issue with the oscillators, just with the envelopes. Any ideas?