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:19 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 ... 120 121 122 123 124 [125] 126 127 128 129 130 ... 222next
3101
N.A.N.Y. 2009 / Re: NANY 2009 Release: Trout (audio player)
« Last post by skwire on August 03, 2011, 08:35 AM »
there could be some sort of caching issue at work here...

I'd assume this as well since build 10 is on the server.  In the meantime, try grabbing this (same zip, diff name):

http://skwire.dcmembers.com/apps/trout/trout_portable_.zip

Apologies for the trouble.   :-[
3102
N.A.N.Y. 2009 / Re: NANY 2009 Release: Trout (audio player)
« Last post by skwire on August 02, 2011, 10:59 PM »
And you're, for sure, running v1.0.6 build 10?
3103
N.A.N.Y. 2009 / Re: NANY 2009 Release: Trout (audio player)
« Last post by skwire on August 02, 2011, 10:40 PM »
Hmmm...seems to be okay here.  With Trout running, I'm able to press F1 in other applications and launch, say, their help file.  Do you happen to have an F1 hotkey defined under Trout's options?
3104
Coding Snacks / MOVED: IDEA: Make folder with current date
« Last post by skwire on August 02, 2011, 10:21 PM »
3105
N.A.N.Y. 2008 / Re: KeyCounter
« Last post by skwire on July 30, 2011, 02:19 PM »
No idea, really.  Either way, I've no desire to take KeyCounter to that level. 
3106
N.A.N.Y. 2008 / Re: KeyCounter
« Last post by skwire on July 30, 2011, 11:20 AM »
Thanks for the kinds words.  Your request is asked for quite frequently but, unfortunately, I don't think there is a way to do it.  Let me try to explain.

KeyCounter doesn't count "characters" such as 'a' or 'z' or 'я' or 'は' etc.  It counts presses of physical keys.  When using a Russian keyboard layout on an American keyboard, the 'z' key creates a 'я' character.  That's why the 'z' counter increases.  KeyCounter has no idea if a 'z' or a 'я' was created.  It just knows that that physical key was pressed on your keyboard.  

Does that make sense?
3108
Finished Programs / Re: IDEA: Add cover art to MP3 from command line
« Last post by skwire on July 29, 2011, 06:58 PM »
Thanks for sharing your work, wr975.  I'll mark this thread as solved.
3109
AutoHotkey / Re: Hide Gui Buttons previously created
« Last post by skwire on July 29, 2011, 08:26 AM »
In regards to GuiControl -- you have two choices if you don't have variable names assigned to the buttons.

  • You can use the "classname + instance number" combo.  Button1, Button2, etc.  I would advise against this method since that enumeration will change if you add other buttons before you add those looped buttons.
  • You can use the text of the button itself.  Obviously, the text would need to be unique for each button (which I don't think it is in your case).
3110
AutoHotkey / Re: Hide Gui Buttons previously created
« Last post by skwire on July 29, 2011, 08:06 AM »
GuiControlGet doesn't handle hiding/showing/disabling/enabling of buttons.  GuiControl does.  Consider this example:

Code: Autohotkey [Select]
  1. Loop, 6
  2. {
  3.     Gui, Add, Button, vmyButton%A_Index%, Click me
  4. }
  5.  
  6.  
  7. Sleep, 1500 ; Small delay to show form before changes.
  8.  
  9.  
  10. Loop, 6
  11. {
  12.     If ( Mod( A_Index, 2 ) = 1 ) ; Hide odd-numbered buttons.
  13.     {
  14.         GuiControl, Hide, myButton%A_Index%
  15.     }
  16.     Else ; Disable even-numbered buttons.
  17.     {
  18.         GuiControl, Disable, myButton%A_Index%
  19.     }
  20.     Sleep, 500 ; Small delay to show changes happening.
  21. }
  22.  
  23. Return ; End of auto-execute section.
  24.  
  25.  
  26. {
  27.     ExitApp
  28. }
  29. Return
3111
JGPaiva's GridMove and Ahk Tools / Re: Gridmove showcased on hak5
« Last post by skwire on July 28, 2011, 04:52 PM »
Congrats, jgpaiva.  Well earned!   :up:
3112
Post New Requests Here / Re: [Request] Tell me who said what first!
« Last post by skwire on July 28, 2011, 03:31 PM »
FWIW, I've been working offline with vevolva regarding this and do have a working prototype.

2011-07-28_153647.png
3113
Depending on what I'm doing, I use an exclamation point (majority of the time) or a tilde.  Some file managers don't sort the tilde to the top but (almost?) all sort the exclamation point to the top.
3114
Post New Requests Here / Re: [Request] Tell me who said what first!
« Last post by skwire on July 28, 2011, 07:34 AM »
It's basically a string-manipulation/regular-expressions task.

Yep, that's all it really is.  I would daresay that almost any language could handle this.
3116
N.A.N.Y. 2009 / Re: NANY 2009 Release: Trout (audio player)
« Last post by skwire on July 27, 2011, 11:00 PM »
It was a static hotkey I erroneously left in the code when I added the WriteToXML and WriteToINI functions.
3117
As browser plugin (Firefox) I'm using DownloadHelper (freeware).

I can vouch for this.  It works extremely well.
3118
N.A.N.Y. 2009 / Re: NANY 2009 Release: Trout (audio player)
« Last post by skwire on July 27, 2011, 09:14 PM »
Website | Installer | Portable
v1.0.6 build 10 - 2011-07-27
    ! Fixed a static hotkey issue.  (Thanks, Target)
3119
Coding Snacks / MOVED: when I download files.
« Last post by skwire on July 27, 2011, 02:20 PM »
3120
Coding Snacks / MOVED: wav player without any gui
« Last post by skwire on July 27, 2011, 02:06 PM »
3121
AutoHotkey / Re: Preventing fullscreen and getting back when that's failed
« Last post by skwire on July 27, 2011, 12:15 PM »
How are you blocking Alt-Enter within your script?  Are you doing it like this?:

Code: Autohotkey [Select]
  1. !Enter::Return
3122
Post New Requests Here / Re: [Request] Tell me who said what first!
« Last post by skwire on July 26, 2011, 10:35 AM »
First you say that the words you want stats for (the match words) are not user provided but now you say that all words would be okay, too.  I'm confused.  You sound as if you're not certain you want all words but you've also said you're not going to provide which words to gather data on.  So, how is the program supposed to determine which words to gather data on?
3123
Post New Requests Here / Re: [Request] Tell me who said what first!
« Last post by skwire on July 26, 2011, 08:21 AM »
So you want a report detailing EVERY word in your conversation file?   :huh:
3124
Post New Requests Here / Re: [Request] Tell me who said what first!
« Last post by skwire on July 26, 2011, 08:03 AM »
Are the match words ("red" and "one" in your examples) provided by the user? 
3125
Coding Snacks / Re: Multi Open Folder in a Local Area Network
« Last post by skwire on July 24, 2011, 04:10 PM »
As I mentioned in my other post, you can simply use a batch file or some AHK script:

AutoHotkey
Code: Autohotkey [Select]
  1. Run, %A_WinDir%\explorer.exe /e,c:\folder1\folder2
  2. Run, %A_WinDir%\explorer.exe /e,\\pm-7fg7fjkl432a\folder1\folder2
  3. ; Add more here...

Batch file
Code: Text [Select]
  1. explorer.exe /e,c:\folder1\folder2
  2. explorer.exe /e,\\pm-7fg7fjkl432a\folder1\folder2
  3. ; Add more here...
Pages: prev1 ... 120 121 122 123 124 [125] 126 127 128 129 130 ... 222next