How can I copy text to the clipboard using AppleScript

ThatCrazyCow

I would like to create an application using AppleScript to copy the system info and email it to myself. I know to to do the emailing aspect and how to make the email have the content of whatever is in the clipboard. How might I use AppleScript coding to copy text to the clipboard?

In case it helps here is the way to email whatever is in the clipboard:

set a to "[email protected]"
tell application "Mail"
tell (make new outgoing message)
set subject to (the clipboard)
set content to "content"
make new to recipient at end of to recipients with properties {address:a}
send
end tell
end tell
jweaks

You simply use

set the clipboard to "Some text"

You can also assign to the various parts of the clipboard (plain text, unicode, pict) directly, as in:

set the clipboard to {text:(outputText as string), Unicode text:outputText}

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

From Dev

How can I copy text to the clipboard using AppleScript

From Dev

How can I copy the text of a Button in the clipboard?

From Dev

How can I copy text from the chat to the clipboard in BlueJeans?

From Dev

How can I copy/paste data to and from the Windows clipboard to an OpenSuse clipboard using VNC?

From Dev

how to copy selected text to the clipboard using javascript

From Dev

How to copy text to the clipboard when using Wayland?

From Dev

How can I copy System Info to clipboard?

From Dev

How can I copy text to the clipboard without flash in HTML5?

From Dev

How can I copy text from xfce4 terminal emulator to the clipboard?

From Dev

How can I copy text from xfce4 terminal emulator to the clipboard?

From Dev

How can I cause vim to copy text to GNU screen's clipboard buffer?

From Dev

How can I keep tab characters `n`n when using Windows Control-C clipboard copy?

From Dev

How do i copy text to clipboard - cross browser

From Dev

How do I copy text from the program "screen" to my clipboard?

From Dev

How to copy text including special characters to clipboard using C and WinAPI?

From Dev

How to copy text from command line to clipboard without using the mouse?

From Dev

How to copy text including special characters to clipboard using C and WinAPI?

From Dev

Applescript: Read contents from text file, copy contents to clipboard

From Java

How can I copy the output of a command directly into my clipboard?

From Dev

how can I copy a string to the windows clipboard? python 3

From Dev

How can I Copy to clipboard, a ListView's multiple selected items?

From Dev

How can I copy nytimes.com slideshow images to the clipboard?

From Dev

How can I copy to the system clipboard from byobu?

From Dev

How can I copy into the Mac clipboard from vim?

From Dev

how can I copy a string to the windows clipboard? python 3

From Dev

How can I copy the path to the currently opened file in gedit to the clipboard?

From Dev

How can I copy the output from a remote command into the local clipboard?

From Dev

How can I copy an element from website to variable /clipboard?

From Dev

How can I copy currently played song to clipboard in ncmpcpp?

Related Related

  1. 1

    How can I copy text to the clipboard using AppleScript

  2. 2

    How can I copy the text of a Button in the clipboard?

  3. 3

    How can I copy text from the chat to the clipboard in BlueJeans?

  4. 4

    How can I copy/paste data to and from the Windows clipboard to an OpenSuse clipboard using VNC?

  5. 5

    how to copy selected text to the clipboard using javascript

  6. 6

    How to copy text to the clipboard when using Wayland?

  7. 7

    How can I copy System Info to clipboard?

  8. 8

    How can I copy text to the clipboard without flash in HTML5?

  9. 9

    How can I copy text from xfce4 terminal emulator to the clipboard?

  10. 10

    How can I copy text from xfce4 terminal emulator to the clipboard?

  11. 11

    How can I cause vim to copy text to GNU screen's clipboard buffer?

  12. 12

    How can I keep tab characters `n`n when using Windows Control-C clipboard copy?

  13. 13

    How do i copy text to clipboard - cross browser

  14. 14

    How do I copy text from the program "screen" to my clipboard?

  15. 15

    How to copy text including special characters to clipboard using C and WinAPI?

  16. 16

    How to copy text from command line to clipboard without using the mouse?

  17. 17

    How to copy text including special characters to clipboard using C and WinAPI?

  18. 18

    Applescript: Read contents from text file, copy contents to clipboard

  19. 19

    How can I copy the output of a command directly into my clipboard?

  20. 20

    how can I copy a string to the windows clipboard? python 3

  21. 21

    How can I Copy to clipboard, a ListView's multiple selected items?

  22. 22

    How can I copy nytimes.com slideshow images to the clipboard?

  23. 23

    How can I copy to the system clipboard from byobu?

  24. 24

    How can I copy into the Mac clipboard from vim?

  25. 25

    how can I copy a string to the windows clipboard? python 3

  26. 26

    How can I copy the path to the currently opened file in gedit to the clipboard?

  27. 27

    How can I copy the output from a remote command into the local clipboard?

  28. 28

    How can I copy an element from website to variable /clipboard?

  29. 29

    How can I copy currently played song to clipboard in ncmpcpp?

HotTag

Archive