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:49 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 ... 118 119 120 121 122 [123] 124 125 126 127 128 ... 222next
3051
Post New Requests Here / MOVED: Windows management script
« Last post by skwire on August 22, 2011, 12:28 PM »
3052
Skwire Empire / Re: Hide GUI Playback Buttons
« Last post by skwire on August 22, 2011, 12:27 PM »
Trout 1.06.20port has the samplerate column, but the column displays no samplerate data!
The $samplerate token appears to have dropped dead as well ...

I fixed the $samplerate token in the latest build but the sample rate column works fine for me.

https://www.donation....msg259154#msg259154
3053
N.A.N.Y. 2009 / Re: NANY 2009 Release: Trout (audio player)
« Last post by skwire on August 22, 2011, 12:24 PM »
Website | Installer | Portable
v1.0.6 build 21 - 2011-08-22
    ! The $samplerate token was broken in the last build.  (Thanks, AEN007)
3054
Post New Requests Here / Re: IDEA: Allow commenting of files in directory listing
« Last post by skwire on August 22, 2011, 12:07 PM »
Yes, this is possible in WinXP:  http://tenmov.es/200...nts-to-files-win-xp/

I don't know if it works the same in Win 7.
3055
General Software Discussion / Re: mouse cursor "wraps" around edge of screen
« Last post by skwire on August 22, 2011, 12:00 PM »
Hi, MamasBoy, and welcome to the site.  Have a read through this thread:

https://www.donation...ex.php?topic=22565.0
3056
Finished Programs / Re: DONE: Windows management script
« Last post by skwire on August 21, 2011, 04:04 PM »
I removed that right-click titlebar to close bit (from Skwire). I was having bugginess at the time (with FF & FARR), & had a hunch it was related to that

Yep, messing with default behaviour like that can result in some wonkiness.  Keep in mind that you can always add a modifier to that RButton part (ctrl, alt, shift, win).

Also, do you mind if I move this thread to the Finished section?
3057
Skwire Empire / Re: Hide GUI Playback Buttons
« Last post by skwire on August 21, 2011, 03:51 PM »
I always open m3u playlists via the Clear list & add files (via a hotkey) ...
any chance users could specify the Select audio files dialog path?

I added a "Clear list and load playlist" option.  Please use that instead.  Also, due to an internal change, you will need to re-enter your playlists path.  Apologies.

As for the last used file and last used folder, they are already saved (since v1.0.3 build 254).

See here for the latest changes: https://www.donation....msg259026#msg259026
3058
N.A.N.Y. 2009 / Re: NANY 2009 Release: Trout (audio player)
« Last post by skwire on August 21, 2011, 03:50 PM »
Website | Installer | Portable
v1.0.6 build 20 - 2011-08-21
    + Added "Clear list and load playlist" item to the File menu.
    ! The "Find track" dialog didn't display the correct number of files under
      certain conditions.  (Thanks, Winkie)
    ! Adding files could sometimes result in extra blank playlist entries.
3059
N.A.N.Y. 2008 / Re: KeyCounter
« Last post by skwire on August 20, 2011, 03:11 PM »
Are you familiar with AutoHotkey programming at all?  If so, here's a quick snippet I wrote that will do what you want for letters a-z and numbers 0-9.  Press F1 at anytime to see a simple message box showing your keystroke stats.  You could easily extend this to cover all keys, to save/load data, display data in a more elegant way, etc.

Code: Autohotkey [Select]
  1. myKeys := "abcdefghijklmnopqrstuvwxyz1234567890"
  2.  
  3. ; Iterate through myKeys variable and create a hotkey for each letter and number.
  4. Loop, Parse, myKeys
  5. {
  6.     Hotkey, ~*%A_LoopField% up, CountKeys, On
  7. }
  8.  
  9. Return ; End of auto-execute section.
  10.  
  11.  
  12. CountKeys:
  13. {
  14.     ; Get the third character from the left of the hotkey name.
  15.     StringMid, myKey, A_ThisHotkey, 3, 1
  16.    
  17.     ; Increase character counter and total counter.
  18.     %myKey%_Count++
  19.     Total_Count++
  20. }
  21. Return
  22.  
  23. F1::
  24. {
  25.     ; Null out report variable.
  26.     myReport := ""
  27.    
  28.     ; Iterate over myKeys variable and build out report, key by key.
  29.     Loop, Parse, myKeys
  30.     {
  31.         myReport .= A_LoopField . ":`t" . %A_LoopField%_Count . "`n"
  32.     }
  33.    
  34.     ; Display report with total at the bottom.
  35.     MsgBox, % myReport . "`nTotal:`t" . Total_Count
  36. }
  37. Return

 
3060
Skwire Empire / Re: Hide GUI Playback Buttons
« Last post by skwire on August 20, 2011, 12:15 PM »
What about a sample rate column?

Here you go: https://www.donation....msg258918#msg258918
3061
N.A.N.Y. 2009 / Re: NANY 2009 Release: Trout (audio player)
« Last post by skwire on August 20, 2011, 12:15 PM »
Website | Installer | Portable
v1.0.6 build 16 - 2011-08-20
    + Added "Sample" column to display a file's sample rate frequency in Hz.
      You will initially see it as the last column.  Simply drag it to the
      position you want.  For those that don't want it, you can hide it via the
      View menu.  (Thanks, AEN007)
3062
Hi, Nzyme, and welcome to the site.  If you want to submit a new Coding Snack request, just start a new topic here:

https://www.donation...index.php?board=71.0
3063
Skwire Empire / Re: Hide GUI Playback Buttons
« Last post by skwire on August 19, 2011, 12:41 AM »
No, thanks, I will not be offering an option to hide the playback controls.  Your other requests are covered here: https://www.donation....msg258786#msg258786
3064
N.A.N.Y. 2009 / Re: NANY 2009 Release: Trout (audio player)
« Last post by skwire on August 19, 2011, 12:39 AM »
Website | Installer | Portable
v1.0.6 build 15 - 2011-08-19
    + Options > Paths tab.  You can now set which folder Trout uses to load and
      save playlists.  (Thanks, AEN007)
    + New /playpause commandline switch.  This will act as a toggle between play
      and pause.  (Thanks, AEN007)
    + Added $samplerate as a usable token for string formatting.  (Thanks, AEN007)
    * The /play commandline switch will no longer pause a track.  Use /playpause
      if you want a toggle.  (Thanks, AEN007)
    * The /pause commandline switch will no longer unpause a track.  Use
      /playpause if you want a toggle.  (Thanks, AEN007)
3065
Skwire Empire / Re: Request: /pause & /unpause switches
« Last post by skwire on August 19, 2011, 12:38 AM »
3066
Well, they have absolutely have their uses in apps like file managers.  I love the functionality that breadcrumb functionality brings.  However, I know for a fact that it's not as trivial to implement as urlwolf says.  It certainly isn't as easy as putting:

Breadcrumbs = True

...and you're done.   :P
3067
Finished Programs / Re: DONE: Windows management script
« Last post by skwire on August 17, 2011, 04:03 PM »
Regarding Alt-F4, I've always used two hands.  Right-hand thumb on the Alt key and left-hand index finger to press the F4 key.

But I'm curious as to why right clicking the titlebar would be easier than using the red X in the right corner.

Fitt's Law.  There's a lot more titlebar caption space to click in comparison to the close button.
3069
I totally understand the complexity of some of these features. Some other, like breadcrumbs, are trivial, though.

See?  This is exactly what I'm talking about.  How are you certain this is trivial?  Are you a developer that has written some "breadcrumb code" into your own app?  Most breadcrumb implementations I've seen seem to manipulate a standard ToolbarWindow32 class control.  Manipulating those controls smoothly in real-time can be a right pain in the arse.
3070
Finished Programs / Re: DONE: Windows management script
« Last post by skwire on August 17, 2011, 01:43 PM »
Here's a somewhat inelegant way to minimise all except for the active window (using your AltGr-F9, I believe):

Code: Autohotkey [Select]
  1. <^>!^F9::
  2. {
  3.     CurrentWinID := WinExist( "A" )
  4.     WinRestore, ahk_id %CurrentWinID%    
  5. }
  6. Return

Of course, the elegant way would be to get all IDs for all windows, loop through them and minimise all except the active window.  However, you then run the risk of minimising stuff you don't want like widgets, special hidden windows, etc.
3071
N.A.N.Y. 2009 / Re: NANY 2009 Release: Trout (audio player)
« Last post by skwire on August 17, 2011, 11:57 AM »
Hahaha...nice.  =]  I like trout...good tasting fish.
3072
Finished Programs / Re: DONE: Windows management script
« Last post by skwire on August 17, 2011, 11:28 AM »
Here's how to do your right-click titlebar request.  I've purposefully made it so that you can still right-click the titlebar icon to get the so-called SysMenu to show for a given window.  Thanks for covering the rest of the bases, Justice.   :Thmbsup:

Code: Autohotkey [Select]
  1. ~RButton::
  2. {
  3.     CoordMode, Mouse, Screen
  4.     MouseGetPos, ClickX, ClickY, hWnd
  5.     {
  6.         SendMessage, 0x84, , ( ClickX & 0xFFFF ) | ( ClickY & 0xFFFF ) << 16,, ahk_id %hWnd%
  7.         If ( ErrorLevel = 2 )
  8.         {
  9.             WinClose, ahk_id %hWnd%
  10.         }
  11.     }
  12. }
  13. Return
3073
You know...it's not always a matter of GUI controls or elegance.  Sometimes, a user will suggest an idea, method or some functionality that, to the human brain, is done without a second thought.  However, translating said idea to code is futile.  I've sometimes thought to myself, "Humans are subjective, code is not."

I hope that made some sense...
3074
I was hoping one of them would support Right-click on window titlebar to close.

This functionality is very easy to accomplish with a bit of AHK script.  Did you need something like that or do you currently use a different application for this functionality?
3075
Living Room / Re: DC Live Chat Feature Offline Until Further Notice
« Last post by skwire on August 16, 2011, 01:36 PM »
I use AdiIRC.  MDI, UTF-8 compatible and free.
Pages: prev1 ... 118 119 120 121 122 [123] 124 125 126 127 128 ... 222next