This is just a minor bug fix.
Objects
Objects can now properly be assigned to object array references in functions. Earlier, a function like the one below would cause a runtime error:
System
For some reason, the system command did absolutely nothing on Windows (although the undocumented shellexecute did), but it's functioning now.
If you want to capture the output, I suggest you pipe it to a file and read it from there for now:
Mouse
set mouse <x>, <y> was a bit bugged but has been fixed now. After calling the command, the mousex() and mousey() functions would return incorrect values until the user moved the mouse and new coordinates were registered.
Objects
Objects can now properly be assigned to object array references in functions. Earlier, a function like the one below would cause a runtime error:
Code:
procedure assign(&objects?[], object?)
objects[0] = object
endproc
System
For some reason, the system command did absolutely nothing on Windows (although the undocumented shellexecute did), but it's functioning now.
Code:
system "dir & echo hello world & pause"
If you want to capture the output, I suggest you pipe it to a file and read it from there for now:
Code:
' Get a list of files in the current directory.
system "dir /b > temp.txt"
open file 0, "temp.txt"
...
Mouse
set mouse <x>, <y> was a bit bugged but has been fixed now. After calling the command, the mousex() and mousey() functions would return incorrect values until the user moved the mouse and new coordinates were registered.