I've been using a macro (below) to copy and paste within the same session window, but I was wondering if it is possible to copy text from one session, and paste it into another session.
This is for Extra version 7.0 also, not the newest version if that makes a difference.
Here is what I use to copy and paste in the same session window:
' Selects the text, row column to row column
Sess0.Screen.Select 7, 59, 7, 67
' Copy the text
Sess0.Screen.Copy
Sess0.Screen.WaitHostQuiet(10)
' Selects the place to paste, row column to row column
Sess0.Screen.Select 18, 23, 18, 31
'Paste the text
Sess0.Screen.Paste
Sess0.Screen.WaitHostQuiet(10)
Thanks!
This is for Extra version 7.0 also, not the newest version if that makes a difference.
Here is what I use to copy and paste in the same session window:
' Selects the text, row column to row column
Sess0.Screen.Select 7, 59, 7, 67
' Copy the text
Sess0.Screen.Copy
Sess0.Screen.WaitHostQuiet(10)
' Selects the place to paste, row column to row column
Sess0.Screen.Select 18, 23, 18, 31
'Paste the text
Sess0.Screen.Paste
Sess0.Screen.WaitHostQuiet(10)
Thanks!