Question
Issue With Declaring Window Object in Extend Script
In my .jsx file I have the following function:
function showForm(filePath, dataPath)
{
alert("Before");
var dialog = new Window("window", "Select a folder");
alert("After");
dialog.show()
}
However, the second alert never appears indicating the code hangs on the Window object declaration.
Any ideas on why this may be?
However, the second alert never appears indicating the code hangs on the Window object declaration.
Any ideas on why this may be?
