topbanner_forum
  *

avatar image

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

Login with username, password and session length
  • Monday November 10, 2025, 3:55 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 ... 9 10 11 12 13 [14] 15 16 17 18 19 ... 38next
326
Post New Requests Here / Re: IDEA: DropButton
« Last post by skrommel on January 22, 2007, 11:21 AM »
 :) Here's DrOpen, an AHK script I think does what you ask!
To run, save as DrOpen.ahk and install AutoHotkey.

;DrOpen.ahk
; Drop files on a window to open the files in an associated program.
; Syntax: DrOpen "<command>"
; Example: DrOpen "c:\windows\notepad.exe"
;Skrommel @2007

xpos:=100
ypos:=0
width:=100
height:=0

#NoEnv
#SingleInstance,Off

SplitPath,1,name,dir,ext,name_no_ext,drive
Gui,+ToolWindow +AlwaysOnTop
Gui,Show,x%xpos% y%ypos% w%width% h%height%,%name_no_ext%
Return

GuiDropFiles:
ToolTip,%A_GuiControl%
Loop, parse, A_GuiControlEvent, `n
  Run,%1% %A_LoopField%
Return

GuiClose:
ExitApp
327
Post New Requests Here / Re: IDEA: DimSaver *improvement* needed!
« Last post by skrommel on January 21, 2007, 07:26 PM »
 :) Try DimSaver v2.1!

- 2007.01.22 - v2.1: Added option to ignore accidental mouse movement.

There's also some rearrangement in the settings dialog, with a new option to set the time to ignore mouse movement.

Skrommel
328
Post New Requests Here / Re: IDEA: monitor folder for max MB and get message
« Last post by skrommel on January 21, 2007, 07:09 AM »
 :) As usual the simple solution is the best, Candle!

Skrommel
329
Post New Requests Here / Re: IDEA: monitor folder for max MB and get message
« Last post by skrommel on January 20, 2007, 09:38 PM »
 :) This should do it.

To compile it, download AutoHotkey.

Skrommel


;FolderLimit.ahk
;  Shows a message when a folder is bigger than a limit
;Skrommel @2007

folder=C:\Test   ;Folder to count and recurse
limit=4000       ;MBs to watch for
pause=10         ;Seconds to wait beween checks
exit=1           ;1=Exit when limit reached  0=Don't

#NoEnv
#Persistent

1mb:=1024*1024   ;Size of 1MB in Bytes
limit:=limit*1mb

Loop
{
  size=0
  Loop,%folder%\*.*,1,1
    size+=%A_LoopFileSize%
  If size>=%limit%
  {
    MsgBox,% folder . " = " . Floor(size/1mb) . "MB > " . Floor(limit/1mb) . " MB!"
    If exit=1
      ExitApp
  }
  Sleep,% pause*1000
}
330
Post New Requests Here / Re: IDEA Text file of Folder contents
« Last post by skrommel on January 20, 2007, 08:56 PM »
 :) Here's a combined command line and drag and drop tool.

Drag a dir on it to have it create a Files.txt of the filenames of the dropped dir in the dropped dir.
Or run it like a regular command line tool with paramaters.

To compile it to an exe, download AutoHotkey.

Skrommel


;Dir2Txt.ahk
;  Text file of folder contents
;  Syntax: Dir2Text "<sourcefiles>" "<targetfile>" <includefolders?> <recurse?> <fullpath?> <append?> "<ignore>"
;  Example:      Dir2Txt.ahk "c:\test\*.*" "c:\test.txt" 0 0 0 0 "exe,com,bat"
;    Read filenames in c:\test\ into c:\test.txt ignoring exe, com and bat files
;  Example:      Dir2Txt.ahk "c:\test\*.*" "c:\test.txt" 1 1 1 1 "exe,com,bat"
;    Read full path of all files in the directory tree c:\test\ into c:\test.txt ignoring exe, com and bat files
;Skrommel @2007


If 0>1
{
  sourcefiles=%1%
  targetfile=%2%
  recurse=%3%
  includefolders=%4%
  fullpath=%5%
  append=%6%
  ignore=%7%
}
Else
{
  sourcefiles=%1%\*.*
  SplitPath,sourcefiles,name,dir,ext,name_no_ext,drive
  targetfile=%dir%\Files.txt
  recurse=0
  includefolders=0
  fullpath=0
  append=0
  ignore=
}

If append<>1
  FileDelete,%targetfile%
files=
Loop,%sourcefiles%,%includfolders%,%recurse%
{
  If A_LoopFileExt Not In %ignore%
  If fullpath<>1
    files=%files%%A_LoopFileName%`n
  Else
    files=%files%%A_LoopFileLongPath%`n
}
FileAppend,%files%,%targetfile%
331
Finished Programs / Re: IDEA: Replacement Power Options applet
« Last post by skrommel on January 20, 2007, 08:18 PM »
 :tellme: I've added mouse noise to LowToSleep v1.6.

Please delete your existing ini file before running.

Skrommel
332
Finished Programs / Re: IDEA: Replacement Power Options applet
« Last post by skrommel on January 20, 2007, 01:14 AM »
 :tellme: Hmmm... On my FSC Amilo laptop it behaves like it should. Could there be different power save implementations depending on brand?

Try lowering the idleduration=30 or =1 to test it, and see if that makes a difference.

Skrommel
333
Finished Programs / Re: IDEA: Replacement Power Options applet
« Last post by skrommel on January 19, 2007, 02:01 PM »
 :tellme: My problem was the oposite... How does LowToSleep v1.5 work?

Skrommel
334
Finished Programs / Re: IDEA: Replacement Power Options applet
« Last post by skrommel on January 18, 2007, 06:45 PM »
 :tellme: f0dder, was the SetAffinity required?

Skrommel
335
Finished Programs / Re: IDEA: Replacement Power Options applet
« Last post by skrommel on January 18, 2007, 06:33 PM »
 :)
why do you use the loop thing

I missed that information in the excitement, f0dder! So you've been reading the AHK manual, have you?

The code isn't mine, I pretty much borrow everyone else's work.

I've posted your findings on the AHK forum. Maybe you should post your final GetCpuLoad code there?

Skrommel
336
Post New Requests Here / Re: IDEA: an indication that "start-up" is finished
« Last post by skrommel on January 18, 2007, 11:47 AM »
 :) Anyone care to try IdleRun v1.2?

Skrommel
337
Finished Programs / Re: IDEA: Replacement Power Options applet
« Last post by skrommel on January 18, 2007, 11:47 AM »
 :D Great!

Thanks for finding the solution, f0dder!

Skrommel
338
Finished Programs / Re: IDEA: Replacement Power Options applet
« Last post by skrommel on January 18, 2007, 10:47 AM »
 :tellme: Anyone care to test LowToSleep v1.3?

- 20070118 - v1.3: Retrieves the number of processors for correct calculations on multi core systems.

Skrommel
339
Post New Requests Here / Re: IDEA: an indication that "start-up" is finished
« Last post by skrommel on January 17, 2007, 06:47 PM »
 :tellme: How about IdleRun v1.1?
340
Finished Programs / Re: IDEA: Replacement Power Options applet
« Last post by skrommel on January 17, 2007, 06:45 PM »
 :tellme: How about LowToSleep v1.2?

Skrommel
341
Unfinished Requests / Re: IDEA: Get current directory
« Last post by skrommel on January 16, 2007, 01:23 PM »
 :tellme: I never knew you could use the &&... Great, murple!

Skrommel
342
Post New Requests Here / Re: Can DimSaver become DimScreen?
« Last post by skrommel on January 15, 2007, 06:41 PM »
 :) I can make DimScreen keep more always on top windows under wraps, but they tend to flash instead of just showing through, so I chose this solution.

I guess I could cut holes above purple squares to make it work with videos, too, but I think a "change the monitor brightness" is a better solution to the whole problem.

Skrommel
343
Skrommel's Software / Re: HideDesktop v1.1 Problems
« Last post by skrommel on January 15, 2007, 06:38 PM »
 :) Try HideDesktop v1.2!

Skrommel
344
Post New Requests Here / Re: Can DimSaver become DimScreen?
« Last post by skrommel on January 15, 2007, 05:24 PM »
 :) Try this one.

DimScreen - Dim the whole screen.

Features:
- Change the brightness by selecting a % in the tray menu.
- Doesn't work properly with video windows.



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

It's far from perfect, slowing things down, and things are popping through, but it could work for example in night time navigation apps.

Skrommel
345
 :tellme: Did Barnacle work at all?

My Windows is Norwegian, AutoHotkey is English, where does the German come from?

Could I convince you to start XP in Safe Mode? (Start your computer and press F8 every second until a menu appears, choose Safe Mose) Does Barnacle work now?

Skrommel
346
Post New Requests Here / Re: IDEA: Universal behavior for Ctrl-W
« Last post by skrommel on January 15, 2007, 03:47 PM »
 :) No, it's actually mapping Ctrl-W to Ctrl-F4, which closes child windows first.

Skrommel
347
Post New Requests Here / Re: IDEA: Grayscaled area of desktop
« Last post by skrommel on January 15, 2007, 02:51 PM »
 :) Actually, it should be no problem making this, if you can identify the window. Try using AutoHotkeys spy tool and see if it can get the name and class of the window it's over. If so, I can get the image, turn it greyscale, and paint it back.

Skrommel
348
 :tellme: German XP, or is there something in there you don't know about?

Skrommel
349
Post New Requests Here / Re: Can DimSaver become DimScreen?
« Last post by skrommel on January 15, 2007, 11:40 AM »
 :) Have you tried VoluMouse from http://www.nirsoft.n...utils/volumouse.html? It will let you change the brightness of your screen by rolling the mouse wheel over the taskbar. You can't go pitch black, but it might be good enough.

Skrommel
350
 :tellme: So who's woting to kill the windows instead of closing them, risking the loss of unsaved data?

Skrommel
Pages: prev1 ... 9 10 11 12 13 [14] 15 16 17 18 19 ... 38next