Hi all, I have a problem with model reset trigger.
I want to insert a number of rows into a global table when model is reset,
and my scripts for this purpose is as follows:
Table wip_table = reftable("WIP");
wip_table.addRow(1);
No error message is shown when model is reset, however, it seems that this script doesn't work. (new row was not added)
Also, I fail to add new row when I modify the second line of script as follows:
wip_table.setSize(1, n); // n is number of columns
On the contrary, the above script works well when I put it into Script Window or triggers of modeling object.
Could you please help me to modify the global table by using model reset trigger?