How to switch between Browsers

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
8 messages Options
Reply | Threaded
Open this post in threaded view
|

How to switch between Browsers

Milan Zimmermann-2
Hi,

I know this was answered before but I cannot find it. I have several browsers
installed, the "default" (I guess that's the right name), OB,
RefactoringBrowser, and maybe more that i do not know about.

So far I have sheepishly accepted the default depending on the image. How can
i switch between them?

Thanks Milan
_______________________________________________
Beginners mailing list
[hidden email]
http://lists.squeakfoundation.org/mailman/listinfo/beginners
Reply | Threaded
Open this post in threaded view
|

Re: How to switch between Browsers

Rob Rothwell
Try evaluating SystemBrowser askForDefault in a workspace...I had the exact same problem!

Rob

On Mon, Jun 16, 2008 at 2:36 PM, Milan Zimmermann <[hidden email]> wrote:
Hi,

I know this was answered before but I cannot find it. I have several browsers
installed, the "default" (I guess that's the right name), OB,
RefactoringBrowser, and maybe more that i do not know about.

So far I have sheepishly accepted the default depending on the image. How can
i switch between them?

Thanks Milan
_______________________________________________
Beginners mailing list
[hidden email]
http://lists.squeakfoundation.org/mailman/listinfo/beginners


_______________________________________________
Beginners mailing list
[hidden email]
http://lists.squeakfoundation.org/mailman/listinfo/beginners
Reply | Threaded
Open this post in threaded view
|

Re: How to switch between Browsers

Dave Raymer
Another alternative is to keep a workspace with some common command in it ... for example, from my default image...
 
"Open the default browser      :" Browser openBrowser.
"Open the OmniBrowser          :" OBSystemBrowserAdaptor openBrowser.
"Open the refactoring browser  :" RefactoringBrowser openBrowser.
"Open the package pane browser :" PackagePaneBrowser openBrowser.

And then I can open exactly the one I want when I want it via highlight and "do it".
 
 
On Mon, Jun 16, 2008 at 5:40 PM, Rob Rothwell <[hidden email]> wrote:
Try evaluating SystemBrowser askForDefault in a workspace...I had the exact same problem!

Rob


On Mon, Jun 16, 2008 at 2:36 PM, Milan Zimmermann <[hidden email]> wrote:
Hi,

I know this was answered before but I cannot find it. I have several browsers
installed, the "default" (I guess that's the right name), OB,
RefactoringBrowser, and maybe more that i do not know about.

So far I have sheepishly accepted the default depending on the image. How can
i switch between them?

Thanks Milan
_______________________________________________
Beginners mailing list
[hidden email]
http://lists.squeakfoundation.org/mailman/listinfo/beginners


_______________________________________________
Beginners mailing list
[hidden email]
http://lists.squeakfoundation.org/mailman/listinfo/beginners




--
A man's greatest treasure is his wife, she is a gift from the Lord
- Proverbs 18:22
_______________________________________________
Beginners mailing list
[hidden email]
http://lists.squeakfoundation.org/mailman/listinfo/beginners
Reply | Threaded
Open this post in threaded view
|

Re: How to switch between Browsers

Rob Rothwell
Or...add those commands to the custom "do..." menu!

world->open->do...->edit this list.

You can also click on a browser's window menu (upper left, next to the "x") to "Choose new default browser"

Rob

On Mon, Jun 16, 2008 at 6:45 PM, Dave Raymer <[hidden email]> wrote:
Another alternative is to keep a workspace with some common command in it ... for example, from my default image...
 
"Open the default browser      :" Browser openBrowser.
"Open the OmniBrowser          :" OBSystemBrowserAdaptor openBrowser.
"Open the refactoring browser  :" RefactoringBrowser openBrowser.
"Open the package pane browser :" PackagePaneBrowser openBrowser.

And then I can open exactly the one I want when I want it via highlight and "do it".
 
 
On Mon, Jun 16, 2008 at 5:40 PM, Rob Rothwell <[hidden email]> wrote:
Try evaluating SystemBrowser askForDefault in a workspace...I had the exact same problem!

Rob


On Mon, Jun 16, 2008 at 2:36 PM, Milan Zimmermann <[hidden email]> wrote:
Hi,

I know this was answered before but I cannot find it. I have several browsers
installed, the "default" (I guess that's the right name), OB,
RefactoringBrowser, and maybe more that i do not know about.

So far I have sheepishly accepted the default depending on the image. How can
i switch between them?

Thanks Milan
_______________________________________________
Beginners mailing list
[hidden email]
http://lists.squeakfoundation.org/mailman/listinfo/beginners


_______________________________________________
Beginners mailing list
[hidden email]
http://lists.squeakfoundation.org/mailman/listinfo/beginners




--
A man's greatest treasure is his wife, she is a gift from the Lord
- Proverbs 18:22


_______________________________________________
Beginners mailing list
[hidden email]
http://lists.squeakfoundation.org/mailman/listinfo/beginners
Reply | Threaded
Open this post in threaded view
|

Re: How to switch between Browsers

Milan Zimmermann-2
In reply to this post by Rob Rothwell
On 2008 June 16, Rob Rothwell wrote:
> Try evaluating SystemBrowser askForDefault in a workspace...I had the exact
> same problem!

Thanks - just what I was looking for,

Milan

>
> Rob
>
> On Mon, Jun 16, 2008 at 2:36 PM, Milan Zimmermann <
>
> [hidden email]> wrote:
> > Hi,
> >
> > I know this was answered before but I cannot find it. I have several
> > browsers
> > installed, the "default" (I guess that's the right name), OB,
> > RefactoringBrowser, and maybe more that i do not know about.
> >
> > So far I have sheepishly accepted the default depending on the image. How
> > can
> > i switch between them?
> >
> > Thanks Milan
> > _______________________________________________
> > Beginners mailing list
> > [hidden email]
> > http://lists.squeakfoundation.org/mailman/listinfo/beginners

_______________________________________________
Beginners mailing list
[hidden email]
http://lists.squeakfoundation.org/mailman/listinfo/beginners
Reply | Threaded
Open this post in threaded view
|

Re: How to switch between Browsers

Milan Zimmermann-2
In reply to this post by Dave Raymer
On 2008 June 16, Dave Raymer wrote:
> Another alternative is to keep a workspace with some common command in it
> ... for example, from my default image...
>
> "Open the default browser      :" Browser openBrowser.
> "Open the OmniBrowser          :" OBSystemBrowserAdaptor openBrowser.
> "Open the refactoring browser  :" RefactoringBrowser openBrowser.
> "Open the package pane browser :" PackagePaneBrowser openBrowser.

Thanks!.

>
> And then I can open exactly the one I want when I want it via highlight and
> "do it".
>
>
> On Mon, Jun 16, 2008 at 5:40 PM, Rob Rothwell <[hidden email]>
>
> wrote:
> > Try evaluating SystemBrowser askForDefault in a workspace...I had the
> > exact same problem!
> >
> > Rob
> >
> >
> > On Mon, Jun 16, 2008 at 2:36 PM, Milan Zimmermann <
> >
> > [hidden email]> wrote:
> >> Hi,
> >>
> >> I know this was answered before but I cannot find it. I have several
> >> browsers
> >> installed, the "default" (I guess that's the right name), OB,
> >> RefactoringBrowser, and maybe more that i do not know about.
> >>
> >> So far I have sheepishly accepted the default depending on the image.
> >> How can
> >> i switch between them?
> >>
> >> Thanks Milan
> >> _______________________________________________
> >> Beginners mailing list
> >> [hidden email]
> >> http://lists.squeakfoundation.org/mailman/listinfo/beginners
> >
> > _______________________________________________
> > Beginners mailing list
> > [hidden email]
> > http://lists.squeakfoundation.org/mailman/listinfo/beginners

_______________________________________________
Beginners mailing list
[hidden email]
http://lists.squeakfoundation.org/mailman/listinfo/beginners
Reply | Threaded
Open this post in threaded view
|

Re: How to switch between Browsers

cedreek
otherwise, more UI oriented... there's a "choose default browser" in the menu of the browser...
see here: http://www.squeakside.com/seaside/pier/OB/

Cédrick

2008/6/17 Milan Zimmermann <[hidden email]>:
On 2008 June 16, Dave Raymer wrote:
> Another alternative is to keep a workspace with some common command in it
> ... for example, from my default image...
>
> "Open the default browser      :" Browser openBrowser.
> "Open the OmniBrowser          :" OBSystemBrowserAdaptor openBrowser.
> "Open the refactoring browser  :" RefactoringBrowser openBrowser.
> "Open the package pane browser :" PackagePaneBrowser openBrowser.

Thanks!.



_______________________________________________
Beginners mailing list
[hidden email]
http://lists.squeakfoundation.org/mailman/listinfo/beginners
Reply | Threaded
Open this post in threaded view
|

Re: How to switch between Browsers

Milan Zimmermann-2
On 2008 June 17, cdrick wrote:
> otherwise, more UI oriented... there's a "choose default browser" in the
> menu of the browser...
> see here: http://www.squeakside.com/seaside/pier/OB/

Thanks!

I think of all the different methods of setting it, this one is also easiest
to remember.

Milan

>
> Cédrick
>
> 2008/6/17 Milan Zimmermann <[hidden email]>:
> > On 2008 June 16, Dave Raymer wrote:
> > > Another alternative is to keep a workspace with some common command in
> > > it ... for example, from my default image...
> > >
> > > "Open the default browser      :" Browser openBrowser.
> > > "Open the OmniBrowser          :" OBSystemBrowserAdaptor openBrowser.
> > > "Open the refactoring browser  :" RefactoringBrowser openBrowser.
> > > "Open the package pane browser :" PackagePaneBrowser openBrowser.
> >
> > Thanks!.
> >  <http://lists.squeakfoundation.org/mailman/listinfo/beginners>


_______________________________________________
Beginners mailing list
[hidden email]
http://lists.squeakfoundation.org/mailman/listinfo/beginners