Got an iPhone or iPad? We have a brand new Pastebin App for both devices, and it's totally free! Click here to download the new Pastebin App for iOS.
Guest

Failed YWOT paste script

By: Frogger3140 on Jan 14th, 2012  |  syntax: AppleScript  |  size: 0.27 KB  |  hits: 88  |  expires: Never
download  |  raw  |  embed  |  report abuse
Copied
  1. set userBrowser to "Safari"
  2.  
  3. display dialog "This application will paste the clipboard into YWOT.
  4.  
  5. Select the block you want to paste it into on YWOT!"
  6.  
  7. tell application userBrowser
  8.         activate
  9.         tell application "System Events"
  10.                 keystroke (the clipboard)
  11.         end tell
  12. end tell
  13.  
  14. return