Welcome to the MacNN Forums.

If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

You are here: MacNN Forums > Software - Troubleshooting and Discussion > Applications > opening safari in tabs...

opening safari in tabs...
Thread Tools
Professional Poster
Join Date: Jan 2001
Location: brooklyn ny
Status: Offline
Reply With Quote
Nov 9, 2004, 04:45 PM
 
i posed this question once, a long time ago...dont beat me up!

is there a way to set safari to open with a home folder, as opposed to a page?

ie, every time i open safari, i have to then go to my "home" folder, and select open in tabs.
is there a trick (or 3rd party option) to set the home page to that folder?

(and if not, why not?? )
"At first, there was Nothing. Then Nothing inverted itself and became Something.
And that is what you all are: inverted Nothings...with potential" (Sun Ra)
     
Professional Poster
Join Date: Jul 2001
Location: New York, NY
Status: Offline
Reply With Quote
Nov 9, 2004, 04:49 PM
 
I don't believe there is. The reason? Your guess is as good as mine. However, at least Omniweb (and probably other browsers) provide this sort of option.
cpac
     
Addicted to MacNN
Join Date: Aug 2004
Location: Outfield - #24
Status: Offline
Reply With Quote
Nov 9, 2004, 04:57 PM
 
No, that option doesn't exist; however, you can set up your "home" folder to be an Auto-Tab folder where you just hit it once and they'll open up in tabs...
     
Mac Elite
Join Date: Jun 2003
Location: Newport News, VA USA
Status: Offline
Reply With Quote
Nov 10, 2004, 07:49 AM
 
AppleScript is your friend...

substitute "www.foo.com" with the URLs you wish to open separated by spaces. Save it as an application (paste the Safari icon on it if you wish )

If Safari is configured as your default browser and tabbed browsing is enabled, this script should open Safari with the URLs you provided in tabs.

Hope that helps.
     
Professional Poster
Join Date: Jan 2001
Location: brooklyn ny
Status: Offline
Reply With Quote
Nov 10, 2004, 08:43 AM
 
thanx cybergoober...
will try when i get home today.

EDIT:
tried it; it opens each site, but one-at-a-time, in the same window...
how do i make it open seperate tabs??
(Last edited by fisherKing; Nov 10, 2004 at 08:51 AM. )
"At first, there was Nothing. Then Nothing inverted itself and became Something.
And that is what you all are: inverted Nothings...with potential" (Sun Ra)
     
Dedicated MacNNer
Join Date: Jun 2004
Status: Offline
Reply With Quote
Nov 10, 2004, 10:01 AM
 
Try this one:

Code:
tell application "Safari" activate set the URL of document 1 to "http://www.macrumors.com" my new_tab() set the URL of document 1 to "http://www.macosxhints.com" my new_tab() set the URL of document 1 to "http://www.macnn.com" my new_tab() set the URL of document 1 to "http://www.ipodlounge.com" end tell on new_tab() tell application "Safari" to activate tell application "System Events" tell process "Safari" click menu item "New Tab" of menu "File" of menu bar 1 end tell end tell end new_tab
17" 2.33GHz C2D MacBook Pro / 320GB / 2GB
     
Mac Elite
Join Date: Jun 2003
Location: Newport News, VA USA
Status: Offline
Reply With Quote
Nov 10, 2004, 10:03 AM
 
I'm assuming you have tabbed browsing enabled...

In Safari's preferences under "Tabs":
Try checking the box for "Select new tabs as they are created" if it's not already checked

Also check, under "General":
"Open links from other applications:"
select - "in a new tab in the current window"
     
Dedicated MacNNer
Join Date: Jun 2004
Status: Offline
Reply With Quote
Nov 10, 2004, 10:47 AM
 
Originally posted by cybergoober:
I'm assuming you have tabbed browsing enabled...

In Safari's preferences under "Tabs":
Try checking the box for "Select new tabs as they are created" if it's not already checked

Also check, under "General":
"Open links from other applications:"
select - "in a new tab in the current window"
Huh?

He wants Safari to launch with a set of tabs open (i.e. multiple home pages). Your post has nothing to do with that.
17" 2.33GHz C2D MacBook Pro / 320GB / 2GB
     
Mac Elite
Join Date: Jun 2003
Location: Newport News, VA USA
Status: Offline
Reply With Quote
Nov 10, 2004, 01:26 PM
 
Originally posted by azdude:
Huh?

He wants Safari to launch with a set of tabs open (i.e. multiple home pages). Your post has nothing to do with that.
Uh...
Originally posted by cybergoober:
AppleScript is your friend...

substitute "www.foo.com" with the URLs you wish to open separated by spaces. Save it as an application (paste the Safari icon on it if you wish )

If Safari is configured as your default browser and tabbed browsing is enabled, this script should open Safari with the URLs you provided in tabs.

Hope that helps.
Originally posted by fisherKing:
thanx cybergoober...
will try when i get home today.

EDIT:
tried it; it opens each site, but one-at-a-time, in the same window...
how do i make it open seperate tabs??
Originally posted by cybergoober:
I'm assuming you have tabbed browsing enabled...

In Safari's preferences under "Tabs":
Try checking the box for "Select new tabs as they are created" if it's not already checked

Also check, under "General":
"Open links from other applications:"
select - "in a new tab in the current window"
Yeah... okaaaay
     
Professional Poster
Join Date: Jan 2001
Location: brooklyn ny
Status: Offline
Reply With Quote
Nov 10, 2004, 01:44 PM
 
yeah...
cybergoober had it right the first time around...
i had to check "open links in a new tab in the current window".

just that, and it works.

surprised apple doesnt give us this option.

thanks all!
"At first, there was Nothing. Then Nothing inverted itself and became Something.
And that is what you all are: inverted Nothings...with potential" (Sun Ra)
     
Dedicated MacNNer
Join Date: Jun 2004
Status: Offline
Reply With Quote
Nov 10, 2004, 02:05 PM
 
Originally posted by cybergoober:
Uh...

Yeah... okaaaay
Doh! My apologies. Didn't connect your last post with your first one.
17" 2.33GHz C2D MacBook Pro / 320GB / 2GB
     
Professional Poster
Join Date: Jan 2001
Location: brooklyn ny
Status: Offline
Reply With Quote
Nov 10, 2004, 02:55 PM
 
meanwhile...
is there a size limitation with this? seems i can't get my last tab to read...
swapped places with another page, and the last one still is incomplete..
whatever i put at the end, i get an error message, a "file not found" sort of thing...

any ideas?


thanks

placed in startup items and am good to go...
"At first, there was Nothing. Then Nothing inverted itself and became Something.
And that is what you all are: inverted Nothings...with potential" (Sun Ra)
     
Mac Elite
Join Date: Jun 2003
Location: Newport News, VA USA
Status: Offline
Reply With Quote
Nov 10, 2004, 03:01 PM
 
Originally posted by azdude:
Doh! My apologies. Didn't connect your last post with your first one.
No worries


fisherKing - how many tabs are you trying to load? I guess you don't experience the tab loading problem when you select your folder of bookmarks and select "Open in Tabs"?
I've never tried this method with more than 3 or 4 tabs...
     
Professional Poster
Join Date: Jan 2001
Location: brooklyn ny
Status: Offline
Reply With Quote
Nov 10, 2004, 03:17 PM
 
Originally posted by cybergoober:
No worries


fisherKing - how many tabs are you trying to load? I guess you don't experience the tab loading problem when you select your folder of bookmarks and select "Open in Tabs"?
I've never tried this method with more than 3 or 4 tabs...

8 tabs (and i swear they're all essential... ).
works from safari ("open in tabs"), but in the script the last one always fails...
too much (of a good thing)??

"At first, there was Nothing. Then Nothing inverted itself and became Something.
And that is what you all are: inverted Nothings...with potential" (Sun Ra)
     
   
Thread Tools
Forum Links
Forum Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts
BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On
Top
Privacy Policy
All times are GMT -5. The time now is 11:07 AM.
All contents of these forums © 1995-2011 MacNN. All rights reserved.
Branding + Design: www.gesamtbild.com
vBulletin v.3.8.7 © 2000-2011, Jelsoft Enterprises Ltd., Content Relevant URLs by vBSEO 3.3.2