Separate>filename, ,identifier
PutClipBoard>identifier_2
Hello, I have a filename that I have separated, but I cannot figure out how to pass the variables containing the separated parts to an external textbox. I tried;
Send>identifier_2
and also attempted copying the variable to the clipboard and pasting it. however, it appears that the variable name is copied instead. Thanks!
Writing Variable to Textbox in External Program
Moderators: JRL, Dorian (MJT support)
Re: Writing Variable to Textbox in External Program
Which means the variable is not assigned a value which means the Separate function did not Separate anything which could mean there is no value for variable "filename" or could mean there were no spaces(?) in the value of variable "filename".CGooley wrote:however, it appears that the variable name is copied instead. Thanks!
Learn to use the editor. It is absolutely the best tool you have. Place the cursor at the top line of your script and press F8. As each variable achieves a value those values will display in the WatchList in the left hand panel of the editor. Or, if there are many lines or perhaps a long lasting loop which makes it time consuming to Press F8 repeatedly, place a **BREAKPOINT** on the line just beyond where you want to view the variable values then press the F9 key. Every variable value from the top of the script through to where you place the **BREAKPOINT** will be displayed in the WatchList.