Just upgraded to Win 11 and have come across something strange.
In macro's where I have wanted to focus the player on a specific input I set the text to bold.
e.g. "TestVar1 | 0 | <html><b>This is a test checkbox</b></html>| CHECK",
This worked fine in Windows 10.
But in Win 11 it goes screwy.
examples below (though I cant show the Win 10 output as I no longer have a Win 10 machine).
In Win 11, this code (see line 3):
Code: Select all
[h: Screen1=input(
"junk|<html><b>Test Test Test</b></html>|-|LABEL|SPAN=TRUE",
"TestVar1 | 0 | <html><b>This is a test checkbox</b></html>| CHECK",
"junk|<html><b><br></html>|-|LABEL|SPAN=TRUE",
"TestVar2 | 0 | Enter a value here",
"junk|<html><b>------------------------------------------------</b></html>|-|LABEL|SPAN=TRUE",
"TestVar2 | 0 | Enter a value here"
)]
[h: abort(Screen1)]
This displays just fine in Win 10.
Without the "<html><b>" (line 3):
Code: Select all
[h: Screen1=input(
"junk|<html><b>Test Test Test</b></html>|-|LABEL|SPAN=TRUE",
"TestVar1 | 0 | This is a test checkbox| CHECK",
"junk|<html><b><br></html>|-|LABEL|SPAN=TRUE",
"TestVar2 | 0 | Enter a value here",
"junk|<html><b>------------------------------------------------</b></html>|-|LABEL|SPAN=TRUE",
"TestVar2 | 0 | Enter a value here"
)]
[h: abort(Screen1)]
Can anyone explain?