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, 7:29 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 ... 63 64 65 66 67 [68] 69 70 71 72 73 ... 222next
1676
Post New Requests Here / Re: IDEA: Event/release list maker
« Last post by skwire on December 14, 2013, 07:31 PM »
Hi, Rev01Yeti, and welcome to the DonationCoder site.  Regarding your request, perhaps it might make more sense if you could provide us with an example of the text you're copying to the clipboard.  Then, show us what you'd expect your list to look like afterward.
1677
sounds very good to me skwire :)

Here you go.  I used vlastimil's PhotoResize for my tests.  However, you could use this script with almost any app that accepts a filepath on its command line simply by changing the path on the first line of the following:

Code: Autohotkey [Select]
  1. PathToApp := "C:\tmp\PhotoResize400\PhotoResize400.exe"
  2.  
  3. Gui, Margin, 3, 3
  4. Gui, Add, Text, w170 h100 0x1200 Center, Drop some shortcuts...
  5. Return
  6.  
  7. GuiDropFiles:
  8. {
  9.     myLinks := ""
  10.     Loop, Parse, A_GuiEvent, `n, `r
  11.     {
  12.         SplitPath, A_LoopField, , , OutExtension, ,
  13.        
  14.         If ( OutExtension = "lnk" )
  15.         {
  16.             FileGetShortcut, % A_LoopField, OutTarget
  17.             myLinks .= " " . OutTarget
  18.         }
  19.     }
  20.     If ( myLinks )
  21.     {
  22.         Run, % PathToApp . myLinks
  23.     }
  24. }
  25. Return
  26.  
  27. {
  28.     ExitApp
  29. }
  30. Return
1678
Skwire Empire / Re: Release: sWeather (tray-based weather app)
« Last post by skwire on December 14, 2013, 07:52 AM »
Website | Download
v1.5.1 - 2013-12-13
    ! New date feature introduced in v1.5.0 was off by one.  "It was my
      understanding that there would be no math."  =]
1679
If you're open to the idea, I could easily write you a proxy script that would accept your shortcuts, extract the path to the actual image file, and then pass that path to an existing resizing app.  How does that sound?
1680
Skwire Empire / Re: Release: sWeather (tray-based weather app)
« Last post by skwire on December 13, 2013, 11:21 PM »
Website | Download
v1.5.0 - 2013-12-13
    + Added new option to show the date number in the extended forecast.
    * In the Options' WOIED list, the highlighted selection will stay
      visible when using the up/down buttons.  You can also now use
      drag-and-drop to move locations in the list.
1681
N.A.N.Y. 2014 / Re: NANY - Image Capture and Upload Program
« Last post by skwire on December 13, 2013, 02:17 PM »
Nice, Chris.  I can confirm the bug I reported is fixed.   :Thmbsup:
1682
Skwire Empire / Re: Release: sWeather (tray-based weather app)
« Last post by skwire on December 12, 2013, 12:11 PM »
Not sure if this has been reported.
I am on Windows 8.1 x64
I have Steam installed and use it to play Civilization V
When sWeather is running Civ crashes when loading saved games.

If I exit sWeather, the saved games load fine.

Very strange.  Does it only happen with Civ V?  I do have Steam and it seems to work fine with sWeather running.  Unfortunately, I do not own Civ V nor do I have Windows 8+.
1683
N.A.N.Y. 2014 / Re: NANY - Image Capture and Upload Program
« Last post by skwire on December 11, 2013, 08:43 PM »
Ok. I'll take a look at it tomorrow. Thanks!

Sure thing.  Happy to help.  =]
1684
N.A.N.Y. 2014 / Re: NANY - Image Capture and Upload Program
« Last post by skwire on December 11, 2013, 07:56 PM »
Gave this a test and I like the very well-designed interface and history functionality.  However, I cannot make successive captures work.  I'm doing the following:

  • Start the app.  Icon in tray.  Good.
  • Press F9.  Cursor changes to crosshair.
  • Select a region.  Cursor changes again.  Right-click and choose Upload.
  • Image is uploaded, url copied to clipboard, and all is well to this point.
  • Press F9 again.  Cursor changes to crosshair as before.
  • Selecting a region does not work now.  That is, I don't see the translucent window.
  • The only way out is to press Escape or kill the process.

Tested on two W7/64 systems with the same results.
1685
General Software Discussion / Re: Yahoo mail outage!?
« Last post by skwire on December 11, 2013, 01:05 PM »
I know, my machine is a bit ornery

What?!  That's crazy talk...   :P
1686
Skwire Empire / Re: Release: sWeather (tray-based weather app)
« Last post by skwire on December 11, 2013, 12:28 PM »
Hi skwire - just a small bug (that may have been reported already) :
if you enable the date/time etc in the titlebar, the time doesn't keep up with the system time until a refresh (either manual or weather data refresh).

This is actually by design so let me explain.  Rather than code up my own time zone functionality (which would be a HUGE pain in the ass given all the different time zones in the world, daylight saving, etc.), sWeather uses Time Zone API found here: http://www.worldweat...m/time-zone-api.aspx.  I simply pass it the latitude and longitude coordinates I get from the weather location and it sends me back the time.  It's easy and works very well (keeping up with all the different time zone idiosyncrasies of the world).  I use the free API which has a limited number of API calls per hour so I only query it when the weather is refreshed.  I also didn't want sWeather running a per-second loop to update that in real-time, either.  In other words, sWeather isn't a full-fledged world clock.  However, now that you mention it, I could put a help button next to that option explaining this limitation.  I hope that helps to explain things a bit.   :)
1687
Post New Requests Here / Re: IDEA: Delete all files except two particular ones
« Last post by skwire on December 10, 2013, 06:57 PM »
ahk does make plumbing the depths of folders really simple. A big time saver.

Hell yes.  AHK makes tasks like this dead simple.
1688
Post New Requests Here / Re: IDEA: Delete all files except two particular ones
« Last post by skwire on December 10, 2013, 12:11 AM »
1. I'd prefer typing into the script the name of the folder to act upon in the deletion process, just to be absolutely sure.  Would save user time as well, as opposed to the Windows navigation routine.
2.  Possibly a way of giving a signal that task has been completed.  "Done."

Here you go:

Code: Autohotkey [Select]
  1. ; Add filenames to save here, one per line.
  2. FileNamesToSave =
  3. (
  4. keep_this_one.png
  5. save_me_as_well.png
  6. )
  7.  
  8. ; Folder to recurse.
  9. myFolder := "c:\5"
  10.  
  11. Loop, % myFolder . "\*.png", 0, 1 ; Recurse through PNG files.
  12. {
  13.     ; Store some values.
  14.     myFilename     := A_LoopFileName
  15.     myFileFullPath := A_LoopFileFullPath
  16.     SaveFile       := False
  17.    
  18.     ; Iterate through filenames to save and
  19.     ; check against currently parsed filename.
  20.     Loop, Parse, FileNamesToSave, `n, `r
  21.     {
  22.         If ( myFilename = A_LoopField )
  23.         {
  24.             ; Filename to save matches.
  25.             ; Set as true and break out.
  26.             SaveFile := True
  27.             Break
  28.         }
  29.     }
  30.  
  31.     If ( SaveFile = False )
  32.     {
  33.         ; Change to FileDelete to delete directly.
  34.         FileRecycle, % myFileFullPath
  35.     }
  36. }
  37.  
  38. MsgBox, Done.
  39.  
1689
N.A.N.Y. 2014 / Re: N.A.N.Y. 2014 - New Apps for the New Year - Welcome Thread
« Last post by skwire on December 09, 2013, 01:21 PM »
Count me in!

Well, well, well.  Looky what the cat dragged in...   :D :D :D  Been a while, eh?  Good to have you back...
1690
Skwire, this gem is completed.  Can be moved if you want.

Done, thank you.   ;)  Also, thank you, Chris, for writing this one.
1692
Post New Requests Here / Re: IDEA: Delete all files except two particular ones
« Last post by skwire on December 08, 2013, 10:06 PM »
Here's an AHK snippet that should meet your requirements:

Code: Autohotkey [Select]
  1. ; Add filenames to save here, one per line.
  2. FileNamesToSave =
  3. (
  4. keep_this_one.png
  5. save_me_as_well.png
  6. )
  7.  
  8. ; Get folder from user.
  9. FileSelectFolder, myFolder, , 2
  10.  
  11. If ! ( ErrorLevel ) ; User did not cancel.
  12. {
  13.     Loop, % myFolder . "\*.png", 0, 1 ; Recurse through PNG files.
  14.     {
  15.         ; Store some values.
  16.         myFilename     := A_LoopFileName
  17.         myFileFullPath := A_LoopFileFullPath
  18.         SaveFile       := False
  19.        
  20.         ; Iterate through filenames to save and
  21.         ; check against currently parsed filename.
  22.         Loop, Parse, FileNamesToSave, `n, `r
  23.         {
  24.             If ( myFilename = A_LoopField )
  25.             {
  26.                 ; Filename to save matches.
  27.                 ; Set as true and break out.
  28.                 SaveFile := True
  29.                 Break
  30.             }
  31.         }
  32.    
  33.         If ( SaveFile = False )
  34.         {
  35.             ; Change to FileDelete to delete directly.
  36.             FileRecycle, % myFileFullPath
  37.         }
  38.     }
  39. }
  40.  
1693
N.A.N.Y. 2014 / Re: NANY 2014 Pledge + Alpha: Weather Station Warlock
« Last post by skwire on December 08, 2013, 09:32 PM »
Worked well in the testing that I gave it.  Plus, I always like your application's interfaces.  Kudos.   :D
1694
Really nice, wraith808.  I like how smooth it is when you resize the floating window.   :Thmbsup:
1695
N.A.N.Y. 2014 / Re: N.A.N.Y. 2014 - New Apps for the New Year - Welcome Thread
« Last post by skwire on December 08, 2013, 06:14 PM »
I've got two forthcoming.  Not just pledges...they're actually done; I just need to create their threads and post.
1696
General Software Discussion / Re: tool to check if TIFF files compressed ?
« Last post by skwire on December 06, 2013, 04:19 PM »
with numbers higher than 3 - just seemed to make it jerkier though

Those were my findings as well.  Three seemed a pretty good balance so that's why it's the default.

1697
N.A.N.Y. 2012 / Re: NANY 2012 Release: RecursiView
« Last post by skwire on December 05, 2013, 05:34 PM »
Can you add an option/button to pause or stop search?

Please give this a try.

Website | Download
v1.0.3 - 2013-12-05
    + Added a Cancel button to cancel image loading and thumbnail generation.
      (Thanks, ahkscript)
1698
Skwire Empire / Re: Trout Request: Automatic playlist creation
« Last post by skwire on December 05, 2013, 10:47 AM »
Trout does have a real deficiency when it comes to playlists.  Mainly because I, personally, rarely use them.  I'll give this some thought.  =]
1699
Skwire Empire / Re: Release: sStockQuote
« Last post by skwire on December 05, 2013, 10:26 AM »
Well, currently sStockQuote is just something like a Ticker+Price tool.

That was my original intention in writing this app.

Why not extending it to a full (or at least advanced) portfolio management tool?

A few reasons:

  • See above.  The original intent of the app was a quick way to check multiple stock prices.
  • It seems there are plenty of applications already out there that do portfolio management.  No need to reinvent the wheel.
  • I simply don't follow the stock market enough to care about portfolio management.

1700
General Software Discussion / Re: tool to check if TIFF files compressed ?
« Last post by skwire on December 05, 2013, 09:20 AM »
hmm, twice now this morning though, I've had a problem with display when scrolling horizontally using the Ctrl+mousewheel combo. See shot - what has been scrolled disappears; also what I am scrolling towards does not show - so the visible area gets smaller all the time. Also, it jumps to ~23% CPU (i.e. most of one core).

I have seen this occasionally with some of my apps as well.  Unfortunately, I'm not certain what causes it so it's very hard to debug.

would it be possible to speed up the horizontal scrolling?

Please check the changelog of the new version.  The hack doesn't work quite as smoothly as I'd like but I think you'll be able to find a balance.

Website | Download
v1.1.0 - 2013-12-05
    + Added Ctrl+MouseWheel hotkeys for faster horizontal scrolling.  This
      is adjustable using a hidden INI setting.  Close tiffInfoGUI and add the
      following entry under the [Settings] section where # is an integer
      value (default 3):

      HScrollCount=#
Pages: prev1 ... 63 64 65 66 67 [68] 69 70 71 72 73 ... 222next