Submit Hint Search The Forums LinksStatsPollsHeadlinesRSS
14,000 hints and counting!


Click here to return to the 'Bugs in this version.' hint
The following comments are owned by whoever posted them. This site is not responsible for what they say.
Bugs in this version.
Authored by: papley on Mar 30, '05 07:21:01PM
There are a few things about this that won't work.

One thing that worked in the previous version but doesn't work in this version is handling more tabs than are able to be displayed in the window. When safari can no longer fit all the tabs in the window a drop-down list is provided to access the remaining tabs.

Because you iterate on the count of radio buttons instead of by the number of tabs (which you don't have direct access to) you'll miss any additional tabs.


set tabCount to count of radio buttons of window frontMostWindow 
repeat with tab from 1 to tabCount
       set tabURL to value of text field 1 of group 1 of ¬
       splitter group 1 of window frontMostWindow
       -- save the url
       set url_list to url_list & tabURL
       my nextTab()


[ Reply to This | # ]