topbanner_forum
  *

avatar image

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

Login with username, password and session length
  • Saturday November 15, 2025, 5:24 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 ... 65 66 67 68 69 [70] 71 72 73 74 75 76next
1726
Finished Programs / Re: PutAside: declutter and cycle through windows
« Last post by justice on May 22, 2007, 07:08 PM »
Right I am confident that it is ready for a big version!

NEW in PutAside May 2007:
* Squashed a few remaining bugs in the cycling routine
* Fixed the situation where the last restored window in some cases was not activated (not topmost)
* Customizable Hotkeys via a nice preferences window

Possibly in a future release:
* Some kind of autoupdate mechanism.. Possibly via Software Update
* Nice trayicon
* bugreports via program

Download the newest version at the top of this page.
1727
Finished Programs / Re: PutAside: declutter and cycle through windows
« Last post by justice on May 22, 2007, 10:01 AM »
Yes I guess it's a combination between alt-tab, Show Desktop, a boss-key, and virtual desktops :)

I've always found virtual desktops to be too complex: I can never remember what is on the other desktops. I never used bosskeys, and with show desktop/alt-tab the taskbar is so cluttered.

PutAside is then a middle way to temporarily hide windows without making them inaccessible.
1728
Finished Programs / Re: PutAside: declutter and cycle through windows
« Last post by justice on May 22, 2007, 09:28 AM »
I don't want to release another half tested release, but additional testing would be welcome. Things like incompatible applications, missing windows in cycles etc. I am using PutAside all day now and if all is well I will release a compiled version at the end of the week:

AutoHotkey Code
; PutAside03 by justice

#NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases.
SendMode Input ; Recommended for new scripts due to its superior speed and reliability.
#SingleInstance,Force
SetWinDelay,0
Dir = %A_AppData%\PutAside
IniFile = settings.ini
FileCreateDir, %Dir%
SetWorkingDir, %Dir%
version = Beta02

ExclusionList =
Processes =
IDs =
Titles =
maxItems =
PutAsideEnabled =
this_windowcycle =
Gosub,READINI
Gosub,IndexWindows
OnExit, QUIT
GoSub, Standby

; End of initialisation
IndexWindows:
   Traytip,PutAside, Shift-ScrollLock`t Put aside / restore windows.`nScrollLock`t Cycle through hidden windows.
   WinGet, id, list,,, Program Manager ; get list of all foreground ids
   Loop, %id%
   {
     this_id := id%A_Index%
      WinGet, this_process, ProcessName, ahk_id %this_id%
      if NOT this_process ;exclude emptiness
         continue
      WinGetTitle, this_title, ahk_id %this_id%
      if NOT this_title ;exclude start menu and empty processes
            continue
      StringGetPos, pos, ExclusionList, %this_process%
      i +=1
      Processes%i% := this_process
      Titles%i% := this_title
      IDs%i% := this_id
   }
   id =
   maxItems := i
   GoSub, TRAYMENU
return

READINI:
IfNotExist, %IniFile%
   GoSub, WRITEINI
IniRead, ExclusionList, %IniFile%,ExclusionList, list
return

WRITEINI:
   IniWrite, %ExclusionList%, %IniFile%, ExclusionList, list
return


TRAYMENU:
   Menu,Tray,NoStandard
   Menu,Tray,DeleteAll
   If maxItems ; if windows have been indexed
   {
      Loop, %maxItems% ; add checkboxes for every window
      {
         this_process := Processes%A_Index%
         Menu, ToggleStatus, add, %this_process%,ToggleStatus
         StringGetPos, pos, ExclusionList, %this_process%
         if NOT ErrorLevel
            Menu, ToggleStatus, Uncheck, %this_process%
         else
            Menu, ToggleStatus, Check, %this_process%

         
      }
      Menu, tray, add, E&nabled for.., :ToggleStatus
   }
   Menu,Tray,Add,
   If PutAsideEnabled
      Menu,Tray,Add,Restore windows,PutAside
   Else
      Menu,Tray,Add,Hide windows,PutAside
   Menu,Tray,Add,
   Menu,Tray,Add,&About,ABOUT
   Menu,Tray,Add,&Bugs and Feedback...,ONLINE
   Menu,Tray,Add,&Online Help,ONLINE
   Menu,Tray,Add,
   Menu,Tray,Add,&Exit,QUIT
Return

ABOUT:
Msgbox, PutAside %version% by justice`n`n`tPress SHIFT-SCROLLLOCK to hide and unhide all applications.`n`tPress SCROLLLOCK to cycle through hidden windows.`n`tExclude processes using the tray menu.
return

ONLINE:
Run,https://www.donationcoder.com/forum/index.php?topic=8626
return

QUIT:
   GoSub, ShowWindows ; before exiting restore original situation
ExitApp

ToggleStatus:
   Menu,ToggleStatus,ToggleCheck,%A_ThisMenuItem%
   StringGetPos, pos, ExclusionList, %A_ThisMenuItem%
   if NOT ErrorLevel ; found
         StringReplace, ExclusionList, ExclusionList, %A_ThisMenuItem%`,,,
   else
         ExclusionList = %ExclusionList%%A_ThisMenuItem%`,
   
   Gosub, WRITEINI
   ;Msgbox, %ExclusionList%
Return

ScrollLock::
   If NOT PutAsideEnabled ;don't do anything
      return
   
   GoSub, CycleWindows
   return

CycleWindows:
   ;hide last shown enabled window IF ENABLED
   current_id := IDs%this_windowcycle%
   StringGetPos, pos, ExclusionList, %this_process%
   If ErrorLevel ; not found in exclusion list
   {
      WinHide, ahk_id %current_id% ;hide previously opened window
   }
   If this_windowcycle = %maxItems%
         this_windowcycle = 0 ;cycle through windows from beginning
   this_windowcycle++



   ;show next window
   Loop, %maxItems%
   {
      this_id := IDs%this_windowcycle%
      this_process := Processes%this_windowcycle%
      StringGetPos, pos, ExclusionList, %this_process%
      Traytip, PutAside, %this_windowcycle% - Restoring %this_process%
      WinShow, ahk_id %this_id%
      WinActivate, ahk_id %this_id%
      If ErrorLevel ; not found in exclusion list
      {
         break
      }
   }
return

+ScrollLock::
   GoSub, PutAside
return

PutAside:
   If PutAsideEnabled
   {
      PutAsideEnabled =
      GoSub, ShowWindows
   }
   Else
   {
      PutAsideEnabled = true
      GoSub, HideWindows
   }
return

ShowWindows:
   Loop, %maxItems% ;show all hidden windows
   {
      next_id := IDs%A_Index%
      WinShow, ahk_id %next_id%
   }
return

HideWindows:
   Traytip,PutAside, Putting aside windows..`nUse ScrollLock to cycle through them.
   WinGet, id, list,,, Program Manager ; get list of all foreground ps
   i= 0
   Loop, %id%
   {
     this_id := id%A_Index%
      WinGet, this_process, ProcessName, ahk_id %this_id%
      if NOT this_process ;exclude emptiness
         continue
      WinGetTitle, this_title, ahk_id %this_id%
      if NOT this_title ;exclude start menu and empty processes
            continue
      StringGetPos, pos, ExclusionList, %this_process%
      If ErrorLevel ; not found in exclusion list
         WinHide, ahk_id %this_id%
         
      i +=1
      Processes%i% := this_process
      IDs%i% := this_id
      
   }
   id =
   maxItems := i
   GoSub, TRAYMENU
return

Standby:


New in BETA02:
* Shift-scrolllock to hide / restore window (or via tray menu)
* Tray menu!!
* Exclude processes via system tray  :Thmbsup:
* Save these settings permanently in Application Data
* Fixed several counting and implementation bugs in hiding, cycling and showing windows

Todo:
* Customizable hotkeys
1729
Finished Programs / Re: PutAside: declutter and cycle through windows
« Last post by justice on May 22, 2007, 06:18 AM »
Thanks that explains it. I am working on excluding applications for the next version straight from the tray menu.
1730
That actually sounds like a microformat in the making perry. Very interesting comment.
1731
Finished Programs / Re: PutAside: declutter and cycle through windows
« Last post by justice on May 22, 2007, 01:23 AM »
Thanks for the feedback!
AnyM,sorry I've sent you the source in a PM, you can also view it below.
Grorgy,thanks for that. it definately shouldn't hide the cursor  :o I guess you are not using windows XP like me? Could you tell me your configuration and if you have any mouse utilities running?
Lanux128, I was thinking the app should really start without doing anything, with a key toggle and menu option one could enable/disable it. I'll get this done today. The exception list is a great idea and will definately get in too.
1732
Finished Programs / PutAside: declutter and cycle through windows
« Last post by justice on May 21, 2007, 06:49 PM »
Make sure you update to the latest version of DcUpdater if you have it installed. It includes fixes nessecary for PutAside to update.

Sometimes you'll want to put aside what you are working on to complete an important task. But the taskbar is such a mess!

So I created PutAside. Run the program and press Shift-ScrollLock and all open windows are hidden, you can then work on your tempory task. Cycle through the hidden windows with ScrollLock. Press Shift-ScrollLock again and all hidden windows are restored. You can exclude windows.

PutAside is a combination between alt-tab, Show Desktop, a boss-key, and virtual desktops. I've always found virtual desktops to be too complex: I can never remember what is on the other desktops. I never used bosskeys, and with show desktop/alt-tab the taskbar is so cluttered. PutAside is then a middle way to temporarily hide windows without making them inaccessible.

putaside.png

Feedback welcome!

CHANGELOG:
v1.12
        * Updated DcUpdater and compiled PutAside without executable compression. (no more false positives)

v1.11
* Fixed updater

v1.10
* Added readme
* Added DcUpdater code - check for and install updates using
this terrific tool (https://www.donationcoder.com/Software/Mouser/Updater/index.html)

v1.01
* Fixed preferences dialogue crash as reported by cemole and proposed fix by lanux128

Download Page
1733
Find And Run Robot / Re: aliases
« Last post by justice on May 21, 2007, 04:20 PM »
and numpad 1-9 ;) guess it's better save then sorry  :Thmbsup:
1734
Find And Run Robot / Re: aliases
« Last post by justice on May 21, 2007, 07:28 AM »
Regarding your "close farr" problem , I always just press the hotkey again (pause/break) this hides farr back in the system tray.
1735
Post New Requests Here / Re: IDEA: Run Before / After something
« Last post by justice on May 21, 2007, 07:01 AM »
Thanks Lanux128. An alternative also would be to make an autohotkey script and use RunWait. I was hoping there would have been a program that would detect program x was started, instead started y, then started x, and afterwards start z.
The benefit of this would be that I can just keep running X as normal, or via file associations etc.

However the more I think about it, the more this seems to be impossible, also Windows might not like it, basically you're creating a dodgy piece of software. :)
1736
General Software Discussion / Re: Lightweight alternatives to FeedDemon
« Last post by justice on May 20, 2007, 06:47 PM »
The thing is, I don't want to read the same news twice, so a local RSS reader needs to synchronize between home and work. Or I use a web one. However I then start to add al my feeds (at least 30) then notice how much time it costs to catch up, so then I don't bother reading any. It's just impossible.
1737
Been laughing all evening because of that link Mouser great find!
good one too: http://www.basicinst...t/images/40pswrd.gif
1738
Post New Requests Here / Re: Global Text Replacement
« Last post by justice on May 19, 2007, 04:46 PM »
BK ReplaceM can do that you need. It takes a minute or so to understand the interface. Basically you define a group of files, then define phrases and their replacements, then you apply the operations on the group of files.

At its core, ReplaceEm is essentially a text search-and-replace program. However, unlike the search-replace functionality of a standard text editor, ReplaceEm is designed to operate on multiple files at once. And you need not only perform one search-replace operation per file -- you can setup a list of operations to perform. If different groups of files need to have different operations performed on them, this is no problem either. You can also specify a backup file for each file processed just incase the replace operation didn’t do exactly what you wanted.
100% Free!

Works well in practice though. You can also download a trial from Dreamweaver, it's find/replace utility can run on files in a directory (But it won't save them across sessions like BK ReplaceM does.
1739
Wow the author is more than reasonable and responds within the hour. I definately will have to write a full-review about it now!  :-[ :Thmbsup:
1740
General Software Discussion / Re: EPC Title bar changer
« Last post by justice on May 19, 2007, 07:03 AM »
Thanks for trying it out! It's really easy:

Run titlechanger (once), then press ScrollLock whenever you want to change a window. The scrolllock key sits on your keyboard between PrintScreen and Pause/Break.
You don't need to click on titlechanger or any systemtray icons :)
1741
Performance looks good but the trial can only index 10.000 files, not nearly enough for me to test the performance of it  :( I might ask for a less restrictive trial but on the other hand that sounds a bit cheeky. Also licensing per pc.. means I'll need two copies hmm.
1742
Before purchasing our software you may try it in a fully functional version. The trial period is 30 days. If you need more time for testing, just ask us and we will gladly grant you free additional time!
Right well that's the perspective on software that I've come to appreciate, Archivarius is definate going for a trial then.
1743
Living Room / Re: Microsoft takes on the free world
« Last post by justice on May 18, 2007, 01:51 PM »
Well that does put things in context. All's not as bad as it seemed.
1744
Has the situation changed? I'm running Vista and debating whether or not I should include more data to the built in WDS or install an alternative. I found GDS too resource consuming..

I love Locate maybe someone knows a desktop search that is light like Locate but does indexing too?
1745
General Software Discussion / Re: Ever used Windows CardSpace??
« Last post by justice on May 18, 2007, 10:30 AM »
It's build into vista, and it uses UAC to prevent you minimizing or screenshotting it, even adding a delay timer doesn't work. Interesting how this works in XP as it doesn't have UAC.

A competitor is OpenID which is decentralised single login, see http://en.wikipedia.org/wiki/OpenID for more info.

Support for OpenID is in the works on webservices like Wordpress (IIRC) and several others, however Windows Cardspace is centralised via Microsoft so I don't know how widespread support will be.
1746
General Software Discussion / Re: EPC Title bar changer
« Last post by justice on May 18, 2007, 10:22 AM »
Try TitleChanger 1.0

Run the program, then press ScrollLock to change the title of the active window!

Ahk source included!
titlechanger.png
I have no idea why you would want to use it, so please enlighten me lol :)
1747
Living Room / Re: Send a shortcut of a file to the Send To Menu
« Last post by justice on May 18, 2007, 08:58 AM »
After some keyboard wizardry I solved my own problem  :Thmbsup:
Shift-Ctrl-RightClick      ->    Send To     -> Start Menu
1748
Finished Programs / Re: Folder-RSS: Monitor folder changes via rss
« Last post by justice on May 18, 2007, 08:55 AM »
I'm working on some changes for Folder-RSS
I've got the following things working:

* -only:filename.ext = A single wildcard such as *.mp3 to include mp3 files only. Multiple wildcards will be more diffucult to implement. Default is *.*
* -only:files|folder = only include files or only process folders to the feed. Depending if things are organised into their own folder or not this can be handy. Default is both files and folders
* improved gui to make the syntax more maintainable and to point people to my support website. Also this could grow into a GUI Wizard for Folder-RSS is there is enough interest from you :)

Todo:
* Planning to make the other defaults changeable as well.
* Displaying the folder-structure in the feed; possible working file:// links if it can be done.

 Regarding FTP support there are good products already on the market including AutoFTP to do this for you, it will require setting up ftp details etc. I see Folder-RSS more as a quick tool as part of a bigger command sequence. Let me know what you think.

Thanks for all your feedback so far it's very rewarding   :-[
1749
Living Room / Re: Send a shortcut of a file to the Send To Menu
« Last post by justice on May 18, 2007, 08:45 AM »
 :-\ I found a temporary workaround until someone comes up with a real solution:
Send to Desktop to create a shortcut
Send the shortcut to the start menu
Delete the shortcut!

Quirkiest windows administration action of the year award 2007 nominee!
1750
Living Room / Send a shortcut of a file to the Send To Menu
« Last post by justice on May 18, 2007, 08:41 AM »
I'm trying out plenty of software that doesn't install itself in the Start Menu in Vista. This means I can't find them with Find+Run Robot.
So I've added a shortcut that points to my start menu to the Send To Menu. However any program that I use it with is copied to the start menu, I just want a shortcut placed in there, not the whole program itself!

What can I do or is there an even easier way. Your help will solve a long outstanding argument between me and windows :)!

sendtostart.png
Pages: prev1 ... 65 66 67 68 69 [70] 71 72 73 74 75 76next