Quote from
luishp on September 12, 2022, 2:17 pm
@bca07313 just use a variable for each caption, for example [prev] and [next].
Then use NeoScript to change their values whenever you need to:
SetVar [prev] "Previous"
SetVar [next] "Next"
Or if you prefer JavaScript:
BeginJS
$App.prev="Previous";
$App.next="Next";
EndJS
That's all.
@bca07313 just use a variable for each caption, for example [prev] and [next].
Then use NeoScript to change their values whenever you need to:
SetVar [prev] "Previous"
SetVar [next] "Next"
Or if you prefer JavaScript:
BeginJS
$App.prev="Previous";
$App.next="Next";
EndJS
That's all.
javadrajabihakami has reacted to this post.