Clipboard viewer for OS X that allows extracting the data in any available format











up vote
3
down vote

favorite
3












I am looking for a clipboard viewer for OS X which will show all formats that the clipboard is holding the data in. (I.e. something similar to the Clipbook viewer in Windows XP.)



I found a number of programs that show the contents of the clipboard, but I haven't been able to find one which lists all formats available on the clipboard at the moment, and makes it possible to extract either of them. I believe the OS X clipboard can hold the data in multiple formats simultaneously, just like Windows (e.g. in MS Word there's a Paste special... menu item which allows selecting the format to paste).










share|improve this question


























    up vote
    3
    down vote

    favorite
    3












    I am looking for a clipboard viewer for OS X which will show all formats that the clipboard is holding the data in. (I.e. something similar to the Clipbook viewer in Windows XP.)



    I found a number of programs that show the contents of the clipboard, but I haven't been able to find one which lists all formats available on the clipboard at the moment, and makes it possible to extract either of them. I believe the OS X clipboard can hold the data in multiple formats simultaneously, just like Windows (e.g. in MS Word there's a Paste special... menu item which allows selecting the format to paste).










    share|improve this question
























      up vote
      3
      down vote

      favorite
      3









      up vote
      3
      down vote

      favorite
      3






      3





      I am looking for a clipboard viewer for OS X which will show all formats that the clipboard is holding the data in. (I.e. something similar to the Clipbook viewer in Windows XP.)



      I found a number of programs that show the contents of the clipboard, but I haven't been able to find one which lists all formats available on the clipboard at the moment, and makes it possible to extract either of them. I believe the OS X clipboard can hold the data in multiple formats simultaneously, just like Windows (e.g. in MS Word there's a Paste special... menu item which allows selecting the format to paste).










      share|improve this question













      I am looking for a clipboard viewer for OS X which will show all formats that the clipboard is holding the data in. (I.e. something similar to the Clipbook viewer in Windows XP.)



      I found a number of programs that show the contents of the clipboard, but I haven't been able to find one which lists all formats available on the clipboard at the moment, and makes it possible to extract either of them. I believe the OS X clipboard can hold the data in multiple formats simultaneously, just like Windows (e.g. in MS Word there's a Paste special... menu item which allows selecting the format to paste).







      macos clipboard






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked Jan 24 '13 at 21:16









      Szabolcs

      1,08831433




      1,08831433






















          2 Answers
          2






          active

          oldest

          votes

















          up vote
          5
          down vote













          You can see the different types by running the clipboard as record in AppleScript Editor.



          the clipboard, the clipboard as text, or Unicode text of (the clipboard as record) will return a plain text version. AppleScript still converts line endings to CR though.






          share|improve this answer

















          • 1




            $ osascript -e 'the clipboard as record' | less for a command line one-liner
            – Robin Nemeth
            Aug 9 '17 at 11:47


















          up vote
          1
          down vote













          The MacOSX developer tools come with an example app called "ClipboardViewer.app" and its source for Xcode.
          This is by far the most explicit clipboard exploration tool I've found for MacOSX: it shows the string of the clipboard flavour (called UTI on MacOSX) and a hex dump of the content.



          Here is an example screenshot made with this app (using a Mathematica source). It would be cool if such a project could be made into an open-source project for MacOSX instead of being a dev-tool-thing. However, there's a public web-page of Apple dev support, where you can download the sample project and compile it using XCode; as of today (late 2018), one needs to let the suggested be applied such as chaning architecture from 32 to 64 bits; after this all compiles well.



          example clipboard viewer usage






          share|improve this answer























          • Where exactly can one find the ClipboardViewer.app source code?
            – tml
            Jun 28 at 7:20










          • There are links to the source and binary at superuser.com/questions/246714/…
            – Ian Dunn
            Sep 18 at 16:45










          • I added the link to the source of clipboard viewer. Thanks @ian-dunn.
            – Paul Libbrecht
            Nov 25 at 16:50











          Your Answer








          StackExchange.ready(function() {
          var channelOptions = {
          tags: "".split(" "),
          id: "3"
          };
          initTagRenderer("".split(" "), "".split(" "), channelOptions);

          StackExchange.using("externalEditor", function() {
          // Have to fire editor after snippets, if snippets enabled
          if (StackExchange.settings.snippets.snippetsEnabled) {
          StackExchange.using("snippets", function() {
          createEditor();
          });
          }
          else {
          createEditor();
          }
          });

          function createEditor() {
          StackExchange.prepareEditor({
          heartbeatType: 'answer',
          convertImagesToLinks: true,
          noModals: true,
          showLowRepImageUploadWarning: true,
          reputationToPostImages: 10,
          bindNavPrevention: true,
          postfix: "",
          imageUploader: {
          brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
          contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
          allowUrls: true
          },
          onDemand: true,
          discardSelector: ".discard-answer"
          ,immediatelyShowMarkdownHelp:true
          });


          }
          });














          draft saved

          draft discarded


















          StackExchange.ready(
          function () {
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsuperuser.com%2fquestions%2f541335%2fclipboard-viewer-for-os-x-that-allows-extracting-the-data-in-any-available-forma%23new-answer', 'question_page');
          }
          );

          Post as a guest















          Required, but never shown

























          2 Answers
          2






          active

          oldest

          votes








          2 Answers
          2






          active

          oldest

          votes









          active

          oldest

          votes






          active

          oldest

          votes








          up vote
          5
          down vote













          You can see the different types by running the clipboard as record in AppleScript Editor.



          the clipboard, the clipboard as text, or Unicode text of (the clipboard as record) will return a plain text version. AppleScript still converts line endings to CR though.






          share|improve this answer

















          • 1




            $ osascript -e 'the clipboard as record' | less for a command line one-liner
            – Robin Nemeth
            Aug 9 '17 at 11:47















          up vote
          5
          down vote













          You can see the different types by running the clipboard as record in AppleScript Editor.



          the clipboard, the clipboard as text, or Unicode text of (the clipboard as record) will return a plain text version. AppleScript still converts line endings to CR though.






          share|improve this answer

















          • 1




            $ osascript -e 'the clipboard as record' | less for a command line one-liner
            – Robin Nemeth
            Aug 9 '17 at 11:47













          up vote
          5
          down vote










          up vote
          5
          down vote









          You can see the different types by running the clipboard as record in AppleScript Editor.



          the clipboard, the clipboard as text, or Unicode text of (the clipboard as record) will return a plain text version. AppleScript still converts line endings to CR though.






          share|improve this answer












          You can see the different types by running the clipboard as record in AppleScript Editor.



          the clipboard, the clipboard as text, or Unicode text of (the clipboard as record) will return a plain text version. AppleScript still converts line endings to CR though.







          share|improve this answer












          share|improve this answer



          share|improve this answer










          answered Jan 25 '13 at 8:20









          user495470

          30.8k586125




          30.8k586125








          • 1




            $ osascript -e 'the clipboard as record' | less for a command line one-liner
            – Robin Nemeth
            Aug 9 '17 at 11:47














          • 1




            $ osascript -e 'the clipboard as record' | less for a command line one-liner
            – Robin Nemeth
            Aug 9 '17 at 11:47








          1




          1




          $ osascript -e 'the clipboard as record' | less for a command line one-liner
          – Robin Nemeth
          Aug 9 '17 at 11:47




          $ osascript -e 'the clipboard as record' | less for a command line one-liner
          – Robin Nemeth
          Aug 9 '17 at 11:47












          up vote
          1
          down vote













          The MacOSX developer tools come with an example app called "ClipboardViewer.app" and its source for Xcode.
          This is by far the most explicit clipboard exploration tool I've found for MacOSX: it shows the string of the clipboard flavour (called UTI on MacOSX) and a hex dump of the content.



          Here is an example screenshot made with this app (using a Mathematica source). It would be cool if such a project could be made into an open-source project for MacOSX instead of being a dev-tool-thing. However, there's a public web-page of Apple dev support, where you can download the sample project and compile it using XCode; as of today (late 2018), one needs to let the suggested be applied such as chaning architecture from 32 to 64 bits; after this all compiles well.



          example clipboard viewer usage






          share|improve this answer























          • Where exactly can one find the ClipboardViewer.app source code?
            – tml
            Jun 28 at 7:20










          • There are links to the source and binary at superuser.com/questions/246714/…
            – Ian Dunn
            Sep 18 at 16:45










          • I added the link to the source of clipboard viewer. Thanks @ian-dunn.
            – Paul Libbrecht
            Nov 25 at 16:50















          up vote
          1
          down vote













          The MacOSX developer tools come with an example app called "ClipboardViewer.app" and its source for Xcode.
          This is by far the most explicit clipboard exploration tool I've found for MacOSX: it shows the string of the clipboard flavour (called UTI on MacOSX) and a hex dump of the content.



          Here is an example screenshot made with this app (using a Mathematica source). It would be cool if such a project could be made into an open-source project for MacOSX instead of being a dev-tool-thing. However, there's a public web-page of Apple dev support, where you can download the sample project and compile it using XCode; as of today (late 2018), one needs to let the suggested be applied such as chaning architecture from 32 to 64 bits; after this all compiles well.



          example clipboard viewer usage






          share|improve this answer























          • Where exactly can one find the ClipboardViewer.app source code?
            – tml
            Jun 28 at 7:20










          • There are links to the source and binary at superuser.com/questions/246714/…
            – Ian Dunn
            Sep 18 at 16:45










          • I added the link to the source of clipboard viewer. Thanks @ian-dunn.
            – Paul Libbrecht
            Nov 25 at 16:50













          up vote
          1
          down vote










          up vote
          1
          down vote









          The MacOSX developer tools come with an example app called "ClipboardViewer.app" and its source for Xcode.
          This is by far the most explicit clipboard exploration tool I've found for MacOSX: it shows the string of the clipboard flavour (called UTI on MacOSX) and a hex dump of the content.



          Here is an example screenshot made with this app (using a Mathematica source). It would be cool if such a project could be made into an open-source project for MacOSX instead of being a dev-tool-thing. However, there's a public web-page of Apple dev support, where you can download the sample project and compile it using XCode; as of today (late 2018), one needs to let the suggested be applied such as chaning architecture from 32 to 64 bits; after this all compiles well.



          example clipboard viewer usage






          share|improve this answer














          The MacOSX developer tools come with an example app called "ClipboardViewer.app" and its source for Xcode.
          This is by far the most explicit clipboard exploration tool I've found for MacOSX: it shows the string of the clipboard flavour (called UTI on MacOSX) and a hex dump of the content.



          Here is an example screenshot made with this app (using a Mathematica source). It would be cool if such a project could be made into an open-source project for MacOSX instead of being a dev-tool-thing. However, there's a public web-page of Apple dev support, where you can download the sample project and compile it using XCode; as of today (late 2018), one needs to let the suggested be applied such as chaning architecture from 32 to 64 bits; after this all compiles well.



          example clipboard viewer usage







          share|improve this answer














          share|improve this answer



          share|improve this answer








          edited Nov 25 at 16:49

























          answered Jul 24 '16 at 23:19









          Paul Libbrecht

          112




          112












          • Where exactly can one find the ClipboardViewer.app source code?
            – tml
            Jun 28 at 7:20










          • There are links to the source and binary at superuser.com/questions/246714/…
            – Ian Dunn
            Sep 18 at 16:45










          • I added the link to the source of clipboard viewer. Thanks @ian-dunn.
            – Paul Libbrecht
            Nov 25 at 16:50


















          • Where exactly can one find the ClipboardViewer.app source code?
            – tml
            Jun 28 at 7:20










          • There are links to the source and binary at superuser.com/questions/246714/…
            – Ian Dunn
            Sep 18 at 16:45










          • I added the link to the source of clipboard viewer. Thanks @ian-dunn.
            – Paul Libbrecht
            Nov 25 at 16:50
















          Where exactly can one find the ClipboardViewer.app source code?
          – tml
          Jun 28 at 7:20




          Where exactly can one find the ClipboardViewer.app source code?
          – tml
          Jun 28 at 7:20












          There are links to the source and binary at superuser.com/questions/246714/…
          – Ian Dunn
          Sep 18 at 16:45




          There are links to the source and binary at superuser.com/questions/246714/…
          – Ian Dunn
          Sep 18 at 16:45












          I added the link to the source of clipboard viewer. Thanks @ian-dunn.
          – Paul Libbrecht
          Nov 25 at 16:50




          I added the link to the source of clipboard viewer. Thanks @ian-dunn.
          – Paul Libbrecht
          Nov 25 at 16:50


















          draft saved

          draft discarded




















































          Thanks for contributing an answer to Super User!


          • Please be sure to answer the question. Provide details and share your research!

          But avoid



          • Asking for help, clarification, or responding to other answers.

          • Making statements based on opinion; back them up with references or personal experience.


          To learn more, see our tips on writing great answers.





          Some of your past answers have not been well-received, and you're in danger of being blocked from answering.


          Please pay close attention to the following guidance:


          • Please be sure to answer the question. Provide details and share your research!

          But avoid



          • Asking for help, clarification, or responding to other answers.

          • Making statements based on opinion; back them up with references or personal experience.


          To learn more, see our tips on writing great answers.




          draft saved


          draft discarded














          StackExchange.ready(
          function () {
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsuperuser.com%2fquestions%2f541335%2fclipboard-viewer-for-os-x-that-allows-extracting-the-data-in-any-available-forma%23new-answer', 'question_page');
          }
          );

          Post as a guest















          Required, but never shown





















































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown

































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown







          Popular posts from this blog

          flock() on closed filehandle LOCK_FILE at /usr/bin/apt-mirror

          Mangá

           ⁒  ․,‪⁊‑⁙ ⁖, ⁇‒※‌, †,⁖‗‌⁝    ‾‸⁘,‖⁔⁣,⁂‾
”‑,‥–,‬ ,⁀‹⁋‴⁑ ‒ ,‴⁋”‼ ⁨,‷⁔„ ‰′,‐‚ ‥‡‎“‷⁃⁨⁅⁣,⁔
⁇‘⁔⁡⁏⁌⁡‿‶‏⁨ ⁣⁕⁖⁨⁩⁥‽⁀  ‴‬⁜‟ ⁃‣‧⁕‮ …‍⁨‴ ⁩,⁚⁖‫ ,‵ ⁀,‮⁝‣‣ ⁑  ⁂– ․, ‾‽ ‏⁁“⁗‸ ‾… ‹‡⁌⁎‸‘ ‡⁏⁌‪ ‵⁛ ‎⁨ ―⁦⁤⁄⁕