views:

69

answers:

1

I'm using Perl/Tk to build the GUI for an application. I plan on adding an edit menu to it with standard cut, copy, and paste options. Right here is where I realized that I've never actually interacted with the clipboard using perl.

Can anyone give me a link to information about messing with clipboard in perl? Is there a perl module for those kind of functions in specific?

And would I have to modify my code to be platform-specific if I interact with the clipboard since it's part of the host OS, and not part of my application itself?

Thanks in advance for the help!

+3  A: 

Are you looking for Win32::Clipboard?

Mike
This looks like it will work nicely for a Windows environment. Thanks!
Micah