I actually meant to type send, because the text file is then going to read by auto it 3, which<br>has the function <a href="http://www.autoitscript.com/autoit3/docs/functions/Send.htm">send</a><br>I use that functions this way because I have 
<a href="http://rentacoder.com/RentACoder/misc/BidRequests/ShowBidRequest.asp?lngBidRequestId=719268">this</a><br>for sale , for that, unless someone wants to make 100USd, I have to write a application interface between the two, which is what I am doing.
<br><br><br># opens autoit3source.au3 to write<br><br>f = open (&quot;sc.au3&quot;, &quot;w&quot;)<br><br>#&nbsp; au3 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp; send(&quot;text&quot;)<br><br>def send(string):<br>&nbsp; &nbsp;&nbsp; f.write(&#39;\&quot;%s\&quot;\n&#39; % string)
<br><br><br><br>to restate my question, this is what I need:<br><br><br><br>how do I do this?<br><br><br>variable = taitle<br>&nbsp;&nbsp;&nbsp;  f.write(texttexttexttext&#39;\&quot;%s\&quot;\n&#39; % variable&nbsp;&nbsp; textextexte&nbsp; )<br><br>?<br>
<br><br>as in, I not only need to <br><br>include &quot; in between,&nbsp; I also need to input text string before and after the variable.<br><br>an example<br><br><a href="http://www.autoitscript.com/autoit3/docs/functions/MsgBox.htm">
http://www.autoitscript.com/autoit3/docs/functions/MsgBox.htm</a><br><br>
MsgBox ( 0, &quot;title&quot;, &quot;text&quot; )<br><br>0 means it&#39;s a vanilla popbox with &quot;ok&quot;&nbsp; other numbers could mean , ignore, cancel and so forth.<br><br><br><br>how I want to use it<br><br>organge = 5
<br><br>f.write( &quot;there are orange &quot;florida&quot; oranges on the counter&quot;)<br><br><br>:)<br><br><br>