topbanner_forum
  *

avatar image

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

Login with username, password and session length
  • Tuesday April 23, 2024, 2:58 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

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 - skrommel [ switch to compact view ]

Pages: prev1 ... 6 7 8 9 10 [11] 12 13 14 15 16 ... 38next
251
 :) Try GoneIn60s v1.3!

Changes:
- 20070615 - v1.3: Added options to change the gone time, kill windows and ignore apps.

Skrommel

252
Post New Requests Here / Re: ACCENTS: How to Exclude Application
« on: June 10, 2007, 08:44 AM »
 :tellme: I'll take a look at it.

Skrommel

253
Post New Requests Here / Re: IDEA: WhoIsThis Hotkey
« on: June 10, 2007, 08:42 AM »
 :) Try this script!

Save it to the file WinProcPath.ahk, and download and install AutoHotkey.

;WinProcPath.ahk
; Show the filename of the windows below the mouse
;Skrommel @ 2007

#SingleInstance,Force
#NoEnv

Loop
{
  MouseGetPos,x,y,winid,ctrlid
  WinGet,pid,Pid,ahk_id %winid%
  path:=GetModuleFileNameEx(pid)
  ToolTip,%path%
  Sleep,100
}


GetModuleFileNameEx(p_pid) ;by shimanov at www.autohotkey
{
   If A_OSVersion in WIN_95,WIN_98,WIN_ME
   {
     WinGet,name,ProcessName,ahk_id %p_pid%
     Return,name
   }
   h_process:=DllCall("OpenProcess","uint",0x10|0x400,"int",false,"uint",p_pid) ;  PROCESS_VM_READ=0x0010  PROCESS_QUERY_INFORMATION=0x0400
   If (ErrorLevel or h_process=0)
      Return
   name_size=255
   VarSetCapacity(name,name_size)   
   result:=DllCall("psapi.dll\GetModuleFileNameExA","uint",h_process,"uint",0,"str",name,"uint",name_size)
   DllCall("CloseHandle",h_process)
   Return,name
}

254
 :) Taskfade doesn't work with my vertical taskbar.

Skrommel

255
 :) Have a look at my WinWarden. It has a ghost option.

Skrommel

256
 :) Just posted ScreamerMenu v1.2!

Skrommel

257
 :) Try ScreamerMenu v.1.1.

Skrommel

258
 :) Have a look at Trayer. It can show an icon in the tray, remove the taskbar icon, and a lot more, but you have to make a shortcut for every program you want to control.



Skrommel

259
 :-[ Very nice!

Also, I just uploaded ScreamerMenu v1.0!

Please remember to delete your existing ScreamerMenu.ini-file.

Skrommel

260
Post New Requests Here / Re: Rerun StartUp Folder
« on: June 04, 2007, 02:09 PM »
 :) Originally ReRun tried to extract the name of the exe file from the command lines of the shortcuts, and compare it to a list of the running processes. This is not easy to do properly, so v1.1 instead compares the command lines of the shortcuts with a list of the command lines of the running processes.

Skrommel

261
Post New Requests Here / Re: Rerun StartUp Folder
« on: June 04, 2007, 01:16 PM »
 :) Try ReRun v1.1!

Changes:
- 20070604 - v1.1: Added better detection of command lines.

This means that the startup commands no longer has to contain an extension, and it should be able to detect autostarted folders.

Skrommel

262
Post New Requests Here / Re: Rerun StartUp Folder
« on: June 03, 2007, 07:36 PM »
:) Here a simple little utility.

ReRun - Run the startup programs not already running

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

It runs the registry and start menu programs of both the current user and the common user.
It's not perfecet - the startup commands must contain an extension, and I can't detect autostarted documents and folders.

Skrommel

263
Skrommel's Software / Re: MultiMonitor Manager Features
« on: May 31, 2007, 07:16 PM »
 :) MultiMonMan is made to keep an eye on your other monitors, as it is not fast enough to be as useful as I would have wanted.

But just download it and see, it's just 250KB, there's s no installation, and all harm it will do is save an ini file.

Skrommel

264
Coding Snacks / Re: Accents: Using % as a Hotkey
« on: May 31, 2007, 04:09 AM »
 :) Try Accents v1.0.

Changes:
- 20070531 - v1.0: Added accents to non-alphabet characters.

Now you can add this to you Accents.ini file.

[  ] ;Fill inn the next number in line
key=%
1=½
2=¼
3=¾

Skrommel

265
 :tellme: I haven't tried it, but according to the AutoHotkey manual:

All Windows OSes should be able to play .wav files. However, other files (.mp3, .avi, etc.) might not be playable if the right codecs or features aren't installed on the OS.

So what features could be missing?

Skrommel

266
 :) It's kind of simple, I think it needs a proper options screen, but I only had an hour last night.

It uses GetSystemPowerStatus, so a lot more alarms can be added, like battery low, 70% recharged, or whatever.

I've added automatic WAV and MP3 detection to BatteryRun v1.1.

Skrommel

267
 :) You can easily add a loop to find the children of the maximized window, and putting them on top, too.

Try
WinGet,list,List,ahk_id hwnd
and
DllCall("GetParent",UInt,hwnd)

Skrommel

268
:) Here a simple command line utility.

BatteryRun - Run commands when the power plug is connected or disconnected.

Command line:
  BatteryRun.exe "<connect command>" "<disconnect command>"
Example:
  BatteryRun.exe "ding.wav" "calc.exe"

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

For multiple actions, I suggest making an AutoHotkey script.

Skrommel

269
Skrommel's Software / Re: CapShift - NumLock on IBM ThinkPads
« on: May 23, 2007, 02:55 AM »
 :) I never thought of the possibility. Are you saying that when you press Shift-CapsLock, CAPshift starts counting? On my PC it toggles CapsLock directly, being ignored by CAPshift.

Skrommel

270
Post New Requests Here / Re: IDEA: Run Before / After something
« on: May 22, 2007, 08:20 PM »
:) Here's something that may work.

PauseProcess - Pause a program and run other programs before and after.

Command line:
  PauseProcess.exe "<program to pause>" ["<program to run before>" "<program to run after>"]
Example:
  PauseProcess.exe "Notepad.exe" "Pbrush.exe" "Calc.exe"

Uses PauseP.exe by Daniel Turion at http://www.codeproje...m/threads/pausep.asp

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

It would be possible to make a real interception using hooks, but a pause is much simpler.
The author of PauseP.exe warns that it may crash multithreaded apps.

Skrommel

271
 :) To prevent windows repainting, have a look at these API functions:


SendMessage(hwnd, WM_SETREDRAW, FALSE, 0)
SendMessage(hwnd, WM_SETREDRAW, TRUE, 0)

or

SetWindowRedraw(hwnd, FALSE)
SetWindowRedraw(hwnd, TRUE)

Try something like
hwnd:=WinExist("A")
DllCall("SetWindowRedraw",UInt,hwnd,UInt,1)
Skrommel

272
 :tellme: Oh no, Fullscreen is not simple! Try starting Outlook Express and Alt-LeftClick in the message window. Now the message window fills the screen, but if you move the mouse to any screen edge, that hidden part is automatically revealed! It's just amazing!

But your script is very useful, and very impressive for an AHK noob!

Skrommel

273
 :) Try Fullscreen at http://www.fanix.com/fullscreen.html. Shareware, sluggish on Vista, but unlike anything else.

Skrommel

274
Post New Requests Here / Re: Bluetooth-Wifi Quick on/off
« on: May 05, 2007, 08:23 AM »
 :) I made one for my girlfriend's laptop, just changing a few registry settings, but I've not found a uniform way of doing this for all laptops.

Ideally it should be a matter of enabling/disabling the wlan nic in the hardware list, but in addition there's the manufacturer's software controlling things.

Skrommel

275
 :tellme: I'm afraid that's too big a task for me.

The internal workings of the OLE 2 Compound Document format is way beyond my remaining brain capacity.

However, the recipient of your documents can use Tools, Options, Compatibility tab, then click the Font Substitution button to change missing fonts.

Skrommel

Pages: prev1 ... 6 7 8 9 10 [11] 12 13 14 15 16 ... 38next