topbanner_forum
  *

avatar image

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

Login with username, password and session length
  • Tuesday March 19, 2024, 12:09 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

Author Topic: Featch request: Mouse Wheel Scroll Taskbar Apps modification  (Read 6964 times)

mohax

  • Participant
  • Joined in 2009
  • *
  • default avatar
  • Posts: 4
    • View Profile
    • Donate to Member
Hi all, please help with script modification for dual - screen - users)))

I need modification of ahk script(look in attachment), it's discussion here:
TOPIC: idea: mouse wheel scroll can cycle through applications on taskbar
https://www.donation...4s2gnulh7f9md9rb5rqc


I have 2 taskbars(dual monitor)  (see screenshot)
on first-screen scrolling work fine,
but on second class of taskbar "aim_multimonitortaskbar" so scrolling on it doesnt work

and on each monitor taskbar i saw is its own apps which are on this screen only

so if i scroll mouse on first screen taskbar - i want switching only first screen apps,
if on second - switching second, with class of taskbar "aim_multimonitortaskbar"

 pls if it is really and not very complicated, make this feature for dual-screen-users))
« Last Edit: January 23, 2009, 07:48 AM by mohax »

lanux128

  • Global Moderator
  • Joined in 2005
  • *****
  • Posts: 6,277
    • View Profile
    • Donate to Member
Re: Featch request: Mouse Wheel Scroll modification
« Reply #1 on: January 23, 2009, 08:15 AM »
hi mohax, i had modified the original script to include the hotkey support. as for your request, it seems like a case of adding the class id of the second taskbar for detection, which as you identified is "aim_multimonitortaskbar" but i don't have dual-monitor so you have to let me know whether it works or not. :)

here's what i changed, from
If class = Shell_TrayWnd
to
If (class == "Shell_TrayWnd" || class == "aim_multimonitortaskbar")


mohax

  • Participant
  • Joined in 2009
  • *
  • default avatar
  • Posts: 4
    • View Profile
    • Donate to Member
Re: Featch request: Mouse Wheel Scroll Taskbar Apps modification
« Reply #2 on: January 23, 2009, 12:22 PM »
I wrote it wrong... case sensitive)
> aim_MultiMonitorTaskbar

Actually this I have already do))))
So, result: if I scroll mouse wheel on the second taskbar - apps switching, that on the first screen only,
 like I scroll on the first taskbar, and on the second is no move.

lanux128

  • Global Moderator
  • Joined in 2005
  • *****
  • Posts: 6,277
    • View Profile
    • Donate to Member
Re: Featch request: Mouse Wheel Scroll Taskbar Apps modification
« Reply #3 on: January 23, 2009, 10:51 PM »
i hope it works this time, try the new script then. ;)


mohax

  • Participant
  • Joined in 2009
  • *
  • default avatar
  • Posts: 4
    • View Profile
    • Donate to Member
Re: Featch request: Mouse Wheel Scroll Taskbar Apps modification
« Reply #4 on: January 24, 2009, 06:37 AM »
nothing on the second... but...
if in original script i replace the the Shell_TrayWnd with aim_MultiMonitorTaskbar
on the second there should be switching... I saw no switching(((

today I run the Winspector and find some differences
maybe that helps?

lanux128

  • Global Moderator
  • Joined in 2005
  • *****
  • Posts: 6,277
    • View Profile
    • Donate to Member
Re: Featch request: Mouse Wheel Scroll Taskbar Apps modification
« Reply #5 on: January 24, 2009, 07:24 PM »
the info from Winspector doesn't show much, anyway i had included a tooltip that shows the 'class' when you hover over the taskbar. so try this and let me know what it says.


mohax

  • Participant
  • Joined in 2009
  • *
  • default avatar
  • Posts: 4
    • View Profile
    • Donate to Member
Re: Featch request: Mouse Wheel Scroll Taskbar Apps modification
« Reply #6 on: January 25, 2009, 04:22 AM »
Over apps on tasksbar on First screen:
MouseOver Taskbar
ahk_class Shell_TrayWnd

On Second:
MouseOver Taskbar
ahk_class aim_MultiMonitorTaskbar

lanux128

  • Global Moderator
  • Joined in 2005
  • *****
  • Posts: 6,277
    • View Profile
    • Donate to Member
Re: Featch request: Mouse Wheel Scroll Taskbar Apps modification
« Reply #7 on: January 25, 2009, 05:04 AM »
then we've got the 'class' name right, now for some reasons the 2nd taskbar doesn't seem to respond. i'll let you know if i figure out something. :)