Shoutbox

Read Clipboard - Printable Version

-Shoutbox (https://shoutbox.menthix.net)
+-- Forum: MsgHelp Archive (/forumdisplay.php?fid=58)
+--- Forum: Messenger Plus! for Live Messenger (/forumdisplay.php?fid=4)
+---- Forum: Scripting (/forumdisplay.php?fid=39)
+----- Thread: Read Clipboard (/showthread.php?tid=65257)

Read Clipboard by Huhu_Manix on 08-22-2006 at 09:31 PM

How can i do for read the clipboard please ?

I tried :

code:
function getClipboard(){
    Interop.Call("User32", "OpenClipboard", 0);
    var clip= Interop.Call("User32", "GetClipboardData", 1);
    Interop.Call("User32", "CloseClipboard");
    return clip;
}

But it return a variable number. :s
RE: Read Clipboard by markee on 08-22-2006 at 09:47 PM

Try having a look at this thread - [UPDATED] Clipboard Functions (that WORK).  It should be what you are after :)


RE: Read Clipboard by Huhu_Manix on 08-22-2006 at 10:17 PM

Thanks ! Exactly what i need ! :)