Skip to content

Instantly share code, notes, and snippets.

@tablacus
tablacus / downtotop.js
Created November 20, 2023 13:26
On the details screen, use the down key on the bottom item to move to the top item - Tablacus Explorer
if (Ctrl.GetFocusedItem < Ctrl.ItemCount(SVGIO_ALLVIEW) - 1) {
return false;
}
wsh.SendKeys("{HOME}");
@tablacus
tablacus / uptoend.js
Created November 20, 2023 13:23
On the details screen, use the up key on the top item to move to the bottom item. - Tablacus Explorer
if (Ctrl.GetFocusedItem) {
return false;
}
wsh.SendKeys("{END}");