6 Apr 2009 19:36
Bookmarking all tabs of front browser
Mitchell L Model <MLMLists <at> Comcast.net>
2009-04-06 17:36:13 GMT
2009-04-06 17:36:13 GMT
Is there still no way to bookmark all the tabs of
the front browser, collecting them into a folder?
I do use workspaces a lot, but still end up
wanting to save a bunch of bookmarks. For
instance, I was working with sqlite3 the other
day and had a dozen or so pages from the
documentation open in one browser. When I was
finished I wanted to save them in a folder. I
don't necessarily want it in a workspace, because
I was using them in other workspaces. And I'd
rather have them saved explicitly so I could move
them around, copy them to other browsers, etc.
This has become a fairly standard feature of
other browsers, and it really should be part of
OmniWeb.
An AppleScript solution currently would not work
because the only way I know to get the title of a
tab is to make it active, so collecting names and
bookmarks of the tabs involves doing
-- fldr is a new or selected bookmark
folder from elsewhere in the script
repeat with tb in tabs of the front browser
set the active tab of the front browser to tb
make new bookmark at end of fldr ¬
with properties ¬
{address:(the address of theBrowser) as Unicode text, ¬
name:(the name of theBrowser) as Unicode text}
end repeat
(Continue reading)
RSS Feed