topbanner_forum
  *

avatar image

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

Login with username, password and session length
  • Friday April 26, 2024, 1:23 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

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.


Topics - 937o5 [ switch to compact view ]

Pages: [1]
1
Post New Requests Here / IDEA: Tray icon stacking
« on: October 02, 2009, 07:44 PM »
I've looked around for a program that can do this for a long time and I've found nothing... I was wondering if anyone would mind making a program that would allow you to choose any tray icons that you want (My tray space is so limited due to massive amounts of tray icons...) to hide, and simply hide them all into one.. Well, not literally hide, but.. Stack them. So, let's say you have a bunch of tray icons from various different programs, and you could just right click the one for this program and it would bring up a list, then you could select which tray icons you want to hide for more tray space and they would simply be hidden until you re-opened this programs choosing window and unhid them... Maybe even have the ability to stack multiple tray icons that AREN'T hidden into eachother, so... Say, 2 MSN's are open, wouldn't it be nice to have a single tray icon with a small "2" next to it, letting you know there's 2 there? And then you could right click on it to select which one you wanted to right click, and it would initiate a right click to the specified one that you choose, so clicking 1 would be just like right clicking 1's tray icon, clicking 2 would be just like right clicking 2's tray icon, etc...

2
Finished Programs / SuperClick
« on: September 29, 2009, 12:11 PM »
Allows you to hold down the Right Shift key and click with the mouse buttons to simulate multiple clicks, you can select how many clicks and the delay time with hotkeys as well, the script pretty much explains it when you run it and Right Click the tray icon, then click Commands.

Code: AutoIt [Select]
  1. #SingleInstance,Force
  2. Clicks = 2
  3. Delay = 50
  4. Gosub,TRAYMENU
  5.  
  6. RShift & Up::Clicks += 1
  7. RShift & Right::Clicks += 100
  8. RShift & Down::Clicks -= 1
  9. RShift & Left::Clicks -= 100
  10. RCtrl & Up::Delay += 1
  11. RCtrl & Right::Delay += 100
  12. RCtrl & Down::Delay -= 1
  13. RCtrl & Left::Delay -= 100
  14. RShift & Backspace::Clicks = 2
  15. RCtrl & Backspace::Delay = 50
  16. RShift::
  17. TrayTip, SuperClick, `Clicks: %Clicks%, 1,
  18. SetTimer, RemoveTrayTip, 2500
  19. RCtrl::
  20. TrayTip, SuperClick, `Delay: %Delay%ms, 1,
  21. SetTimer, RemoveTrayTip, 2500
  22. RShift & LButton::
  23. Loop, %Clicks%
  24. {
  25. Send, {Click, Left}
  26.     Sleep, %Delay%
  27. }
  28. RShift & RButton::
  29. Loop, %Clicks%
  30. {
  31. Send, {Click, Right}
  32.     Sleep, %Delay%
  33. }
  34. RShift & MButton::
  35. Loop, %Clicks%
  36. {
  37. Send, {Click, Middle}
  38.     Sleep, %Delay%
  39. }
  40. RShift & Esc::ExitApp
  41.  
  42. SETTINGS:
  43. Gui, Destroy
  44. Gui, Add, Text,, Clicks:
  45. Gui, Add, Edit, vClicks
  46. Gui, Add, Text,, Delay:
  47. Gui, Add, Edit, vDelay
  48. Gui, Add, Button, default, OK
  49. Gui, Show
  50.  
  51. ButtonOK:
  52. Gui, Submit
  53. TrayTip, SuperClick, `Clicks: %Clicks% `nDelay: %Delay%, 1,
  54. SetTimer, RemoveTrayTip, 2500
  55.  
  56. CONTROLS:
  57. MsgBox,, SuperClick Controls, RShift and Left/Right/Middle Click (SuperClick) `nTap RCtrl for Delay information. `nTap RShift for Clicks information. `nRShift and Down (-1 Clicks) `nRShift and Up (+1 Clicks) `nRShift and Left (-100 Clicks) `nRShift and Right (+100 Clicks) `nRShift and Backspace (2 Clicks) `nRCtrl and Down (-1ms Delay) `nRCtrl and Up (+1ms Delay) `nRCtrl and Left (-100ms Delay) `nRCtrl and Right (+100ms Delay) `nRCtrl and Backspace (50ms Delay) `nRShift and Esc (Exit)
  58.  
  59. TRAYMENU:
  60. Menu,Tray,NoStandard
  61. Menu,Tray,DeleteAll
  62. Menu,Tray,Add,Settings,SETTINGS
  63. Menu,Tray,Add,Controls,CONTROLS
  64. Menu,Tray,Add,Exit,EXIT
  65. Menu,Tray,Tip,SuperClick
  66.  
  67.  
  68. RemoveTrayTip:
  69. SetTimer, RemoveTrayTip, Off
  70.  
  71. ExitApp

I know noone requested this, but I figured that others might benefit from this in some way, it's my first script. =P

EDIT: Nevermind! I found an icon. :D

EDIT 2: Added support for right and middle mouse buttons!

EDIT 3: I think this'll be my final version.. Added a crude GUI and configured the tray tips, etc. Also got the Traytip timers working!

EDIT 4: Fixed delays not working, they're fine now. I had to completely change how the click sending is done, it's through a loop now. And the delay time now puts the clicks through a Sleep command for the amount of time speicified under Delay, repeating the loop depends on how many "Clicks" it's currently set to send, so 2 clicks = loop 1 time, 5 clicks = loop 4 times, etc.

EDIT 5: Tested Win+Click, all appeared to be well until I HELD DOWN the Windows key while I clicked, then it went spazzy.. So, for now. I changed Left Shift and Left Control to Right Shift and Right Control, since Left Shift and Left Control are more widely used due to Copying, Pasting, Cutting, etc. Suggestions are still welcome! I'm learning as I go, so, I'll try my best. =P

Pages: [1]