It sure is possibly... by use of the
format command...
eg.
hint format ["Number: %1",
num ]
Where
num is your variable. The %1 in the line will be replaced in the hint box by the variable you specify after the comma... you can also specify mulitple variables:
hint format ["Value 1: %1 \nValue 2: %2 \nValue 3: %3",
num1,
num2,
num3 ]
The %1, %2 and %3 will be replaced by the variables after the comma. Remember to keep the order correct
The \n in there just makes the text jump down to the next line... it has no effect on the variables... happy coding