From b3d14157d4369226d7be8583c91465d78d705461 Mon Sep 17 00:00:00 2001 From: theadam Date: Mon, 14 Apr 2025 19:59:49 +0200 Subject: [PATCH] +NEW: With JAWS cursor, the top of file and bottom of file commands jumps the cursor over the buffer to the top and to the bottom. --- wt-access/WindowsTerminal.JSS | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/wt-access/WindowsTerminal.JSS b/wt-access/WindowsTerminal.JSS index 4bbaa9e..f4dfdff 100755 --- a/wt-access/WindowsTerminal.JSS +++ b/wt-access/WindowsTerminal.JSS @@ -68,6 +68,20 @@ var string LastLine = lines[ArrayLength (lines)-1] return LastLine EndFunction +Script TopOfFile() +IF IsJAWSCursor () +JAWSPageUp () +EndIf +PerformScript TopOfFile() +EndScript + +Script BottomOfFile() +IF IsJAWSCursor () +RouteJAWSToPc () +EndIf +PerformScript BottomOfFile() +EndScript + string function ProcessUiaText(string text) var stringArray lines = StringSplit (text, "\n", false) var int x = 0