Report post

Are you sure you want to report the post shown below? This will send an email to the ATVO administrators. Please include a short reason for reporting.

Users reporting for no reason may be locked out.


Post

Posted by Emmanuel S
on
I try to override left position with script but when I use variable in return value nothing happen.

If I use a number it is OK. (Return 50)

What variable format I need to use ?

var rpm = value;
double rpm2 = Convert.ToInt32(rpm);

rpm2 = rpm2 / 40 + 74;
return rpm2

Is bad, I try to convert rpm2 to string, int, double ...