store your order# in a variable say nOrder = 123456
and in place of 'helloworld' in your script use nOrder, like
this will write your order number in the text file.
alternately if you store the order number in a variable, you can directly set this variable into a text box rather keeping it in a text file, unless you have other objectives to do so.
and in place of 'helloworld' in your script use nOrder, like
Code:
nOrder = 123456
...
...
new_file.writeline nOrderalternately if you store the order number in a variable, you can directly set this variable into a text box rather keeping it in a text file, unless you have other objectives to do so.

