Clipboard Raw Data

I’m wondering if anyone can point me to some clipboard learning material.

I’m trying to figure out how to store stuff from the clipboard to file, then recall it back to the clipboard.

In particular, I frequently copy materials (buttons, text etc… ) from one Substack page to another. I’d like to make a helper app that would save that clipped material to disk, then I could recall it as needed.

Substack uses markup language. If I view the clipboard content at text, I just see the text. If I view it as html, I see way more info than Substack is going to accept back. What I really need is a way to save the raw data from the clipboard (as binary I presume), and load all that raw data back to the clipboard at will.

I have MBS if that helps

Take a look at the example project “ClipboardSaver” from MBS Plugins. I think you find all code snippets you need in this project.

Thanks! Looking at it now.