> On 7 Oct 2021, at 16:13, Christiaan Hofman <[email protected]> wrote:
> 
> 
> 
>> On 7 Oct 2021, at 11:24, massisenergy--- via Bibdesk-users 
>> <[email protected] 
>> <mailto:[email protected]>> wrote:
>> 
>> 
>> Dear all,
>> 
>> I would like to make some of my web groups static (so that I don't have to 
>> open them from the bookmarks every time I open BibDesk). Is there any way to 
>> do so? I have posted my question here, if that clarifies: 
>> https://tex.stackexchange.com/questions/617988/is-it-possible-to-have-static-web-groups-in-bibdesk
>>  
>> <https://tex.stackexchange.com/questions/617988/is-it-possible-to-have-static-web-groups-in-bibdesk>
>> 
>> Awesome software for sure, wish I knew the customizations better!
>> 
>> Thanks in advance,
>> Sourav
>> -- 
>> Sent with Tutanota, the secure & ad-free mailbox. 
> 
> No, this is not possible.
> 
> Christiaan
> 


You can achieve this by adding an Open Document script hook in the preferences. 
The following AppleScript script hook should do the trick:

property startURL : "https://scholar.google.com";

using terms from application "BibDesk"
        on perform BibDesk action with publications thePubs for script hook 
theScriptHook
                set theDoc to get document of theScriptHook
                tell theDoc
                        set URL of first web group to startURL
                end tell
        end perform BibDesk action with publications
end using terms from

You could do more, like adding further web groups with their preloaded URLs, 
with lines like this (inside the “tell theDoc” block):

set theGroup to make new web group
set URL of theGroup to startURL2

Christiaan

_______________________________________________
Bibdesk-users mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/bibdesk-users

Reply via email to