> Others may have more clever ways of handling this (which I'd like to > hear, I'm only a few weeks into QC), but I would write a JavaScript > patch that keeps enable/disable and position state, and feed that > position info into a billboard or sprite patch. I often use the > PatchTime as a clock to drive my JavaScript.
A simpler solution may be to use the Smooth patch -- it can give you a nice transition in/out without needing to track state yourself via javascript. Mathematical Expression can be used to evaluate the condition and provide the destination (i.e. "destinationX * (condition ? 1 : 0)"), allowing a transition to any point. Drive the smooth patch with the Mathematical Expression output, and you're in business. (I've gone through the whole "JS Hammer" phase myself, so I know entirely what you're talking about :) -- Christopher Wright [email protected] _______________________________________________ Do not post admin requests to the list. They will be ignored. Quartzcomposer-dev mailing list ([email protected]) Help/Unsubscribe/Update your Subscription: http://lists.apple.com/mailman/options/quartzcomposer-dev/archive%40mail-archive.com This email sent to [email protected]

