topbanner_forum
  *

avatar image

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

Login with username, password and session length
  • Tuesday November 11, 2025, 7:30 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 ... 22 23 24 25 26 [27] 28 29 30 31 32 ... 38next
651
 :-\ Thanks... Sob... Skrommel
652
 :tellme: @brotherS: What do you need this for: "but would take a few seconds 'regret time' before executing the 'Deactivated' event"? Is it to prevent "flashing"?

Skrommel
653
 :) It's the "Calc" text in the title that triggers the Calc rule in the ini file...

Looks like there's a bug in the wildcard settings... It should only kick in when Calc is at the start of a window text...

Skrommel
654
 :) Is WinWarden at www.donationcoder.com/Software/Skrommel overkill?

Skrommel
655
 :( And here we fiddle with our puny programs...
I really must learn to program properly!

Skrommel, totally desillusioned...
656
Post New Requests Here / Re: IDEA: KCOAW - keep cursor over active window
« Last post by skrommel on March 07, 2006, 02:03 PM »
 :tellme: I'm verry sorry, but I didn't understand "but the mouse cursor stays in its old place".

Skrommel
657
 :) Can you work with this?

Skrommel


;FindFree.ahk
; Writes free drive space to a text file.
; To run, download and install AutoHotkey from www.autohotkey.com
;Skrommel @2006

outfile=C:\Temp\out.txt

SetBatchLines,-1
FileDelete,%outfile%
drive:=Asc("A")
Loop,% Asc("Z")-Asc("A")
{
  drivechar:=Chr(drive)
  DriveSpaceFree,space,%drivechar%:
  FileAppend,%drivechar%: %space%`n,%outfile%
  drive+=1
}
658
 :) Almost too short, this one!

Or you could try CAPshift from my 1 Hour Software page.

Skrommel


;CapShiftOff.ahk
; Pressing Shift turns off CapsLock
; To run, download and install AutoHotkey from www.autohotkey.com
;Skrommel @2006


#SingleInstance,Force
#Persistent
Return

~*Shift::
SetCapsLockState,Off
Return
659
 :-[ I really should start reading the whole posts!

Here's one, but it sorts the file, and it's limited to 1 GB.

Skrommel


;DelDuplicates.ahk
; Removes duplicate lines from a text file
; To run, download and install AutoHotkey from www.autohotkey.com
;Skrommel @2006

infile=C:\Temp\in.txt
outfile=C:\Temp\out.txt

#MaxMem 1024
SetBatchLines,-1
FileRead,file,%infile%
If ErrorLevel=0
{
  Sort,file,U
  FileDelete,%outfile%
  FileAppend,%file%,%outfile%
  file=
}




Try this one!

Skrommel


;DelDouble.ahk
; Removes double lines from text files
; To run, download and install AutoHotkey from www.autohotkey.com
;Skrommel @2006

fromfile=C:\Temp\in.txt
tofile=C:\Temp\out.txt

SetBatchLines,-1
FileDelete,%tofile%
prevline=
Loop,Read,%fromfile%
{
  If A_LoopReadLine<>%prevline%
    FileAppend,%A_LoopReadLine%`n,%tofile%
  prevline=%A_LoopReadLine%
}
660
Skrommel's Software / Re: @Renae
« Last post by skrommel on March 06, 2006, 02:34 AM »
 :-[ Sorry, I haven't programmed C in years, but I'm shure there are other's who can help you. Jazper over at http://www.jazper.dcmembers.com/index.html have made Shoutcast Concierge, maybe he's your man?

Skrommel
661
Skrommel's Software / regarding Renae's feedback and suggestions
« Last post by skrommel on March 05, 2006, 03:53 PM »
 :) Great feedback, Renae!

Looks like I've got my work cut out for me!

- Combining Similar Applications
Some have already been combined, but this is not high on my list.

- PlainPaste
This really is just a ten line script, but user defined settings should be possible.

- CAPshift
Again, adding hotkeys should be no problem.

- ShowDialogsToo
The flashing is a problem. It could possibly be removed from regular windows.

- IdleMute
This must be a bug. Was this when using the first or second timer?

- StartClock
Doable.

- TicTocTitle
Doable.

Skrommel
662
Finished Programs / Re: DONE: MultiMonitorManager
« Last post by skrommel on March 04, 2006, 02:54 PM »
 :) Thanks for discovering!

Skrommel
663
Post New Requests Here / Re: Single Application Instance
« Last post by skrommel on March 04, 2006, 02:45 PM »
 :) Try this one!

SingleInstance - Only allow one instance of a program to run.

Features:
- User defined programs.
- Option to detect hidden programs.
- Won't close instances started before SingleInstance.

You'll find the downloads and more info at 1 Hour Software by Skrommel.

AutoHotkey doesn't support global messagehooks, so I couldn't catch the programs before they were created, but I hope you can live with the "flicker".

Skrommel
664
Post New Requests Here / Re: Single Application Instance
« Last post by skrommel on March 03, 2006, 02:03 PM »
 :) I seem to remember that my SingleApp tool will do this if you specify the class.

You find the thread here: https://www.donationcoder.com/forum/index.php?topic=1826.0.


Sorry, months since I made that one... But maybe a v2.0 is needed?

Skrommel
665
Post New Requests Here / Re: need help on an annoying keyboard problem
« Last post by skrommel on March 03, 2006, 02:19 AM »
 :) Could this help?

#SingleInstance,Force
#Persistent

oldticks:=A_TickCount
Return

*w::
ticks:=A_TickCount
If (ticks-oldticks>30)
  Send,w
oldticks:=ticks
Return

*w Up::
Return

Skrommel
666
Finished Programs / DONE: RandomScreenSaver
« Last post by skrommel on March 02, 2006, 11:04 AM »
 :) Anyone want a random screensaver?


RandomScreenSaver
- Change the screensaver every x minutes.

Features:
- Change running time and order.
- Select screensavers to ignore.
- Hide or show the desktop while running

You'll find the downloads and more info at 1 Hour Software by Skrommel.

Skrommel
667
Finished Programs / Re: DONE: WinampKiller
« Last post by skrommel on March 01, 2006, 06:33 PM »
 :) Check the latest version of IdleMute at www.donationcoder.com/Software/Skrommel. It sports a second timer that kicks in after x minutes of inactivity after the initial ilde mute.

Skrommel
668
Post New Requests Here / Re: DONE: Dim the taskbar (set transparency)
« Last post by skrommel on March 01, 2006, 06:28 PM »
 :) brotherS, try if the current version kills your videos. It sets the transparency to Off if the maximized trans is set to 255.

But it makes the taskbar flicker, leaving the rest of us to set the trans to 254, so I don't know if I'll keep it.

The disrupted icons I can't explain, and mine disables properly.

Skrommel
669
Post New Requests Here / Re: DONE: Dim the taskbar (set transparency)
« Last post by skrommel on March 01, 2006, 12:54 PM »
 :) How is the version I just uploaded?

Skrommel
670
Finished Programs / Re: IDEA: set transparency for the taskbar
« Last post by skrommel on February 28, 2006, 06:48 PM »
 :) Just posted FadingTaskbar at https://www.donationcoder.com/forum/index.php?topic=2553.0.

Skrommel
671
Post New Requests Here / Re: IDEA: Dim the taskbar
« Last post by skrommel on February 28, 2006, 06:43 PM »
 :) Here's a late entry:


FadingTaskbar
- Change the transparency of the taskbar.

Features:
- Individual transparency settings for when the mouse is inside and outside the taskbar.
- Fade in, fade out.
- Makes the taskbar solid when maximized windows exist.
- Remembers the original transparency.

You'll find the downloads and more info at 1 Hour Software by Skrommel.

Skrommel
672
 :) Chris over at www.autohotkey.com has just confirmed a bug in A_TimeIdlePhysical, so things are looking up!

Skrommel
673
 :) I've found the error!

If you open the ini file you'll see that inside the {LCtrl Down} {LCtrl Up} there's an odd looking sign. That is Ctrl-V, I guess. It should have been a c. There's a different one inside the paste part, but why this one works, I don't know. So for now, just edit it manually and save the ini-file.

Skrommel
674
Skrommel's Software / Re: Compression: BigByte
« Last post by skrommel on February 23, 2006, 07:46 PM »
 :) I've pretty much given up on BigByte after I tried a program that could make a TerraByte file in seconds! I think it just made an entry in the FAT. But I can't remember where I found it...

Adding random content is impossible the way BigByte operates. It makes a 1 byte file and makes double sized copies until the desired size is reached, merges the needed copies and removes the rest.

Skrommel
675
 :tellme: Have you changed the hotkeys in the ini file?
If not, I don't know what could be wrong. Try deleting the ini-file.

Skrommel
Pages: prev1 ... 22 23 24 25 26 [27] 28 29 30 31 32 ... 38next