Messages - skrommel [ switch to compact view ]

Pages: prev1 ... 181 182 183 184 185 [186] 187next
926
Please let me put the settings in an ini-file and make a options window befor you compile.

Skrommel

927
 :) I've just improved on my first draft by using an image when dimming, much like Ghost-It and GP. It also uses AlwaysOnTop instead of Region for a cleaner look.

Ghoster - Ghoster creates a transparent Gui to cover the screen, loads an image and keeps punching holes in it to make the mouse work.



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

Edit: I've moved the settings to an ini-file and added a tray menu.

Skrommel

928
Unfinished Requests / DONEISH: Get current directory
« on: July 18, 2005, 12:54 PM »
 :) Here's a quick hack to solve the problem. It works in Explorer, but I don't know about Blakcbox.

OpenOther
Select files or folders in Explorer, press Ctrl-Enter to open the files in the programs you define below using extensions.

Download and install AutoHotKey from www.autohotkey.com. Save the script as OpenOther.ahk and doubleclick to run.

Skrommel


;OpenOther
;Select files or folders in Explorer, press Ctrl-Enter
; to open the files in the programs you define below using extensions.
;Skrommel @2005


;Extensions
;extension=command          Place a ` before commas
directory=cmd /k cd        ;Program to open directories
unknown=                   ;Program to open unknown or undefined extensions
empty=Notepad              ;Program to open files without extensions
txt=Write                  ;Program to open .txt-files
wri=Write
dll=Notepad
                           ;Add your own extensions here


;Program
^Enter::                   ;Hotkey Ctrl-Enter
Clipboard=
Send,^c
ClipWait,1
Loop,Parse,Clipboard,`n,`r
{
  SplitPath,A_LoopField,name,dir,ext,name_no_ext,drive
  FileGetAttrib,attrib,%A_LoopField%
  StringGetPos,dir,attrib,D
  If dir=0
    Run,%directory% %A_LoopField%
  Else
  {
    If ext=
      Run,%empty% %A_LoopField%
    Else
    {
      command:=%ext%
      If command<>
        Run,%command% %A_LoopField%
      Else
        If unknown<>
          Run,%unknown% %A_LoopField%
    }
  }
}
Return

929
:) Feel free to do as you please.

If you want compiled scripts, AutoHotKey can do that, too. There's a few functions in AutoHotKey that's not in AutoIt.

Skrommel

930
 :) Here's a brute force solution to the caps lock problem: Play a sound while caps lock is down.

Download and install AutoHotKey from www.autohotkey.com. Save the script as CapsSound.ahk and doubleclick to run.


;CapsSound
;Plays a sound while caps lock is down

~Capslock::
START:
GetKeyState,capslock,CapsLock,T
If capslock=U
  Return
SoundPlay,%SYSTEMROOT%\Media\ding.wav,Wait
Goto,START


Another, more gentle version only plays a sound once when the caps lock is turned on:

;CapsSoundOnce
;Plays a sound when caps lock is turned on

~Capslock::
GetKeyState,capslock,CapsLock,T
If capslock=D
  SoundPlay,%SYSTEMROOT%\Media\ding.wav,Wait
Return

Pages: prev1 ... 181 182 183 184 185 [186] 187next
Go to full version