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, 3:16 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 ... 101 102 103 104 105 [106] 107 108 109 110 111 ... 222next
2626
Yes, it's slower.  A by-product of using AHK_L for its Unicode support.  Unfortunately, there's really no way around it and I'd rather have the Unicode support.
2627
v1.2.6.2 is working fine on my 32-bits Vista SP 2.
I didn't notice any difference from the previous version.

Thanks, Curt.  This has got to be an AHK bug in regards to XPSP1/XPSP2 handling long matchlists.  At any rate, I've coded around the bug in this build:

PlayTime v1.2.6.3

Curt, TT1, could you both please test this build and see if it works for you?  I've tested it under XPSP2 (which exhibited the same issue TT1 had on SP1) but I don't have an SP1 VM to test on.  Let me know.  Thanks.
2628
My mistake, it should have been v1.2.6.2 but, sure, try it.  I've tracked it down to an issue on XPSP1/2.  Seems to work fine on XPSP3 and W7.  Let me know if it works for you and what OS you're using.

PlayTime v1.2.6.2
2629
Delete your config.ini first and then give this build a try, please: PlayTime v1.2.6.2
2630
Hmmm...I just tested it and it works for me no matter where the extension is in the list.  I'll change that code up to use a different method that may work better for you.
2631
PlayList is yet another great app.  Any way these three options could be considered?...

Here you go:

Website | Download
v1.2.6 - 2012-01-30
    + Added a "Cancel Scan" button to the toolbar.  (Thanks, Wayne)
    + Pressing the Escape key will now cancel a scan as well.
    + Added checkbox setting to toggle recursive scanning of folders.  (Thanks, Wayne)
    + Under the "Extra" menu, you can now configure which audio and video extensions that PlayTime will scan.  (Thanks, Wayne)
    * Moved the "Clear list" button to the toolbar.
2632
General Software Discussion / Re: WEATHER or Not ?
« Last post by skwire on January 30, 2012, 02:28 PM »
@Ath: Thanks for helping out.  =]

@crabby3: Thanks for trying out sWeather.  I hope you find it useful.  =]  BTW, InnoSetup is an application that makes installers for software.  In other words, it makes the "Install Wizards" you referenced in a previous post.
2633
General Software Discussion / Re: alarm
« Last post by skwire on January 30, 2012, 08:37 AM »
The countdown portion of my own Ten Timer application may be of use.
2634
General Software Discussion / Re: Windows 98 style File Extension Editor?
« Last post by skwire on January 29, 2012, 09:56 PM »
2635
Please try this build and thanks for your patience.  =]

Website | Download
v1.2.5 - 2012-01-27
    ! WPL parser was broken.  (Thanks, Curt)
2636
Crap...fixed.  Thank you.  BTW, Curt, see if those Unicode playists you had trouble with before work now.

Website | Download
v1.2.4 - 2012-01-27
    ! The "Add files" functionality was broken by the last build.  (Thanks, Curt)
2637
Website | Download
v1.2.3 - 2012-01-27
    + Added Unicode path support.
    * Updated to v0.7.53.0 of MediaInfo.dll.
    ! Windows 2000 and below no longer supported (due to added Unicode support).
    ! Removed Text-To-Speech option until I can figure out how to make it work
      with this Unicode version.  Apologies.
2638
Skwire Empire / Re: SFV Ninja (Simple File Verification application)
« Last post by skwire on January 27, 2012, 12:02 AM »
Hi, Cornucopiae, and welcome to the site.

Yes, I know in Unicode version is OK. MD5 is OK in ANSI. Why crc32 is not? I don't use Unicode version because it incompatible with QuickSFV and many other programs. Sorry for my Eng.

I've tested the ANSI version out a bit and the MD5 checksum reported in the ANSI version (for Unicode filenames) is not right.  It will report the same checksum for all Unicode filenames (D41D8CD98F00B204E9800998ECF8427E).  Is this the same checksum you get?  If so, this is a bug in the ANSI version.  In other words, you're going to have to use the Unicode version for your Unicode filenames.  The resulting SFV is written in UTF-8 format which is why a lot of other SFV programs can't handle SFV files produced by the SFV Ninja Unicode version.
2639
Any flavour of AHK will work with that.
2640
You can easily do this on the commandline with the PDF Toolkit (love this software).  Example:

pdftk.exe A=test.pdf cat A1 A20-end output out.pdf
          ---------- --- ---------- ------ -------
              |       |      |         |      |
              |       |      |         |      -> Output filename.
              |       |      |         |
              |       |      |         -> "output" switch.
              |       |      |
              |       |      -> Page range to include in output.  This
              |       |         will catenate page 1 and pages 20 up
              |       |         to the end of the doc, effectively
              |       |         deleting pages 2 through 19.
              |       |
              |       -> "cat" switch.
              |
              -> Sets the "A" variable to your input PDF file
                 for use when specifying the page range.
2641
Consider this:

Code: Autohotkey [Select]
  1.  
  2. WindowMatchText := "Notepad"
  3. RefreshInterval := 2000 ; Milliseconds.
  4.  
  5. SetTimer, WindowRefresh, % RefreshInterval
  6.  
  7. Return ; End of auto-execute section.
  8.  
  9.  
  10. WindowRefresh:
  11. {
  12.     ControlSend, , {F5}, % WindowMatchText
  13. }
  14. Return
2642
General Software Discussion / Re: copy and combine multiple text
« Last post by skwire on January 25, 2012, 03:59 PM »
If they're just simple plain-text snippets, you could use something like this:

Code: Autohotkey [Select]
  1. ^g:: ; Ctrl+G to copy.
  2. {
  3.     SendInput, ^c ; Copy selected text to clipboard.
  4.     myBlock .= Clipboard . "`n" ; Concatenate block of saved text.
  5. }
  6. Return
  7.  
  8. ^h:: ; Ctrl+H to paste.
  9. {
  10.     Clipboard := myBlock ; Put saved block of text on clipboard.
  11.     SendInput, ^v ; Paste into application.
  12.     myBlock := "" ; Clear block of text.
  13. }
  14. Return
2643
General Software Discussion / Re: copy and combine multiple text
« Last post by skwire on January 25, 2012, 03:49 PM »
Are these snippets simple plain-text?  As in, they're not copied from Word or Excel docs, right?
2644
Post New Requests Here / MOVED: Idea: Time each Timer
« Last post by skwire on January 25, 2012, 10:10 AM »
2645
Finished Programs / Re: DONE: Time each Timer
« Last post by skwire on January 25, 2012, 10:10 AM »
Hi Dezzper and welcome to the site.

Excellent. I was looking for a similar program. But...
Could you add the ability to control timers from the command line (so one can make a shortcut or start the timer from other programs)?

That's an interesting idea but more complex to implement than you might think due to the single-instance-ness that would have to be maintained.  I'll add it to my list and see what I can do.

Also, there is a slight inaccuracy in Help (help.txt):

Doh.   :-[  Will fix and thanks for reporting it.

BTW, I've further developed this application on this thread here:

https://www.donation...ex.php?topic=24540.0

I'm going to lock this thread so please direct any further posts to the one above.  Thanks.
2646
Post New Requests Here / Re: IDEA: Simple Sensatronics Tray Tool...
« Last post by skwire on January 25, 2012, 10:04 AM »
Trivial, eh?  And here I was, thinking that after drinking a cup of vegetable juice I'd gained amazing powers of programming.

You know...this is how you start programming...by doing exactly what you did in your post!   :Thmbsup:   I see people all that time that want to program but won't even attempt to do what you did in your post.  Keep on playing with AHK and you'll be making apps in no time.  BTW, just to be clear, my "trivial" statement wasn't meant to belittle your post and efforts.   :) 

Thanks for the ping back.  I'm working on getting that gigabit switch for the garage to get this sensor outside in the yard where it belongs!

I'll try to get your requests implemented soon.    :D
2647
Post New Requests Here / Re: IDEA: Simple Sensatronics Tray Tool...
« Last post by skwire on January 25, 2012, 09:51 AM »
@LEDAdd1ct:  Yep, what you're requesting is rather trivial to implement.  It's a matter of me finding the time to do so.  =]
2648
Post New Requests Here / Re: IDEA: Simple Sensatronics Tray Tool...
« Last post by skwire on January 23, 2012, 11:03 PM »
See if this build works better for you:

Website | Download
v1.0.3 - 2012-01-23
    + Added trend data to the tray toolip.  (Thanks, LEDAdd1ct)
    ! Fixed an issue where the trend icon didn't match up with the list icon.
      (Thanks, LEDAdd1ct)
2649
I use Calibre to convert most any e-book format into EPUB format for use on my phone.  Works very very well in this regard.
2650
Post New Requests Here / Re: IDEA: Simple Sensatronics Tray Tool...
« Last post by skwire on January 22, 2012, 08:18 PM »
Website | Download
v1.0.2 - 2012-01-22
    + Added a third column of temperatures to make the trend indicator more
      representative of the temperature actually trending in a given direction.
      (Thanks, LEDAdd1ct)
Pages: prev1 ... 101 102 103 104 105 [106] 107 108 109 110 111 ... 222next