Sandboxed browser and opening sites in multiple tabs

Discussion, questions and support.
Post Reply
Faraway
Posts: 15
Joined: Sep 17th, ’13, 15:03

Post by Faraway » Nov 15th, ’15, 16:48

I'm using FF-based browser Palemoon running in sandboxie. Would like to make script that checks if sandboxed palemoon is already running (if not,then start it)

and open several sites each in their own tab.

Have tried to create something on my own but I'm still learning the basic commands of scripting... :oops:

thank you
User avatar
Marko
Posts: 1925
Joined: Mar 2nd, ’13, 21:02

Post by Marko » Nov 16th, ’15, 18:23

This works for Firefox, try to adapt it for Sandboxie:

Code: Select all

SetTitleMatchMode, 2
run Firefox.exe "www.yahoo.com"
WinWait Firefox
run Firefox.exe "www.google.com"
Faraway
Posts: 15
Joined: Sep 17th, ’13, 15:03

Post by Faraway » Nov 16th, ’15, 22:24

I have tried and somehow I got fastkeys crashing ;-) and I learned about 'SetTitleMatchMode'; Crash was because of wrong titlename (palemoon) while I should use (Pale Moon). Finally I have added sandboxie path to it. It's working now. But seems that sometimes only one tab is opened so I added 'send, ^t' to open a tab before opening and then I got two tabs and a new tab open. :roll:

Then I removed the new tab command and then it's working as intended. Why it sometimes refuses to open more than 1 tab I don't know.

Back to learning, :mrgreen:

thanks!

Ria
User avatar
Marko
Posts: 1925
Joined: Mar 2nd, ’13, 21:02

Post by Marko » Nov 18th, ’15, 20:38

Would this help?

run Firefox.exe -new-tab "www.google.com"
Post Reply