How to access Here namespace during entered Local Here namespace?
Hi all,I'm having trouble to access the Here namespace during entered Local Here namespace. My example script as follow: Names Default To Here(1);
Delete Symbols();
// Declare a variable in the "Here" scope
x = "Variable";
Local Here(
// Access the "Here" scope variable
y = Eval(Namespace("here") << Get("x"));
Show(y);
);
When I used debugger, can clearly see after entered Local Here, i...