Announcement

Collapse
No announcement yet.

Working with the clipboard?

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • Working with the clipboard?

    I am looking to copy to and from the clipboard. I've been all over the help file, and I can't find functions besides Input.Copy, which is not what I need.
    Thanks for your time.

  • #2
    Try looking at the plugin help file
    Click image for larger version

Name:	clipboard.png
Views:	161
Size:	22.4 KB
ID:	307369

    Comment


    • #3
      Originally posted by Internetwiz View Post
      I am looking to copy to and from the clipboard. I've been all over the help file, and I can't find functions besides Input.Copy, which is not what I need.
      Thanks for your time.
      Also you can use winapi...

      Comment


      • #4
        Originally posted by colc View Post
        Try looking at the plugin help file
        Click image for larger version

Name:	clipboard.png
Views:	161
Size:	22.4 KB
ID:	307369
        Awesome! Thank you! I can't believe that I forgot about the clipbloard plugin.

        Comment


        • #5
          Originally posted by Sina Dehghani View Post

          Also you can use winapi...
          Neat! Do you know of a good place to get a handle on the best winapi functions and how to use them? Any extra resource would be awesome.

          Comment


          • #6
            Originally posted by Internetwiz View Post

            Neat! Do you know of a good place to get a handle on the best winapi functions and how to use them? Any extra resource would be awesome.
            https://github.com/luapower/winapi/b.../clipboard.lua

            Comment


            • #7
              winapi:
              PHP Code:
              text WinApi.ClipBoardPutText(Input.GetText("Input1")); 
              you can also use memoryex plugin

              Comment

              Working...
              X