You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
netsurf/frontends/amiga/dist/Rexx/ShowTitles.nsrx

19 lines
267 B

/* Show all NetSurf windows and tabs open */
options results
address netsurf
windows
wins = result
do w=1 to wins
windows window w
tabs = result
say "Window" w "(" || tabs "tabs)"
do t=1 to tabs
gettitle window w tab t
say " Tab" t || ":" result
end
end