ATTENTION: You are viewing a page formatted for mobile devices; to view the full web page, click HERE.

DonationCoder.com Software > Post New Requests Here

Launch tabs from a text file in Firefox, Chrome, Opera,.....

(1/3) > >>

Contro:
Launch tabs from a text file in Firefox, Chrome, Opera,.....

Like in this script for IE :


--- Code: Autohotkey ---#NoEnv  ; Recommended for performance and compatibility with future AutoHotkey releases.#Warn  ; Recommended for catching common errors.pongo ; inicial por error al compilar sobre esta línea.SendMode Input  ; Recommended for new scripts due to its superior speed and reliability.SetWorkingDir %A_ScriptDir%  ; Ensures a consistent starting directory.URL = http://www.google.com/search?q=navOpenInNewWindow = 1navOpenInNewTab = 2048navOpenInBackgroundTab = 4096navOpenNewForegroundTab = 65536 FileSelectFile, filepathwb := ComObjCreate("InternetExplorer.Application") ; create IEwb.Visible := true ; 'false' to not show IEloop, Read, %filepath%{if (A_index = 1)  wb.Navigate2(URL . A_LoopReadLine, navOpenNewForegroundTab) ; Navigateelsewb.Navigate2(URL . A_LoopReadLine, navOpenInBackgroundTab) ; Navigatesleep 100}return
Is it possible ?
 :-[

tomos:
I know how to open a link from (an older version of) Opera in FF - is that any help to you?
Text copied from Opera is plain text, so I got help there (on the Surfulator forum actually)

Contro:
I know how to open a link from (an older version of) Opera in FF - is that any help to you?
Text copied from Opera is plain text, so I got help there (on the Surfulator forum actually)
-tomos (February 01, 2014, 06:15 PM)
--- End quote ---

Anything may help. Welcome of course. I am learning. Just trying.
 :-*

Contro:
 :-[
Surfulator or Sufulater ?
 :P

tomos:
:-[
Surfulator or Sufulater ?
 :P
-Contro (February 01, 2014, 07:20 PM)
--- End quote ---

I aint fussy :D

Navigation

[0] Message Index

[#] Next page

Go to full version