Page 1 of 2
x64: scripting command html seems to not work anymore (correctly)
Posted: 26 Sep 2025 09:11
by autocart
This line of script worked fine in the 32 bit version:
html("https://www.xyplorer.com/xyfc/viewtopic.php?f=1&t=4&sd=d",1600,1000);
In the x64 version the view window pops but does not show the website. Instead in only shows black space. see image.
Re: x64: scripting command html seems to not work anymore (correctly)
Posted: 26 Sep 2025 09:20
by autocart
Update:
The previous bug report was based on version 28.00.000.
Now, with the latest beta 28.00.0003, it xy pops an error message instead:
Error: 91 (0x0000005B)
Desc: Automation error
Dll: 0
Proc: script_EvalFunction: html
Source:
XY ver: XYplorer 28.00.0003 (64-bit) - Lifetime License Enterprise
OS: Windows 11 Enterprise, 64-bit, ...
Locale: 1031 (de-DE)
ANSI: 1252, ACP: 1252 (ANSI - Lateinisch I)
Font: Segoe UI 12.75, Segoe UI 12, DBCS: No
DPI: 96 (100%), 1920x1080
Date: 2025-09-26 09:15:39
Besides the new beta version, I had also adapted the html string a little bit. New web address:
html("
viewtopic.php?f=1&t=28739&sd=d",1600,1000);
Re: x64: scripting command html seems to not work anymore (correctly)
Posted: 26 Sep 2025 09:59
by admin
Re: x64: scripting command html seems to not work anymore (correctly)
Posted: 26 Jul 2026 11:04
by kiwichick
Is there likely to be a fix for this at some point? Or something else we can use?
Re: x64: scripting command html seems to not work anymore (correctly)
Posted: 26 Jul 2026 11:09
by highend
Re: x64: scripting command html seems to not work anymore (correctly)
Posted: 07 Aug 2026 11:29
by admin
Fixed in next beta.
Re: x64: scripting command html seems to not work anymore (correctly)
Posted: 08 Aug 2026 05:01
by kiwichick
admin wrote: ↑07 Aug 2026 11:29
Fixed in next beta.
Thanks, Don, it's working now, although I have found an issue.
I only have one script that I use with HTML. It's a find and replace script. It has two input fields - the string to find and the replacement - a Replace button and the HTML dialog Close button. I find now that tab ordering doesn't work properly. The string field is the focused field when running the script. I would usually enter the string, press tab to move to the replacement field, enter the replacement, press the Replace button (or Enter on my keyboard) and the replacement is done. Now when I tab out of the string field, the focus goes straight to the Close button and will not move from there.
If I run the script and place the cursor into the replacement field and press tab, it goes to the Replace button, then to the Close button and will not move from there.
If I run the script and place the cursor into the replacement field, then place the cursor back into the string field, and press tab, it goes to the replacement field, then the Replace button, then to the Close button and will not move from there.
2026-08-08_145332.png
Re: x64: scripting command html seems to not work anymore (correctly)
Posted: 08 Aug 2026 08:46
by admin
Can you show the script?
Re: x64: scripting command html seems to not work anymore (correctly)
Posted: 08 Aug 2026 09:23
by kiwichick
admin wrote: ↑08 Aug 2026 08:46
Can you show the script?
Oh geez, sorry. I meant to include but quite clearly I forgot
Code: Select all
end(getinfo("CountSelected") < 1), "Nothing selected!";
$html = urldecode(html('
<html>
<body style="font-family:arial;">
<form method="get" action="xys:">
Replace this: <input type="text" name="NameFieldONE" size="60" value=""><BR>
With this: <input type="text" name="NameFieldTWO" size="60" value=""> <BR>
<p align="left"><input type="submit" name="ReplaceButton" value=" Replace " ></p>
</form>
<script language="javascript" type="text/javascript">
document.getElementById("NameFieldONE").focus();
</script>
</body>
</html>',"700", "350", "Replace With"));
$result = replace(regexreplace($html, "\?NameFieldONE=|&ReplaceButton=\s+Replace\s+", ""), "&NameFieldTWO=", ":");
$replacethis = gettoken($result, "1", ":");
$withthis = gettoken($result, "2", ":");
rename s, "$replacethis/$withthis";
Re: x64: scripting command html seems to not work anymore (correctly)
Posted: 08 Aug 2026 10:45
by admin
Confirmed. Tried several things but failed. Looks like we have to wait for the others.

Re: x64: scripting command html seems to not work anymore (correctly)
Posted: 08 Aug 2026 11:19
by kiwichick
admin wrote: ↑08 Aug 2026 10:45
Confirmed. Tried several things but failed. Looks like we have to wait for the others.
Thanks for checking it out. Fingers crossed we don't have to wait too long

Re: x64: scripting command html seems to not work anymore (correctly)
Posted: 22 Aug 2026 06:23
by kiwichick
Hi Don, I realise this might be another "Looks like we have to wait for the others" situation but I just upgraded to v28.30.1904 and when I ran the html code I showed you, it looks like this:
2026-08-22_162106.png
Re: x64: scripting command html seems to not work anymore (correctly)
Posted: 22 Aug 2026 13:52
by admin
Yes, fixed in next beta.

Re: x64: scripting command html seems to not work anymore (correctly)
Posted: 23 Aug 2026 01:16
by kiwichick
admin wrote: ↑22 Aug 2026 13:52
Yes, fixed in next beta.
Thanks, Don. Something else that is now not working but also may be a "wait for the others" thing but the focus command isn't working. When I run the script, the field that has the the focus command isn't focused.
Code: Select all
document.getElementById("NameFieldONE").focus();
Re: x64: scripting command html seems to not work anymore (correctly)
Posted: 23 Aug 2026 09:18
by admin
Should be fixed in next beta.