Hello,
I'm trying to modiify the "Paper Cutter" example, my objective is to make it have a similar structure but different features.
My first obstacle is that I can't make the Bar Graph in "Speed Dialog" present a 1 to 10 scale, it get stuck on 600 as a minumum value on the number text and also the bar graph animation doesn't follow it.
I have changed the minimum and max value and also changed 'onIncrement' and 'onDecrement' slots to
if ( PaperSpeed != null )
PaperSpeed^ = (PaperSpeed^) + 1;
and
if ( PaperSpeed != null )
PaperSpeed^ = (PaperSpeed^) - 1;
Can you help me please?
Thank you,
Lucas