You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If the story editor is open, basil scripts will fail to run.
The error happens in the setup stage, when currPage is getting defined. It occurs in line 990:
currPage = app.activeWindow.activePage;
'Object does not support property or method active page'. Apparently it is not sufficient in the previous check to see if currDoc.windows.length, but there needs to be an additional check, if activePage can be accessed.
The text was updated successfully, but these errors were encountered:
No, we should not close it, I think we should interfere with the user's setup as little as possible. Surely there must be a way to retrieve the activePage from the frontmost LayoutWindow, even when there is a StoryWindow open?
If the story editor is open, basil scripts will fail to run.
The error happens in the setup stage, when
currPage
is getting defined. It occurs in line990
:currPage = app.activeWindow.activePage;
'Object does not support property or method active page'. Apparently it is not sufficient in the previous check to see if
currDoc.windows.length
, but there needs to be an additional check, ifactivePage
can be accessed.The text was updated successfully, but these errors were encountered: