Question
Does El Capitan OS X cause problems with script driven dialog boxes?
When running the folllowing with OS X El Capitan
Running a very simple test:
var w = new Window('dialog', 'Descriptions');
btn = w.add('button', undefined, 'close');
btn.onClick = function() {
w.close();
// the window should be closed when the alert is pops up.
alert('foo’);
}
w.show();
// the window
var a = 10;
var c = 10;
WIth EL Capitan it does not close the dlalog or the alert until the script completes running.