viperbjk,
Can you give us a few examples of how to use all the script commands. I opened up the help file and this is what it said:
Quote:
You can also run xml scripts with auto-log function. See scripts/script.xml for an example on how to use. „Delay“ means how many ms to wait before sending next command. Option plain=“1“ means to send raw data without crc and postfix 0x7E. Sending "msg=Title=" will ask for a hex value via Messagebox with title "Title" once executed.
You may also send [msg=Title=] which will ask for a hex value and automatically reverses that value for you.
According to that spec, this following script should give me a message box titled "SPC"
Code:
<QMAT>
<script name="ScriptTest">
<cmd delay="50">41msg=SPC=</cmd>
</script>
</QMAT>
But the actual output looks like this:
Code:
TX:41303030303030=SPC=
RX:
This is why I would appreciate if you can give us examples for each script command, showing us the proper way to use them.
Also, if I use "", does it convert decimal values to ASCII?