Re: Project collection object in BBEdit applescript

2022-06-04 Thread jj
The question here is that the file/directory project items of the first level project collection of a project document are returned as «class furl» objects instead of the expected project item objects. I have sent a mail to Bare Bones technical support concerning this. Jean Jourdain On

Re: Project collection object in BBEdit applescript

2022-06-03 Thread Neil Faiman
Well, it confirms what I had already seen. That is, even though the, according to ScriptDebugger, the project collections of the project document really are project collections (and ScriptDebugger lets me zoom in and look at their contents), when I get one of those project collections in an

Re: Project collection object in BBEdit applescript

2022-06-03 Thread 'Neil Faiman' via BBEdit Talk
Well, it confirms what I had already seen. That is, even though the, according to ScriptDebugger, the project collections of the project document really are project collections (and ScriptDebugger lets me zoom in and look at their contents), when I get one of those project collections in an

Re: Project collection object in BBEdit applescript

2022-06-03 Thread jj
Hi Neil, This AppleScript snippet might help you understand how BBEdit sees the project document hierarchy. set v4Spaces to "" tell application "BBEdit" set vProjectDocument to first project document set vProjectCollections to project collections of vProjectDocument

Project collection object in BBEdit applescript

2022-06-03 Thread Neil Faiman
BBEdit 14.1.2, Mac OS Monterey 12.4 Using AppleScript, I want to navigate into a folder in a collection in a project window. I have the following script: tell application "BBEdit" try set project to project document "ZBA.bbprojectd" on error