Is there a way to edit the name and the script of a red triangle menu item after I created them rather than recreate the whole menu?
ob << Set Menu Script(
{"A", Print( "A" ), "B", Print( "B" ), "B1",
Print( "B1" ), "B2", Print( "B2" ), "B3", Print( "B3" ),
"C", Print( "C" )}
);
ob << Set Submenu( 2, 3 );
Let's say I need change
"B2", Print( "B2" ) --> "BeeToo", Print( "BeeToo" )
for one specific item?