Messages - wr975 [ switch to compact view ]

Pages: [1] 2 3 4 5 6 ... 74next

2
Post New Requests Here / Re: IDEA: Folder Zipper
« on: May 14, 2013, 06:36 AM »
So, you're using WinRAR already? Good for you. I've attached a short screencast video showing you how to create a WinRAR profile + add it the context menu. After doing this, you can zip your files and folders into separate archive files with two mouse-clicks.

3
Post New Requests Here / Re: IDEA: Folder Zipper
« on: May 08, 2013, 03:28 AM »
What I want to be able to do is either select a large number of folders and right-click create individual archives for each folder selected,

Try WinRAR: http://windows7themes.net/how-to-zip-multiple-files-into-individual-archives.html (for a single click solution: Create a profile and let WinRAR put it in your context menu)

4
General Software Discussion / Re: Advice needed on AHK script
« on: May 06, 2013, 07:53 AM »
Someone posted a more advanced "refresh system tray" script

http://www.autohotkey.com/board/topic/80624-notrayorphans/

and also offers the download of a compiled script. If it works, just put NoTrayOrphans.exe" in one of your batch files.

http://www.autohotkey.net/~Nazzal/Other/NoTrayOrphans.exe

5
General Software Discussion / Re: Advice needed on AHK script
« on: May 05, 2013, 11:20 AM »
It runs fine here, so I'm assuming that you've problems starting the script. It's a function. You need to call it, else it will do nothing. Add these lines at the beginning.

#x::
RefreshTray()
Return

Launch the script. Every time you press WINDOWS+x the "RefreshTray" function will run.

Or, just remove the function part and make it a plain normal script.

   WM_MOUSEMOVE := 0x200

   ControlGetPos, xTray,, wTray,, ToolbarWindow321, ahk_class Shell_TrayWnd
   endX := xTray + wTray
   x := 5
   y := 12

   Loop
   {
      if (x > endX)
         break
      point := (y << 16) + x
      PostMessage, %WM_MOUSEMOVE%, 0, %point%, ToolbarWindow321, ahk_class Shell_TrayWnd
      x += 18
   }

Pages: [1] 2 3 4 5 6 ... 74next
Go to full version