Hi,
by calling:
|
Source code
|
1
|
set(view.hlookat, var1)
|
you will set the 'view.hlookat' variable to the text 'var1', and because the view.hlookat variable is a Number variable the result will be NaN.
To set to view.hlookat to the content of 'var1', either call:
|
Source code
|
1
|
set(view.hlookat, get(var1))
|
or
|
Source code
|
1
|
copy(view.hlookat, var1)
|
Best regards,
Klaus