topbanner_forum
  *

avatar image

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

Login with username, password and session length
  • Friday April 26, 2024, 2:00 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

Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - skwire [ switch to compact view ]

Pages: prev1 2 3 [4] 5 6 7 8 9 ... 222next
76
- A click-through Option (suggested by bandit012345)

This could be done.

- Transparent Gif's should display transparent instead of white

AutoHotkey doesn't handle animated GIFs natively, so I'm not certain if this would be possible.

- An Option to do Animations with png Files e.g. a fps option, and a option to specify a folder full of png's (the frames)

This is out of scope for this application.  However, with the current options available within Frameless, you should be able to accomplish what you want with your own batch or AHK script.

PS: I hope that someone is still reading this in 2020  :D The Feature Request-Button on the Website didn't work

Which button and which website?


77
Post New Requests Here / Re: IDEA: Battery indicator in Window Titles
« on: November 11, 2020, 06:36 PM »
I'm going to need some time to find a workaround

Is there no way to whitelist a file within Avira?

78
Post New Requests Here / Re: IDEA: Battery indicator in Window Titles
« on: November 11, 2020, 03:09 PM »
Here's my take on this snack: http://www.dcmembers...nacks/TB_Battery.zip

Still early and not feature complete, but the basic functionality is there.  It looks like this:

Screenshot 2020-11-11 150454.png

Notes:

  • Currently, it updates every fifteen seconds (will be made configurable at some point).
  • A plus in front of the battery glyph shows that you're charging (plugged in) while a minus shows that you're discharging (not plugged in).
  • Exiting from the tray icon should clean up the titlebars' text.
  • This suffers from the same issue as Chris' in that windows that constantly update their titlebar text will remove the battery info.  However, the fifteen second timer will bring it back.

79
I tried to find similar peace of software, but google didn't show me this site. After long searching, this site came to mind and  I added donationcoder to my query. I'm sorting 2000 pics for my picture frame right now. Thanks a lot!  :-* :P :Thmbsup:

Great to hear.  I hope the program worked well for you.   :Thmbsup:

80
In these situations, and especially with the "filename too long" problems, another thing I always try is to use the 7-Zip GUI interface to see if I can get to the folder and delete it from within 7-Zip.  Sounds strange, but it works quite often.

81
Here's a couple of screenshots:

2020-10-03_164633.png
2020-10-03_164801.png

82
Regarding icon creation, I've used Greenfish Icon Editor Pro (FOSS) for many many years.

http://greenfishsoftware.org/gfie.php

83
Post New Requests Here / Re: IDEA: Context Menu Buttons (shellex)
« on: October 02, 2020, 10:00 AM »
Cool idea and mockup.  :)  Unfortunately, with standard Windows menus like Explorer uses, I do not think this is possible.  Microsoft Office does not use standard Windows menus, hence its ability to do what you see in that screenshot above.

84
Coding Snacks / Re: Internet wifi utility
« on: September 17, 2020, 02:36 PM »
I am obtaining frequent warning windows , but the connection seems not lost.

Try using a different IP like Google's DNS servers.  8.8.8.8 or 4.4.4.4
Also, make sure the "Fire alert only once per consecutive host down events" option is checked as well.


85
Coding Snacks / Re: Internet wifi utility
« on: September 16, 2020, 10:27 PM »
You could try my Tray Host Checker utility.

https://www.dcmember...d/tray-host-checker/

87
Thanks, Nod5.  I'll mark this thread as solved and move it.

89
Finished Programs / Re: SOLVED: Quick toggle some monitors
« on: June 17, 2020, 03:41 PM »
Got it working.   :up:
Problem solved.

The GUI was useful as the monitor #s were not what one would expect.
The SwitchOnOff commandline option worked imperfectly to toggle the monitors (one monitor was not toggling back on properly), so I used 2 hotkeys in AHK, one to turn the monitors off, and another to turn them back on.

Right on.  I'll move this thread.

90
Finished Programs / Re: SOLVED: Quick toggle some monitors
« on: June 17, 2020, 02:36 PM »
Thanks skwire, looks like MuliMonitorTool will do exactly what I want  :up:
I will report.

Right on.  I'm sure you'll find out soon enough but, to work properly, the monitors would have to be DDC/CI capable.

91
Finished Programs / Re: SOLVED: Quick toggle some monitors
« on: June 17, 2020, 09:54 AM »
This is actually pretty tricky programmatically.  I'd recommend using Nir Sofer's MultiMonitorTool program.  It's a GUI program, but fully commandline controllable.  You could easily create a toggle shortcut like this:

c:\path\to\MultiMonitorTool.exe /SwitchOffOn 2 3 4

Of course, run the tool first to get the proper monitor numbers.

92
Living Room / Re: Gadget WEEKENDS
« on: June 08, 2020, 01:10 AM »
Picked up a portable car jump starter

I have similar in each vehicle and used them successfully on mine and other motorist's vehicles.  The others motorists always amazed when I bust that out instead of jumper cables.   :Thmbsup:

93
General Software Discussion / Re: Good Freeware Audio Editor?
« on: May 29, 2020, 06:13 AM »
What is a good program for editing .wav sound only files?

Audacity is usually mentioned for this purpose.

94
Here's an AutoHotkey solution for the first part:

Code: Autohotkey [Select]
  1. myDestFolder := "c:\tmp" ; Change this to suit.
  2.  
  3. myTuples := GetTuples( "abcdefghijklmnopqrstuvwxyz", 3 )
  4.  
  5. Loop, Parse, myTuples, `n, `r
  6. {
  7.     If ( A_LoopField )
  8.     {
  9.         FileCreateDir, % myDestFolder . "\" . A_LoopField
  10.     }
  11. }
  12.  
  13. /*
  14.     GetTuples.ahk
  15.     Copyright (C) 2010,2012,2013 Antonio Fran?a
  16.  
  17.     This script is free software: you can redistribute it and/or modify
  18.     it under the terms of the GNU Affero General Public License as
  19.     published by the Free Software Foundation, either version 3 of the
  20.     License, or (at your option) any later version.
  21.  
  22.     This script is distributed in the hope that it will be useful,
  23.     but WITHOUT ANY WARRANTY; without even the implied warranty of
  24.     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  25.     GNU Affero General Public License for more details.
  26.  
  27.     You should have received a copy of the GNU Affero General Public License
  28.     along with this script.  If not, see <http://www.gnu.org/licenses/>.
  29. */
  30.  
  31. ;========================================================================
  32. ;
  33. ; Function:     GetTuples (aka Arrange)
  34. ; Description:  Arranges a given input into all possible N-tuples
  35. ; URL (+info):  https://bit.ly/Sip44M
  36. ;
  37. ; Last Update:  02/February/2013 04:50 BRT
  38. ;
  39. ; Created by MasterFocus
  40. ; - https://github.com/MasterFocus
  41. ; - http://masterfocus.ahk4.net
  42. ; - http://autohotkey.com/community/viewtopic.php?f=2&t=88198
  43. ;
  44. ;========================================================================
  45.  
  46. GetTuples(p_List,p_Pick,p_InputD="",p_InputO=" `t",p_OutputDin=""
  47. ,p_OutputDout="`n",p_Reverse=0,p_Offset=0,p_Count=0,p_Func="",p_Valid=0) {
  48.     If ( p_List = "" ) OR ( p_Pick < 1 )
  49.         Return
  50.     StringSplit, l_Arr, p_List, %p_InputD%, %p_InputO%
  51.     Loop, %p_Pick%
  52.         l_CharIndex%A_Index% := p_Reverse ? l_Arr0 : 1
  53.     l_IsFunc := IsFunc(p_Func), p_Offset := Abs(p_Offset)
  54.     If ( p_Count > (l_TotalTuples := l_Arr0 ** p_Pick) ) OR ( p_Count = 0 )
  55.         p_Count := l_TotalTuples - p_Offset
  56.     If ( p_Valid > l_TotalTuples ) OR ( p_Valid = 0 )
  57.         p_Valid := p_Count
  58.     Loop, %l_TotalTuples% {
  59.         l_Result := ""
  60.         Loop, %p_Pick%
  61.             l_CharIndex := l_CharIndex%A_Index%, l_Result .= p_OutputDin l_Arr%l_CharIndex%
  62.         Loop, %p_Pick% {
  63.             l_Idx := p_Pick-(A_Index-1)
  64.             If p_Reverse {
  65.                 If ( ( l_CharIndex%l_Idx% -= 1 ) >= 1 )
  66.                     Break
  67.                 l_CharIndex%l_Idx% := l_Arr0
  68.             }
  69.             Else {
  70.                 If ( ( l_CharIndex%l_Idx% += 1 ) <= l_Arr0 )
  71.                     Break
  72.                 l_CharIndex%l_Idx% := 1
  73.             }
  74.         }
  75.         If ( A_Index-1 < p_Offset )
  76.             Continue
  77.         l_Result := SubStr(l_Result,1+StrLen(p_OutputDin)), l_Output .= l_IsFunc
  78.             ? (((l_Dummy := %p_Func%(l_Result))<>"") ? (p_OutputDout l_Dummy, p_Valid--)
  79.             : "") : (p_OutputDout l_Result, p_Valid--)
  80.         If !( (--p_Count) AND p_Valid )
  81.             Break
  82.     }
  83.     Return SubStr(l_Output,1+StrLen(p_OutputDout))
  84. }

Some notes:

  • You cannot create three letter folders or files with the following names: aux, con, nul, & prn
  • The DOS move command _does_ work for folders.

What's the use case for the second part?

95
Skwire, your Tags2Folders is about as close as they come.  Just need the additional token bitrate....

Added in v1.1.2.  See here: https://www.donationcoder.com/forum/index.php?topic=19543.msg438418#msg438418

96
Website | Download
v1.1.2 - 2020-05-16
    + Added $bitrate token.  (Thanks, nkormanik)

97
Looking for a way to sort/organize mp3 files in a folder into a set of folders by bitrate:

320 kbps mp3s --> appropriate folder named "320"
192 kbps mp3s --> appropriate folder named "192"

What happens if the files are VBR (Variable Bit Rate)?  If you have VBR files, you will end up with a mess.

98
General Software Discussion / Re: WikiWord Linking in MS Word
« on: May 08, 2020, 02:25 PM »
Even though I use Markdown, there are certain things that I prefer the AsciiDoc (or other markup formats) way of doing it.  You already mentioned one of them -- the use of underscores.  It's non-intuitive that Markdown formats _this_ as this.  WTH?  :huh:  I mean, they're underscores...they look like underlines, for goodness sake.   I would have preferred italics use forward slashes and be formatted so that /this/ turns into this.  However, some folks have trouble knowing which slash is a forward slash and which is a backward slash, so I can understand that there might have been some confusion because backslashes are used to escape characters.  Using backslashes, you can write: \_this\_ which would appear as: _this_.  As it stands now, to underline text in Markdown, you have to use <u></u> or <ins></ins> tags.  Ugly.
 
I agree that neither format is the be all, end all.   However, at some point, one needs to pick a format and just use it.  If one worries what they're missing from other formats, nothing gets done.   :P

99
N.A.N.Y. 2020 / Re: NANY 2020 Mug-shots
« on: May 07, 2020, 02:56 PM »
Time to build a new shelf in preparation for NANY 2021!

Got plenty of shelves...

IMG_20200507_145247.jpg

100
I'm game for whenever.

Pages: prev1 2 3 [4] 5 6 7 8 9 ... 222next