topbanner_forum
  *

avatar image

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

Login with username, password and session length
  • Thursday November 27, 2025, 10:19 am
  • 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 ... 75 76 77 78 79 [80] 81 82 83 84 85 ... 222next
1976
I wanted something similar, a small toolbar to control Winamp.  Something that integrates directly into Windows Explorer or the title bar of whatever program I happen to be using...

http://web.archive.o...ware/WinampBar41.exe

It's old, but it still seems to work fairly well.  YMMV.
1977
Interesting.. but you could also just do a shell exec to open a url and it will open in default browser, OR simply invokle an explicit browser exe and pass the url to it on commandline.

Sure, but then you run the risk of multiple windows/tabs (something the OP didn't want).
1978
No, it's not like what you think.  In fact, it's rather inelegant.  Here's a commented snippet that should explain things:

Code: Autohotkey [Select]
  1. myURL := "myURLsArray" . _URLnum ; Dereference the variable.
  2. SendInput, ^l                    ; Send a Ctrl+L hotkey to focus the address bar.  Works for FF, IE, and Chrome.
  3. SendInput, % %myURL%             ; Send the actual URL text.
  4. Sleep, 750                       ; Small wait time to allow for long(er) URLs.
  5. SendInput, {ENTER}               ; Send and Enter keystroke to load the page.

Make more sense now?  A hack, pretty much.   :-[
1979
Thanks, Skwire, for the AHK script!

You're welcome.  Is that script good enough for your purposes?  If so, I'll mark this thread as done.

1980
Finished Programs / Re: DONE: Files from Text List with Default Content
« Last post by skwire on March 12, 2013, 04:17 PM »
Give Chris' application a run-through and see if it satisfies your initial request.   :)
1981
Finished Programs / Re: DONE: Files from Text List with Default Content
« Last post by skwire on March 12, 2013, 04:01 PM »
So, basically, you want a bunch of exact duplicate files with differing filenames, whose filenames are sourced from a list that you provide?  If so, this is a piece of cake with a small AutoHotkey script.  Are you familiar with AutoHotkey at all?
1982
Finished Programs / Re: DONE: Files from Text List with Default Content
« Last post by skwire on March 12, 2013, 03:34 PM »
How large is the block of content?
1983
Here's a basic AHK example that seems to work in Firefox, IE, and Chrome.  Run it, focus your browser, and use Ctrl+Right and Ctrl+Left to cycle through the list.  Of course, change the URL list to suit.

Code: Autohotkey [Select]
  1. myURLs =
  2. (
  3. http://www.donationcoder.com
  4. http://www.filehippo.com
  5. http://www.arstechnica.com
  6. )
  7.  
  8.  
  9. StringSplit, myURLsArray, myURLs, `n
  10.  
  11.  
  12. ^Right::
  13. {
  14.     myCounter++
  15.     % ( myCounter > myURLsArray0 ) ? ( myCounter := 1 ) : ()
  16.     URL_GoTo( myCounter )
  17. }
  18. Return
  19.  
  20.  
  21. ^Left::
  22. {
  23.     myCounter--
  24.     % ( myCounter < 1 ) ? ( myCounter := myURLsArray0 ) : ()
  25.     URL_GoTo( myCounter )    
  26. }
  27. Return
  28.  
  29.  
  30. URL_GoTo( _URLnum )
  31. {
  32.     myURL := "myURLsArray" . _URLnum
  33.     SendInput, ^l
  34.     Sleep, 300
  35.     SendInput, % %myURL%
  36.     Sleep, 750
  37.     SendInput, {ENTER}
  38. }
1984
Finished Programs / Re: File2Folder problem
« Last post by skwire on March 10, 2013, 07:07 PM »
You are not a jerk. I am just a NOOB. Either way, I somehow got it working and am extremely pleased with the results

Great to hear.  Enjoy your stay here at DonationCoder.   :)
1985
Finished Programs / Re: File2Folder problem
« Last post by skwire on March 10, 2013, 06:00 PM »
Hi, darylbaz, and welcome to the DonationCoder site.

At the risk of sounding like a jerk  :-[, it means what it says; Files2Folder is unable to create the folder it needs to move your selected files into.  Is the folder UAC-protected?  Or, is it a network folder that you don't have permissions to create a folder in?  Does F2F work in other folders for you?
1986
General Software Discussion / Re: tool to check if TIFF files compressed ?
« Last post by skwire on March 08, 2013, 02:00 PM »
Website | Download
v1.0.7 - 2013-03-08
    + Added "Samples/Pixel" and "Bit Depth" columns (Thanks, Paul)
    + Added "Clear list" and "Always on Top" toolbar buttons.
    + Added "Copy" functionality to the Edit menu and Ctrl+C hotkey.  This
      allows you to copy the selected files to the clipboard for pasting
      elsewhere using a file manager.  (Thanks, Paul)
    * Changed "Bits" column name to "Bits/Sample."
    ! Fixed refresh issue when using a dropped folder.
    ! Resolution column data wasn't cleared properly.
1987
General Software Discussion / Re: Outlook synching
« Last post by skwire on March 07, 2013, 06:46 PM »
The easiest solution is going to be switching those POP account to IMAP.  Even Yahoo offer IMAP access these days.

imap.mail.yahoo.com (use SSL IMAPS on port 993)
smtp.mail.yahoo.com (use SSL SMTPS on port 465)

Trying to synch up POP accounts across multiple computers is an exercise in absolute frustration (as you've found out).
1988
Finished Programs / Re: DONE: Sort images into folders based on resolution
« Last post by skwire on March 06, 2013, 10:49 AM »
Website | Download
v1.0.7 - 2013-03-06
    + Added options to the "Sort all" method which allows for sorting based
      on only width, only height, or both.  (Thanks, Aimee)
    + Added "Match/Does not match" option to the aspect ratio sort method.
    * Swapped the uppper/lower total pixels range option fields.
1989
General Software Discussion / Re: upgrade to SSD
« Last post by skwire on March 05, 2013, 05:59 PM »
XXClone should be all you need.  I have used it myself to easily clone a current Windows boot disk to another disk/SSD.
1990
And you used it for hammering the nails in your workbench, right?

Paperweight, mostly.  =]
1991
Post New Requests Here / Re: IDEA: Startup Software Needed
« Last post by skwire on March 04, 2013, 02:17 PM »
I think WinPatrol might be your best option as what you're requesting is not at all trivial to code.
1992
Living Room / Re: When you make your 100'th Post
« Last post by skwire on March 04, 2013, 01:35 PM »
 ;D.  Pretty cool timing.
1993
Post New Requests Here / Re: IDEA: Startup Software Needed
« Last post by skwire on March 04, 2013, 12:00 PM »
WinPatrol, perhaps?
1994
DC Gamer Club / Re: Pre-Purchase Sniper Elite: Nazi Zombie Army 4-Pack
« Last post by skwire on March 03, 2013, 04:38 PM »
Never mind; I got it figured out.   :D
1995
DC Gamer Club / Re: Pre-Purchase Sniper Elite: Nazi Zombie Army 4-Pack
« Last post by skwire on March 03, 2013, 04:34 PM »
Hmmm...I forgot about this and, now that I check, the game doesn't appear in my Steam library list.   :huh:
1996
Living Room / Re: When is your birthday?!
« Last post by skwire on March 01, 2013, 06:00 PM »
Mine was a week ago on February 22nd.
* skwire high fives Hally, a fellow Pisces.   :D  
*Not that I believe in that Zodiac crap or anything... :P
1997
Announce Your Software/Service/Product / Re: Quick View
« Last post by skwire on March 01, 2013, 10:27 AM »
Thanks, Chris.  It seems to work fine with some sample images I threw at it.   :up:
1998
Living Room / Re: PayPal users are frauds :-(
« Last post by skwire on February 25, 2013, 12:23 PM »
*shrug*  I'm going to guess it's a "it's a matter of principle" thing and the avoidance of feeling like you're getting screwed.
1999
Living Room / Re: PayPal users are frauds :-(
« Last post by skwire on February 25, 2013, 12:01 PM »
I wonder if these are cases where:

1) User buys a piece of software using Paypal.
2) User receives software key/serial via email.
3) User then claims a fraudulent transaction and demands refund.
4) Paypal refunds user and seller loses that transaction and monies.
5) User now has a legitimate key/serial and is not out any money.

Perhaps?
2000
General Software Discussion / Re: Desactivated services and irregular things
« Last post by skwire on February 25, 2013, 10:56 AM »
I think what Contro wants is an application that automatically tells him which services are un-necessary and disables them.  I don't think such an app exists because each person/computer has different needs.  Contro, there are many guides on the internet that describe what you want to do.  However, you're going to have to be the one that decides whether or not to turn off a given service.

https://www.google.c...ary+windows+services
Pages: prev1 ... 75 76 77 78 79 [80] 81 82 83 84 85 ... 222next