Re: Bookmarking all tabs of front browser

Ken Case <[email protected]> Fri, 4 Sep 2009 07:19:13 -0700
Newsgroups gmane.comp.web.omniweb
Message-ID <[email protected]>
On Apr 6, 2009, at 10:36 AM, Mitchell L Model wrote:
> Is there still no way to bookmark all the tabs of the front browser,  
> collecting them into a folder?


You can select all the tabs and copy them, then open your bookmarks  
and paste them wherever you want them.  But I agree that it would be  
convenient to have an menu item to do this.

> 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

I think some of these were broken in OmniWeb 5.9, but now that 5.10 is  
out this AppleScript works for me:

	tell application "OmniWeb"
		title of active tab of front browser
	end tell

> and "set the active tab" is broken (still or again).

As does this:

	tell application "OmniWeb"
		tell front browser
			set active tab to tab 2
		end tell
	end tell

So you should be able to go the AppleScript route if you like.

Hope this helps!

				Cheers,
				Ken