Bookmarking all tabs of front browser
Mitchell L Model <[email protected]> Mon, 6 Apr 2009 13:36:13 -0400
| Newsgroups | gmane.comp.web.omniweb |
|---|---|
| Message-ID | <p06240802c5ffe94ff610@[10.0.1.221]> |
Is there still no way to bookmark all the tabs of=20
the front browser, collecting them into a folder?=20
I do use workspaces a lot, but still end up=20
wanting to save a bunch of bookmarks. For=20
instance, I was working with sqlite3 the other=20
day and had a dozen or so pages from the=20
documentation open in one browser. When I was=20
finished I wanted to save them in a folder. I=20
don't necessarily want it in a workspace, because=20
I was using them in other workspaces. And I'd=20
rather have them saved explicitly so I could move=20
them around, copy them to other browsers, etc.=20
This has become a fairly standard feature of=20
other browsers, and it really should be part of=20
OmniWeb.
An AppleScript solution currently would not work=20
because the only way I know to get the title of a=20
tab is to make it active, so collecting names and=20
bookmarks of the tabs involves doing
-- fldr is a new or selected bookmark=20
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 =AC
with properties =AC
{address:(the address of theBrowser) as Unicode text, =AC
name:(the name of theBrowser) as Unicode text}
end repeat
and "set the active tab" is broken (still or again).