How to reference Outline Box from within red triangle menu without using variables
Here's a reworked example from Scripting Index:Names Default To Here( 1 );
ob = Outline Box( "Picker",
{"Copy picture", ob << Copy Picture()},
H List Box( Text Box( "Label:" ), teb = Text Edit Box( Char( 213 ) ) )
);
New Window( "Example",
ob
);
It adds a menu item in the red triangle menu that would copy the picture of this box to the buffer.Script works just fine. My question is: what i...