Hi Alan
That makes a global prm of the scale. I could give each a unique name, but I'd like not to :)
In my use case, I've got 139 xdds for which I want to do some calibration internally to each xdd, while relying on the same global strs.
something like
xdd
local a_smv = ..
local b_smv = ..
local c_smv = ..
str 'a
str 'b
str 'c
xdd
local a_smv = ..
local b_smv = ..
local c_smv = ..
str 'a
str 'b
str 'c
...
for xdds {
for strs 1 to 1 {...}
for strs 2 to 2 {...}
for strs 3 to 3 {...}
}
and doing
xdd
str
move_to xdd
local a_sc = Get(scale);
fails with "Cannot locate scale from xdd in data structures".