Hello!
I have this script:
dim $a = 2/3
msgbox (0, 'Current value',$a)
When i'm trying to run it as script (through autoit3.exe), im getting MS VC++ error 6002:
Floating point error not loaded.
But if i will compile it with auto2exe.exe into value.exe, it gives me right message box (with value 0.66666667)
Also, i'm having trouble with next part of the script:
$t=ControlGetText("Active","","[CLASS:Edit; INSTANCE:4]")
if $t="" Then
Exit
EndIf
$p=StringSplit($t,"/")
$p[1] +=1
if