Self-reference in the hot-spot script ("Set Menu Script"). Is it possible?
Hi, is self-reference possible in the hot-spot commands ("<< Set Menu Script"), similar to "<<Set Function".E.g., in the example below I'd like to have a hot-spot commands instead of the buttons: Names Default To Here( 1 );
names = {"AAAA", "BBBB", "CCCC", "DDDD"};
New Window( "Example",
For( i = 1, i <= N Items( names ), i++,
<<append(
Outline Box( names[i], Button Box( "Show my name", <<
...