Not sure where the L is coming from in the count.
2.1.2.47756 2012 x64
Not sure where the L is coming from in the count.
2.1.2.47756 2012 x64
The value is converted to a Long Integer64 (which in MAXScript ends with L), but it looks like I am not removing the L before converting it to a string. Fixing…
EDIT: Fixed internally. Thanks!
You can add the fix yourself to “KrakatoaGUI.ms” by modifying the function like this:
fn addCommas txt =
(
if matchPattern txt pattern:"*L" do txt = substring txt 1 (txt.count-1)
...
This will remove the L if found.