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, 6:22 am
  • 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 ... 23 24 25 26 27 [28] 29 30 31 32 33 ... 38next
676
Finished Programs / Re: Move Installed programs from one drive to another.
« Last post by skrommel on February 23, 2006, 11:31 AM »
 :) This could easily be done using SUBST, _before_ you install any programs.

Just open a command prompt, write SUBST V: C:\Movable_Files  and you've got a virtual drive V: pointing to C:\Movable_Files. Now install your programs to V:\Program Files or something.

Also make a STARTUP.CMD-file with this command and put it in your startup folder.

Later you can move the folder Movable_Files to D:\ or wherever and have everything working as always by updating the SUBST command: Write SUBST V: /D to delete the existing mapping, and SUBST V: D:\Movable_Files to map V: to the new location.

Skrommel
677
Finished Programs / Re: IDEA: Push2Talk
« Last post by skrommel on February 23, 2006, 05:21 AM »
 :) Here's a hotkey solution:


PushToTalk
- Press and hold Win+S to activate the microphone, release to disable.

Features:
- Use Win+S for push-to-talk.
- Doubleclick the tray icon to toggle mic on or off.

Skrommel
678
Post New Requests Here / Re: IDEA: text-only clipboard without separate hotkey.
« Last post by skrommel on February 23, 2006, 05:13 AM »
 :) Here's PlainCopy for you!

Skrommel

;PlainCopy.ahk
;Press Ctrl-C once to copy regularly, Ctrl-C twice fast to copy as text.
;Skrommel @2006

#SingleInstance,Force
Gosub,TRAYMENU
counter=0
Return

$^c::
counter+=1
SetTimer,TWICE,333
Return

TWICE:
SetTimer,TWICE,Off
Send,^c
If counter>1
  Clipboard=%Clipboard%
counter=0
Return

TRAYMENU:
Menu,Tray,DeleteAll
Menu,Tray,NoStandard
Menu,Tray,Add,PlainCopy,ABOUT
Menu,Tray,Add,
Menu,Tray,Add,&About,ABOUT
Menu,Tray,Add,E&xit,EXIT
Menu,Tray,Default,PlainCopy
Return

ABOUT:
about=PlainCopy
about=%about%`n
about=%about%`nPress Ctrl-C once to copy regularly, Ctrl-C twice fast to copy as text.
about=%about%`n
about=%about%`nSkrommel @2006    www.donationcoder.com/Software/Skrommel
MsgBox,0,PlainCopy,%about%
about=
Return

EXIT:
ExitApp
679
Finished Programs / DONE: MultiMonitorManager
« Last post by skrommel on February 19, 2006, 10:28 PM »
 :) I've just uploaded a Multi Monitor Manager.

MultiMonMan - Watch and control multiple monitors.

Features:
- Click-through and drag-through
- Resize and move windows
- Choose Save Setup to save window arrangement
- This program uses IrFanView by Irfan Skiljan.



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

But there's a problem. It uses IrFanView's screen capture, so it's slow, and flickers. Anyone knows of a better way of doing this?

18.07.2017: Refreshed the code to run on Windows 10.

Skrommel
680
 :tellme: That sound righ, if you ask me. The A_TimeIdle is disturbed by a MouseMove, that's why I wanted to use A_TimeIdlePhysical.

Skrommel
681
Finished Programs / Re: Push2Talk
« Last post by skrommel on February 14, 2006, 05:39 PM »
 :tellme: By push to talk you mean click and hold the mouse down over, say, a tray icon? Or do you need a separate window?

Skrommel
682
Post New Requests Here / Re: IDEA: text-only clipboard without separate hotkey.
« Last post by skrommel on February 14, 2006, 05:35 PM »
 :) Not pretending to have all the answers, but isn't it more natural to give this option to Paste instead of Copy (and Cut)?


PlainPaste
- Press Ctrl-V once to paste regularly, Ctrl-V twice within 1/3 of a second to paste as text.

Great idea, by the way!

Skrommel
683
 :) It seems you're right, LuckMan!

I did try to change the %A_TimeIdlePhysical% to %A_TimeIdle% while debugging, but I only changed the first occurance in the source code! I forgot there were two of them! Thank's for noticing!

Please test the newly uploaded IdleMute v1.9 and report back!

I've added brotherS' second timer that kicks in after the system is muted and idle for a user defined time, and also moved the options around a bit.

Skrommel
684
 :-\ And we're back to square one...

I just downloaded the latest AutoHotkey to see if my version would work better, but now it's the other way around! Only the mouse works!

And that goes for LuckMan212's v1.8a, too!

SKrommel

685
And send me the icons, too, I think I like yours better!

Skrommel
686
 :) Great job, LuckMan212! IdleMute works again!

I made an enquiry at AutoHotkey, but it seems we're the only ones with this problem, and I have had no luck in debugging.

Please tell me what changes you've made, and send me the sourcecode so I can post it!

Skrommel
687
 :tellme: Sorry, I reread you post, and it's removing duplicats you want. Are the file names accurate enough to be used to distinguish the files, or should the size/date/CRC be checked, too?

Skrommel
688
 :) How about saving the playlist, opening it in Notepad and doing a search and replace of the paths, and then moving the files?

Skrommel
689
 :) My ProcessGuard at https://www.donationcoder.com/Software/Skrommel/index.html#ProcessGuard should be able to do this.

Skrommel
690
Finished Programs / Re: Screensaver On/Off/Auto
« Last post by skrommel on February 09, 2006, 11:24 AM »
 :) Yep!

Skrommel
691
Finished Programs / Re: Screensaver On/Off/Auto
« Last post by skrommel on February 09, 2006, 02:47 AM »
 :) I uploaded an older verison, please try the correct one now!

Skrommel
692
Finished Programs / Re: Screensaver On/Off/Auto
« Last post by skrommel on February 08, 2006, 07:15 PM »
 :) Try mine!

TrayScreenSaver - Control the screensaver from the tray.

Features:
- Doubleclick the tray icon to run the default screensaver.
- Singleclick to enable or disable the screensaver.
- Or use the tray menu.

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

Skrommel
693
Finished Programs / Re: IDEA: Across-the-room Stability Monitor
« Last post by skrommel on February 06, 2006, 05:15 PM »
 :-[ Just to help you learn AHK...

Skrommel
694
Post New Requests Here / Re: Farr's calculator
« Last post by skrommel on February 06, 2006, 04:07 PM »
 :) Lazlo has an AHK solution over at http://www.autohotkey.com/forum/viewtopic.php?t=5060.

You could also download calc387.zip from http://home.att.net/~short.stop/freesoft/calc.htm

Skrommel
695
Finished Programs / Re: IDEA: Across-the-room Stability Monitor
« Last post by skrommel on February 06, 2006, 03:49 PM »
Replacing the CHANGE part should do the trick:

CHANGE:
If color=000000
  color=0000FF
Else
  color=000000
Return

Skrommel
696
Finished Programs / Re: small prog to hide desktop
« Last post by skrommel on February 05, 2006, 08:19 PM »
 :) Here's a script to only show the desktop icons when the mouse is on the desktop.

HideDesktop - Only show the desktop icons when the mouse is on the desktop.

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

Skrommel
697
Finished Programs / Re: IDEA: Across-the-room Stability Monitor
« Last post by skrommel on February 05, 2006, 07:13 PM »
 :) Did you get that ini version, LuckMan212?

If not, here's one.

Skrommel


;Alive - Show a flashing window to indicate a living system
;To use, save as Alive.ahk, download and install AutoHotkey from www.autohotkey.com
;Skrommel @2006

#SingleInstance,Force
OnExit,EXIT

x=
y=
w=100
h=100
pause=1000
color=FF0000

IfExist,Alive.ini
{
  IniRead,x,Alive.ini,Settings,x
  IniRead,y,Alive.ini,Settings,y
  IniRead,w,Alive.ini,Settings,w
  IniRead,h,Alive.ini,Settings,h
  IniRead,pause,Alive.ini,Settings,pause
}

Gui,+AlwaysOnTop +Resize
Gui,Color,%color%
Gui,Show,x%x% y%y% w%w% h%h%,Alive!
WinMove,Alive!,,%x%,%y%,%w%,%h%
SetTimer,CHANGE,%pause%
Return

CHANGE:
Gui,Color,%color%
StringLeft,first,color,2
StringTrimLeft,last,color,2
color=%last%%first%
Return

GuiClose:
EXIT:
WinGetPos,x,y,w,h,Alive!
IniWrite,%x%,Alive.ini,Settings,x
IniWrite,%y%,Alive.ini,Settings,y
IniWrite,%w%,Alive.ini,Settings,w
IniWrite,%h%,Alive.ini,Settings,h
IniWrite,%pause%,Alive.ini,Settings,pause
ExitApp
698
Skrommel's Software / Re: skrommel got some love today..
« Last post by skrommel on February 03, 2006, 07:32 AM »
 :-[

Wow!

Great lobbying, mouser!

Skrommel
699
 :tellme: I've been getting this problem, too! But one day it's the keyboard, the next it's the mouse. I'm beginning to suspect a bug in the idle function in AHK. I'll have a closer look...

Skrommel
700
Finished Programs / Re: DONE: script to prevent near-sightedness!
« Last post by skrommel on January 02, 2006, 06:43 PM »
 :tellme: You could replace the Loop with a SetTimer...

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