Scrolling with Down Arrow Key

Features wanted...
Post Reply
yusef88
Posts: 1126
Joined: 28 Jan 2013 03:50
Location: Windows 8.1 32-bit

Scrolling with Down Arrow Key

Post by yusef88 »

hoping the photo explains my wish
Attachments
2017-01-05_201328.png
2017-01-05_201328.png (255.31 KiB) Viewed 373 times

highend
Posts: 13316
Joined: 06 Feb 2011 00:33
Location: Win Server 2022 @100%

Re: Scrolling with Down Arrow Key

Post by highend »

Code: Select all

    $view = get("view");
    if !(regexmatches(get("view"), "4|5|6")) {
        sendkeys "{DOWN}";
    } else {
        $lastItem = get("CountItems");
        $prevPos  = get("FocusedPos");
        sendkeys "{DOWN}";
        wait 50;
        $curPos = get("FocusedPos");
        if ($prevPos == $curPos && $curPos != $lastItem) {
            sel $lastItem;
        }
    }
But it would be only assignable to alt+down, down itself can't get a keyboard shortcut
One of my scripts helped you out? Please donate via Paypal

admin
Site Admin
Posts: 60567
Joined: 22 May 2004 16:48
Location: Win8.1 @100%, Win10 @100%
Contact:

Re: Scrolling with Down Arrow Key

Post by admin »

Wish granted in next beta. :)

yusef88
Posts: 1126
Joined: 28 Jan 2013 03:50
Location: Windows 8.1 32-bit

Re: Scrolling with Down Arrow Key

Post by yusef88 »

Thanks a lot :tup:

Post Reply