topbanner_forum
  *

avatar image

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

Login with username, password and session length
  • Monday September 21, 2026, 2:47 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
General Software Discussion / Re: Automate options in windows 7
« Last post by Contro on February 04, 2014, 09:48 PM »
My screenshots
In spanish, but it's the same I suppose.
 :-*

2152
General Software Discussion / Re: Automate options in windows 7
« Last post by Contro on February 04, 2014, 09:42 PM »
Try Windows Easy Transfer. It's built in.
1) click Start
2) type "tr"
3) select Windows Easy Transfer
4) select 3rd option
5) select this is my old computer
6) select only your user account
7) click customize link
8) select only Windows settings (and program settings if you want those too)
9) click advanced
10) clear the checkboxes
11) click next
12) type password
13) select the save location of your .MIG file -- it will save the settings to a file you probably want to use a flash drive
14) rebuild your box
15) run Windows Easy Transfer again -- you should be able to figure it out from there

Do the community here a favor and write this up as a tutorial if it works for you as I've been strapped for time recently and always meant to do it!

trying. i will put my screenshots . i don't understand points 14) rebuild your box and 15) .

 :-[
2153
General Software Discussion / Re: How can I compila an iim file to an exe file ?
« Last post by Contro on February 04, 2014, 09:27 PM »
It's not a compilable software

http://img101.imageshack.us/img101/7251/besotene2.gif
http://img101.imageshack.us/img101/7251/besotene2.gif


Thanks for a clear answer.
 :-[
2154
General Software Discussion / Re: Cobian Backup
« Last post by Contro on February 04, 2014, 09:24 PM »
I use PA Backup every day and it's never let me down so I've no need to try any other back up program. Did install cobian on a friends computer once but I wasn't overly impressed (it looked horrible too in my opinion) and installed something else instead.

it's cloud backup service, no ?
 :-[
2155
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
2156
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
2157
 ;D
Yeahhhhh
By I would like under new by command, and mantain in the submenu optional.....
Is it possible
I think it is possible
 :-*
2158
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 ?
 :-[
2159
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
 :-*
2160
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
 :-*
2161
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:
2162
@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.
 :-*
2163
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.

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




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

2166
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 ?

 :-*

2167
 :-[
Surfulator or Sufulater ?
 :P
2168
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.
 :-*
2169
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 ?
 :-[
2170
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
2171
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
 :-*
2172
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
2173
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

 :-* :-\
2174
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

2175
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 ?

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