Created
March 28, 2024 11:03
-
-
Save 958/efbd32bc1554088204f440b8fb61ffc7 to your computer and use it in GitHub Desktop.
tablacus explorer select next tabgroup
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
let n = await te.Data.Tabgroups.Click + 1; | |
const nLen = await GetLength(await te.Data.Tabgroups.Data); | |
if (n < 1) { | |
n = nLen; | |
} | |
if (n >= nLen + 1) { | |
n = 1; | |
} | |
Addons.Tabgroups.Change(n); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment