The patch was tested using the test macro shown earlier and the Macros, Repeated Playback menu option with the macro repeated some 10,000 times

Cheers Jussi
Code: Select all
function key_macro()
{
zeus.screen_update_disable
zeus.FileNew
zeus.FileClose
zeus.screen_update_enable
zeus.screen_update
}
key_macro() // run the macro
Code: Select all
function key_macro()
screen_update_disable()
FileNew()
FileClose()
screen_update_enable()
screen_update()
end
key_macro() -- run the macro
While this patch did seem to reduce the occurrence of the abort, unfortunately even with this patch applied the bug still remainsI think this bug should be fixed in the latest Zeus patch.
If 3.96m is the latest release, then the run-time abort problem is not fixed.
Any info on additional data you'd like to have? I'd really like to get this resolved.
BTW, I'm assuming the "important lua scripting" patch is included in 3.96m - is that correct?