Discussion, questions and support.
-
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...
thank you
-
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.
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,
thanks!
Ria