lostbit 0 Posted January 14, 2011 Hello folks, yah it me again I amd trying to use Send and MsgBox to send or display the value in a variable. At some point I will need to use this value as a file name to save the file generated. Any pointers? Thanks! Share this post Link to post Share on other sites
somdcomputerguy 103 Posted January 15, 2011 Just use the variable. I'm not sure how to explain it, so I'll put an example.. $i = 123 MsgBox(4096, "", $i) - Bruce /*somdcomputerguy */ If you change the way you look at things, the things you look at change. Share this post Link to post Share on other sites
JohnOne 1,603 Posted January 15, 2011 Send($variable) MsgBox(0,"",$variable) FileWrite("path" & $variable,"stuff") AutoIt Absolute Beginners Require a serial Pause Script Video Tutorials by Morthawt ipify Monkey's are, like, natures humans. Share this post Link to post Share on other sites