UrlRun

  • Thread starter Thread starter Spacey Spade
  • Start date Start date
S

Spacey Spade

Does anyone know an equivalent for UrlRun that will work with Kmeleon?
Does it work with Firefox? I used to use it with Internet Explorer.
Here is a description of UrlRun:

UrlRun

To deal w/ the number of wrapped URLs I get in my email box, I built
UrlRun. It checks the clipboard for an URL, no matter how broken,
strips spaces, newlines and greater thans out of it and runs IE. To
handle an URL as show above, select it, copy it to the clipboard and
launch UrlRun.exe. I keep it on my QuickStart toolbar.

http://www.sellsbrothers.com/tools/#urlrun
 
Spacey said:
Does anyone know an equivalent for UrlRun that will work with Kmeleon?
Does it work with Firefox? I used to use it with Internet Explorer.
Here is a description of UrlRun:

UrlRun

To deal w/ the number of wrapped URLs I get in my email box, I built
UrlRun. It checks the clipboard for an URL, no matter how broken,
strips spaces, newlines and greater thans out of it and runs IE. To
handle an URL as show above, select it, copy it to the clipboard and
launch UrlRun.exe. I keep it on my QuickStart toolbar.

http://www.sellsbrothers.com/tools/#urlrun

Check out URL Fixer v1.10

This tool helps you fix URLs that are broken in emails and usenet articles

http://geekcorp.com/urlfixer/

Zo
 
Zo said:
Check out URL Fixer v1.10

This tool helps you fix URLs that are broken in emails and usenet articles

http://geekcorp.com/urlfixer/

UrlRun was nicer in a sense, because it wouldn't run in the background.
Also, it automatically launched Internet Explorer (or the default
browser, though I have kmeleon as default). Could someone try UrlRun
with their non-IE default browser? If it doesn't work, I will email
the author a request to support non-microsoft browsers.
 
Spacey Spade said:
UrlRun was nicer in a sense, because it wouldn't run in the background.
Also, it automatically launched Internet Explorer (or the default
browser, though I have kmeleon as default). Could someone try UrlRun
with their non-IE default browser? If it doesn't work, I will email
the author a request to support non-microsoft browsers.

Just tried urlrun after temporarily swapping default browser from IE to
Firefox it opened the link in Firefox. Maybe a problem with your
K-meleon default browser setting???

If it's any help, something similar to URLrun could be done with a very
simple hta script...

This reads the clipboard, removes '>', whitespace, newline and carriage return
characters and any characters before the www. http: or whatever.
And will run the browser specified in the browser variable; %URL%
will be replaced.

Save with a .hta extension - requires Mshta.exe (installed with IE)
and a reasonably up to date windows scripting host.



<HTML><HEAD><TITLE>URL Fix</TITLE>
<HTA:APPLICATION ID="URL.hta" WINDOWSTATE="minimize" />
<script>

var browser = '"C:\\Program Files\\Internet Explorer\\Iexplore.exe" %URL%'
//edit browser eg var browser = '"C:\\Program Files\\Mozilla Firefox\\FireFox.exe" %URL%'

var clip=window.clipboardData.getData("Text");

if (clip)
{
var rxcleanup =/[>\s]/igm;
var rxurl= /(http:|https:|file:|ftp:|var u= clip.replace(rxcleanup,"").match(rxurl);

if(u)
{
browser = browser.replace(/%URL%/m,u[0]);
var WshShell = new ActiveXObject("WScript.Shell");
if(WshShell) WshShell.Run(browser, 1, false);
}
}
window.close();
</script></HEAD><BODY></BODY></HTML>
 
Mel said:
UrlRun was nicer in a sense, because it wouldn't run in the background.
Also, it automatically launched Internet Explorer (or the default
browser, though I have kmeleon as default). Could someone try UrlRun
with their non-IE default browser? If it doesn't work, I will email
the author a request to support non-microsoft browsers.

Just tried urlrun after temporarily swapping default browser from IE to
Firefox it opened the link in Firefox. Maybe a problem with your
K-meleon default browser setting???

If it's any help, something similar to URLrun could be done with a very
simple hta script...

This reads the clipboard, removes '>', whitespace, newline and carriage return
characters and any characters before the www. http: or whatever.
And will run the browser specified in the browser variable; %URL%
will be replaced.

Save with a .hta extension - requires Mshta.exe (installed with IE)
and a reasonably up to date windows scripting host.



<HTML><HEAD><TITLE>URL Fix</TITLE>
<HTA:APPLICATION ID="URL.hta" WINDOWSTATE="minimize" />
<script>

var browser = '"C:\\Program Files\\Internet Explorer\\Iexplore.exe" %URL%'
//edit browser eg var browser = '"C:\\Program Files\\Mozilla Firefox\\FireFox.exe" %URL%'

var clip=window.clipboardData.getData("Text");

if (clip)
{
var rxcleanup =/[>\s]/igm;
var rxurl= /(http:|https:|file:|ftp:|var u= clip.replace(rxcleanup,"").match(rxurl);

if(u)
{
browser = browser.replace(/%URL%/m,u[0]);
var WshShell = new ActiveXObject("WScript.Shell");
if(WshShell) WshShell.Run(browser, 1, false);
}
}
window.close();
</script></HEAD><BODY></BODY></HTML>

No IE here, so hta is not a registered file type. Moving to Firefox.
Thanks!
 
Back
Top