Hi sp2hari, Lunascape doesn't have that feature natively, but is possible via API.
You can change Script in a way to open a page in 3 engines while leaving the current tab. Basically what it does is to comment-out luna.Close so that it opens instead.
1. Copy the script below and save the text file as "OpenWithTripleEngine.vbs" 2. Go to [Tools]-[Scripts]-[Add Scripts] and register the above file. 3. At [Tools]-[Scripts], select the file.
Script ______(Comment out from here)__________________________________ Option Explicit
Dim luna Set luna = CreateObject("Lunascape2.LunascapeAPI")
Dim currentURL currentURL = luna.URL
Do While luna.ActiveIndex >= 0 luna.Close luna.ActiveIndex Loop
luna.Navigate luna.OpenDocument("{248B8F5D-FAE2-4f0e-9EC9-3B408DBF0B2B}", ""), currentURL luna.Navigate luna.OpenDocument("{614BA303-C6AB-47ec-B8B1-47908AEDDEDC}", ""), currentURL luna.Navigate luna.OpenDocument("{EE4BBE46-460C-4533-9816-E265BD02424D}", ""), currentURL
Set luna = Nothing ______(To here)__________________________________
|