You mean the one mentioned here?OpenXTalkPaul wrote: ↑Wed Mar 12, 2025 1:52 am Have you seen the "Winkler test", the HyperTalk compatibility test included with OpenXION? It's kind of crazy. HyperTalk was extremely forgiving and/or much more flexible than OXT engine interpreter.
Code: Select all
put empty into a
put "a b c" into item
put 1 into char
put 2 into word
if true then repeat with word char of item = char char to word of word char of char to word char to char of char char of word
put a&&"HyperTalk is a bitch to parse
end repeat else beep
Even LCC/OXT won't parse it: (and rightly so, in my opinion).
What does stand half-a-chance of working is:
Code: Select all
put "" into a
put a & " b c" into titem
put 0 into tCount
put the number of words of titem into tRpt
repeat tRpt
add 1 to tCount
put tCount & " HyperTalk is a bitch to parse, but it helps when the script is half-right!"
end repeat
Anyway, on with testing.
Working fine in Edge on Windows 11 too: Here we are in Chrome (MacOS), doing string combination and answer dialogs. All seems to be working.