UPDATE: I think I have a workaround for the crashes that occurred when my script used Myriad Tables Lib.
The script which makes the table is run by another script. Previously I had the call in this form:
set chosen_items_list to run script path_to_Show_Table with parameters {…}
I changed that to:
set run_Show_Tabler_Handler to load script path_to_Show_Table
set chosen_items_list to run_Show_Tabler_Handler’s Show_Table(…)
That is, in essence, changed “run script” to “load script”.
I have not had a crash since which might be coincidental but I’ll stay with “load script” for now.
Cheers.