topbanner_forum
  *

avatar image

Welcome, Guest. Please login or register.
Did you miss your activation email?

Login with username, password and session length
  • Saturday June 28, 2025, 3:08 pm
  • Proudly celebrating 15+ years online.
  • Donate now to become a lifetime supporting member of the site and get a non-expiring license key for all of our programs.
  • donate

Recent Posts

Pages: prev1 ... 82 83 84 85 86 [87] 88 89 90 91 92 ... 158next
2151
Post New Requests Here / Re: coded needed launch url's
« Last post by Contro on February 04, 2014, 09:15 PM »
Miles the difficult point seems to be the same script for Firefox and other browsers. Exists or is a pending task ?


Best Regards
2152
Is specially useful when you have to filter group of url's . I was using the tab groups in FF , but this tool is more flexible. And I can use more browsers now.
I am going to try just now if I can have more than six browsers.

glad to see it working well for you! i gather from the readme.txt, the app is hard-coded with a max of 6 browsers. to increase the limit, you may have to post a feature request to MilesAhead. ;)

Understood. A great application anyway. I have adopted in the task bar
2153
 ;D
Yeahhhhh
By I would like under new by command, and mantain in the submenu optional.....
Is it possible
I think it is possible
 :-*
2154
Cheat Sheeter / Re: Any progress here?
« Last post by Contro on February 04, 2014, 07:28 PM »
Where can i download Cheat Sheeter
best regards

Where can I find a cheet sheet for Ahk ?
 :-[
2155
I don't remember well.
I think sometime I make this with windows xp.
Now is for windows 7
How can I do this ?

Best Regards
 :-*
2156
General Software Discussion / Re: Browser Bunch 1.4.2.0 - with BBSS
« Last post by Contro on February 04, 2014, 05:25 PM »
I am modifying the ini file. But i can't because seems that the program only can manage six browsers.

It's possible configurate 8 or more ?

Best Regards
 :-*
2157
General Software Discussion / Re: Browser Bunch 1.4.2.0 - with BBSS
« Last post by Contro on February 04, 2014, 04:39 PM »
some things is good to revive :

https://www.donation....msg348408#msg348408

I am trying this wonderful program.
 :tellme:
2158
@Contro: have you tried this app by MilesAhead - Browser Bunch?




No, but I will enjoy now.
 :-*

this program results very special. And wonderful.
You can download from http://milesaheadsoftware.tk/
At the present moment the download link from the above don't go.
Is specially useful when you have to filter group of url's . I was using the tab groups in FF , but this tool is more flexible. And I can use more browsers now.
I am going to try just now if I can have more than six browsers.
 :-*
2159
Post New Requests Here / Re: coded needed launch url's
« Last post by Contro on February 04, 2014, 04:28 PM »
thanks very much Miles
Goes like the angels.

 :-*
2160
@Contro: have you tried this app by MilesAhead - Browser Bunch?




No, but I will enjoy now.
 :-*
2161
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)

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

seeems to be included by default in Opera these days:
 (see attachment in previous post)

Oh. I have Opera Installed. running to try.
But I have to say i have adopted browseTraySwitch.
Yesterday i obtain Yandex browser. It's very similar to Chrome I think.
And with browseTraySwitch is easy to change between browsers

I have from time ago an addon for firefox to see a web using IE without abandon the browser.
Open link target in IE
really are pro-browsers to keep inside a determined browser, not to change the browser like browseTrySwitch does.

I don't remember what addon is, and I have tried to locate but don't see in the addons, but the addon is because i have the option.....

2162
Post New Requests Here / coded needed launch url's
« Last post by Contro on February 04, 2014, 01:07 PM »
I need to adapt this code to launch urls instead of search strings in google with IE.

Code: Autohotkey [Select]
  1. #NoEnv  ; Recommended for performance and compatibility with future AutoHotkey releases.
  2. #Warn  ; Recommended for catching common errors.pongo ; inicial por error al compilar sobre esta línea.
  3. SendMode Input  ; Recommended for new scripts due to its superior speed and reliability.
  4. SetWorkingDir %A_ScriptDir%  ; Ensures a consistent starting directory.
  5. URL = http://www.google.com/search?q=
  6. navOpenInNewWindow = 1
  7. navOpenInNewTab = 2048
  8. navOpenInBackgroundTab = 4096
  9. navOpenNewForegroundTab = 65536
  10.  
  11. FileSelectFile, filepath
  12. wb := ComObjCreate("InternetExplorer.Application") ; create IE
  13. wb.Visible := true ; 'false' to not show IE
  14. loop, Read, %filepath%
  15. {
  16. if (A_index = 1)
  17.         wb.Navigate2(URL . A_LoopReadLine, navOpenNewForegroundTab) ; Navigate
  18. else
  19.         wb.Navigate2(URL . A_LoopReadLine, navOpenInBackgroundTab) ; Navigate
  20. sleep 100
  21. }
  22. return

How can i do that ?

 :-*

2163
 :-[
Surfulator or Sufulater ?
 :P
2164
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)

Anything may help. Welcome of course. I am learning. Just trying.
 :-*
2165
Launch tabs from a text file in Firefox, Chrome, Opera,.....

Like in this script for IE :

Code: Autohotkey [Select]
  1. #NoEnv  ; Recommended for performance and compatibility with future AutoHotkey releases.
  2. #Warn  ; Recommended for catching common errors.pongo ; inicial por error al compilar sobre esta línea.
  3. SendMode Input  ; Recommended for new scripts due to its superior speed and reliability.
  4. SetWorkingDir %A_ScriptDir%  ; Ensures a consistent starting directory.
  5. URL = http://www.google.com/search?q=
  6. navOpenInNewWindow = 1
  7. navOpenInNewTab = 2048
  8. navOpenInBackgroundTab = 4096
  9. navOpenNewForegroundTab = 65536
  10.  
  11. FileSelectFile, filepath
  12. wb := ComObjCreate("InternetExplorer.Application") ; create IE
  13. wb.Visible := true ; 'false' to not show IE
  14. loop, Read, %filepath%
  15. {
  16. if (A_index = 1)
  17.   wb.Navigate2(URL . A_LoopReadLine, navOpenNewForegroundTab) ; Navigate
  18. else
  19. wb.Navigate2(URL . A_LoopReadLine, navOpenInBackgroundTab) ; Navigate
  20. sleep 100
  21. }
  22. return

Is it possible ?
 :-[
2166
Post New Requests Here / Re: Change default browser script
« Last post by Contro on February 01, 2014, 05:17 PM »
Súper !!!!!!. Dinamically configurable.
Obviously we can't configurate portable Torch as the default browser.....
But for a "rara avis" the portable coolnovo seems well configured. ....

Perhaps is only a Chrome...
I have opera as portable and not portable installation.
A great program !!!!!!

the configurations files are really editable with notepad
FIREFOX.btsregfile

and contains a lot of codes from the windows registry or to me seem so.
And have a manual configuration mode from the command line.....

 :P
2167
Post New Requests Here / Re: Change default browser script
« Last post by Contro on February 01, 2014, 03:46 PM »
There is also mouser's own BrowserTraySwitch:

https://www.donation...owsertray/index.html

Mouser !!!!!!!!!!!!!. Running to try
 :-*
2168
Post New Requests Here / Re: Change default browser script
« Last post by Contro on February 01, 2014, 11:37 AM »
Nevertheless with this script we can't automate the change. Only make faster the change.
 :P
2169
Post New Requests Here / Re: Change default browser script
« Last post by Contro on February 01, 2014, 11:36 AM »
I have installed from
http://www.changedefaultbrowser.com/

Recognises the browsers i have installed. But not the portables ones.
And only four browsers predefined obvously

 :-* :-\
2170
Post New Requests Here / Re: Change default browser script
« Last post by Contro on February 01, 2014, 11:24 AM »
Looking working this :

Change Default Browser 1.0

2171
Post New Requests Here / Re: Change default browser script
« Last post by Contro on February 01, 2014, 11:16 AM »
I am searching.

"The methods for changing the default browser vary across browsers, operating systems, and device types."

But perhaps these methods are base interacting with the browsers and not with the windows registry.....

How can i do that ?

 :-*
2172
Post New Requests Here / Re: Change default browser script
« Last post by Contro on February 01, 2014, 11:08 AM »
I would like for this occasion only AHK scripting codes
 :-*
2173
Post New Requests Here / Re: Change default browser script
« Last post by Contro on February 01, 2014, 11:07 AM »
but my target is run websites from a txt file where the path to the browser isn't and don't know the browser finally is on.

You can do what you want with a simple batch (.bat) file.

"C:\Program Files (x86)\Mozilla Firefox\firefox.exe" http://www.google.com
"C:\Program Files (x86)\Mozilla Firefox\firefox.exe" http://www.bing.com
"C:\Program Files (x86)\Mozilla Firefox\firefox.exe" http://www.cnn.com
...


I would like to learn to change the default browser with a script .........
2174
Post New Requests Here / Re: Change default browser script
« Last post by Contro on February 01, 2014, 11:06 AM »
I have one script to open in differents tabs for IE .

Exist the equivalent for FF ?

#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 = 1
navOpenInNewTab = 2048
navOpenInBackgroundTab = 4096
navOpenNewForegroundTab = 65536

FileSelectFile, filepath
wb := ComObjCreate("InternetExplorer.Application") ; create IE
wb.Visible := true ; 'false' to not show IE
loop, Read, %filepath%
{
if (A_index = 1)
   wb.Navigate2(URL . A_LoopReadLine, navOpenNewForegroundTab) ; Navigate
else
wb.Navigate2(URL . A_LoopReadLine, navOpenInBackgroundTab) ; Navigate
sleep 100
}
return
2175
Post New Requests Here / Change default browser script
« Last post by Contro on February 01, 2014, 10:19 AM »
I need the code to change the default browser.
By example

IE-FF-chrome-Safari, etc.

I supposed that run a web with a browser different to the default is :
If the default browser is : IE
and I want to launch a web with FF

Run C:\Program Files (x86)\Mozilla Firefox\firefox.exe https://www.google.com
or perhaps
run "C:\Program Files (x86)\Mozilla Firefox\firefox.exe" http://www.google.com

but my target is run websites from a txt file where the path to the browser isn't and don't know the browser finally is on.

 :-*
Pages: prev1 ... 82 83 84 85 86 [87] 88 89 90 91 92 ... 158next