On Nov 14, 2007 3:53 AM, Jascha Narveson
fun void controlSixteenths() { while (true) {
sixteenths => now; !thirds.state() => thirds.state;
if (!thirds.state) <<<"sixteenths on">>>;
else <<<"sixteenths off">>>; } }
This way your shreds of this type no longer have their own "state" to keep track off which should help simplify problems like the one you have. This should also make it easier to do things like having one button turn off another, etc, by including that in the "if"clause. Again; I didn't get to try the graphical elements yet so I'm not 100% sure this will work but if it would it would considderably simplify your situation. Yours, Kas.