Advertisement
Guest User

save josh's hand bones

a guest
Jul 29th, 2015
159
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. ; Copy contents of a cell in excel
  2. ; switch to MTM if it's open
  3. ; pastes those contents in the currently active field
  4. !`::
  5. {
  6.     SetTitleMatchMode, 2
  7.     SetKeyDelay 30,50
  8.     Send {F2}
  9.     Send ^+{Home}
  10.     Send ^{c}
  11.     Send {Esc}
  12.     Sleep 200
  13.     IfWinExist, Microsoft Test Manager
  14.     {
  15.         WinActivate
  16.         Send ^{v}
  17.         return
  18.     }
  19. }
  20. Return
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement