|
The title pretty much sums it up. I have two sliders stacked and the top one will slide but the bottom one won't. The bottom one's slider glows when you mouse over it in the simulator, but doesn't slide. Maybe the simulator, maybe my code:
(comments are locked)
|
|
Well, I should have counted to 10 and kept trying, but maybe this will help some one else out. The vertical size of the rect for the first slider was overlapping the bottom one. Here's the fix:
(comments are locked)
|
|
where are you defining the variables "velMagnitude" and "newTheta"? it sounds like you may be defining velMagnitude in the class body, but newTheta only within the scope of the local function, so when the function ends it is forgotten and re-created afresh next time round (with the same initial value).
(comments are locked)
|
