Increase Decimals

Top  Previous  Next

You can set this option as a fixed internal template-defined value or as a user-variable value.

 

Template

 

Here you enter the other number that makes the template work.

 

clip0036

This number specifies how many digits you want to add to the decimal part of the current picture (whatever it is). This will only applies over pictures with decimals.

 

For example,  if you set a value of 1, the following changes occurs:

@n10.3 à @n10.4

@n9.2 à @n9.3

@n6 à @n6 (doesn't change because it has no decimals)

@n-10.2 à @n-10.3

 

If you set a negative number, then you will subtract decimals from the current picture.

For example,  if you set a value of -1, the following changes occurs:

@n10.3 à @n10.2

@n9.2 à @n9.1

@n6 à @n6 (doesn't change because it has no decimals)

@n-10.2 à @n-10.1

 

This will work on every mask with integers and decimals, no matter how complex. For example, with an increase decimal value of 2:

@n-_10`3~U$S~B à @n-_10`5~U$S~B

 

User Variable

 

Here you enter the name of the variable that affects the decimal part of the numbers.

 

clip0048

This variable will contain a number that specifies how many digits you want to add to (or subtract from) the decimal part of the current picture (whatever it is). This will only applies over pictures with decimals.

The variable should be a SHORT.

As the procedures of digit changer are globals, the variable should be global as well. The best option is to define it in the dictionary as Global Data, that way you won't have problems with multi-dll apps.

When this variable contain a value, it will work exactly the same as the "Template" setting, so you can see the same examples above.