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:23 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 ... 24 25 26 27 28 [29] 30 31 32 33 34 ... 38next
701
 :) Yes, removing the system menu should work, but it also removes the min and  max as well as the X. It also wouldn't catch ownerdrawn captions.

In AutoHotkey:

WinSet,Style,-0x80000,Calc

I suggest catching WM_Close in a global message hook.

Skrommel
702
Post New Requests Here / Re: program to hide windows in systray
« Last post by skrommel on December 19, 2005, 05:28 PM »
 :) I don't know if it's what you're looking for, but it lets you activate windows using hotkeys:

WinStep - Step through groups of windows using hotkeys.

  Ctrl-0: Add a window to a Group0
  Ctrl-1: Add a window to a Group1
    ...

  Alt-0 : Show the next window of Group0
  Alt-1 : Show the next window of Group1
    ...

Features:
- User defined hotkeys and sounds.

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

Skrommel
703
 :) Great idea! Can't be done in AutoHotkey, i think, as it doesn't have a global message hook.

Skrommel
704
 :) Try TransOther v.1.1!

Remember to delete your existing TransOther.ini-file when downloading!

Skrommel
705
 :) Try this one!

TransOther - Make all windows but the active one transparent.

Features:
- User defined transparency level.
- Can ignore always ontop windows.
- Won't make parent windows transparent while children is active.

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

Skrommel
706
Post New Requests Here / Re: IDEA: creating HTML lists from URLs in clipboard
« Last post by skrommel on December 16, 2005, 06:13 AM »
 :) Again, Internet Explorer has a save function, and it can even save to a single file:
File - Save as...  and choose the single file format *.mht.

Skrommel
707
Finished Programs / Re: DONE - Idea: Movie Cache Viewer
« Last post by skrommel on December 15, 2005, 04:28 AM »
708
Post New Requests Here / IDEA: Tool to lock every window EXCEPT a particular one
« Last post by skrommel on December 15, 2005, 04:26 AM »
relipse wrote:

I was wondering if you could make a tool to lock every window EXCEPT a particular one. Like if i have to work on a paper, I would ONLY be able to use Microsoft Word until i am done the paper (prevent distractions).

-ReLipse


 :) So here's my attempt:

SingleApp - Only allow one application to be active.

Features:
- Autmatically restart the application when the watched window is closed
- Password protected. Password: SingleApp

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

Skrommel
710
 :-\ You could send a RightClick and choose Copy Shortcut or something from the menu, depending on the window beneath the cursor, and then Run or paste it.

Skrommel
711
Post New Requests Here / Re: IDEA: Compare File Properties
« Last post by skrommel on December 15, 2005, 01:45 AM »
 :) Exe detection should be added...

Skrommel
712
Finished Programs / Re: IDEA!: Transparent TaskBar When No Window is Maximized.
« Last post by skrommel on December 14, 2005, 07:26 PM »
 :tellme: Now I can't replicate the error...  but it must be a problem with getting the original transparency of the taskbar.

Try the verision I just uploaded. If you have a very transparent taskbar when starting NoTransMax, it sets it to 50%.

Skrommel
713
Finished Programs / Re: IDEA!: Transparent TaskBar When No Window is Maximized.
« Last post by skrommel on December 14, 2005, 07:03 PM »
 :tellme: Happened here, too! I have no idea... It's such a simple script...

To recover for now just rerun NoTransMax, maximize a window and then kill NoTransMax using the task manager.

Skrommel
714
Finished Programs / Re: DONE - IDEA: Program Closer
« Last post by skrommel on December 14, 2005, 07:00 PM »
 :tellme: It's the doings of the Clip.exe tool. It is used to pipe command line output to the clipboard, and I save the old clipboard and reload it before every command.

I might just as well just pipe to a file and load it from there... Or learn WINAPI properly and replace the extra tools...

Skrommel
715
Finished Programs / Re: DONE - IDEA: Program Closer
« Last post by skrommel on December 14, 2005, 05:42 PM »
 :) Just CloseMany v2.0 for XP with more bells and whistles.

CloseMany - Close multiple programs or services at once.

Features:
- Close, Kill or Restart processes.
- Start, Stop or Restart services.
- Select multiple lines by Click-Drag or Ctrl-Click or Shift-Click



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

Skrommel
716
Post New Requests Here / Re: IDEA: creating HTML lists from URLs in clipboard
« Last post by skrommel on December 14, 2005, 04:04 PM »
 :) I don't know what you guys have against Favorites, but try this one.

UrlHistory - Watches the clipboard for web addresses and saves them with a comment.

Features:
- Doubleclick the tray icon to add an url manually.



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

The biggest problem is identifying an url. This version checks for www, http and ftp, so anything else must be added manually. If any of you have a more generic way, please let me know.

Skrommel
717
 :) Here's a script from AHK's help file:

; This example allows you to move the mouse around to see
; the title of the window currently under the cursor:
#Persistent
SetTimer, WatchCursor, 100
return

WatchCursor:
MouseGetPos, , , id, control
WinGetTitle, title, ahk_id %id%
WinGetClass, class, ahk_id %id%
ToolTip, ahk_id %id%`nahk_class %class%`n%title%`nControl: %control%
return

Skrommel
718
Post New Requests Here / Re: auto website loginer
« Last post by skrommel on December 13, 2005, 11:16 AM »
 :) RoboForm once was free, I use v4.6.8.

Skrommel
719
Post New Requests Here / Re: IDEA: Compare File Properties
« Last post by skrommel on December 12, 2005, 01:41 PM »
 :) But that's exactly how it is!

You can add the class after the window name, so to exclude the replace dialog of Notepad, add

Replace ahk_class #32770

Skrommel
720
Skrommel's Software / Re: Problems with Ghoster
« Last post by skrommel on December 09, 2005, 03:25 AM »
 ;D You really should send me that script of yours, there must be some very clever things going on in there!

Skrommel
721
 :) The problem is getting multiple icons in the tray - AHK only makes one per program. So to have multiple icons, multiple scripts must be running - not very economic.
But it is possible, so if I add Min to tray, I shure will add a Move to tray, too.

Skrommel
722
Finished Programs / Re: Save a page URL
« Last post by skrommel on December 08, 2005, 06:09 PM »
 ;) Something wrong with the Favorites function?

Skrommel
723
Skrommel's Software / Re: Problems with Ghoster
« Last post by skrommel on December 08, 2005, 05:43 PM »
 :tellme: Do you kill it or close it?

 :-[ Not so pretty without it's icon... Corrected.

Skrommel.
724
 :) Here's non tree version - AHK doesn't have a tree view control - yet!

DelEmpty - List and delete empty folders.

Features:
- Show filecount and size of files and subfolders.
- Sort by files, size or path.
- Doubleclick to explore a folder.



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

Skrommel
725
 :) IdleMute v1.8 just makes it possible to disable muting, so the timer can be used to pause WinAmp or other programs instead.

To change the icons in AHK you have to edit the file C:\Prog\Automatisering\AutoHotkey\Compiler\AutoHotkeySC.bin. Make shure you close all Ahk2Exe windows before editing and compiling to make it load the file properly.

I haven't been to the chat channel, but I guess that can be arranged. But there really are better programmers than me on the AHK forums...

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