Edit clipboard

Discuss and share scripts and script files...
Post Reply
admin
Site Admin
Posts: 66258
Joined: 22 May 2004 16:48
Location: Win8.1, Win10, Win11, all @100%
Contact:

Edit clipboard

Post by admin »

Shows the current text on clipboard, let's you edit it, and update it on OK.

Code: Select all

input $text, "Clipboard", <clipboard>, m;
  copytext $text;

SkyFrontier
Posts: 2341
Joined: 04 Jan 2010 14:27
Location: Pasárgada (eu vou!)

Re: Edit clipboard

Post by SkyFrontier »

Updated to reflect syntax changes:

Code: Select all

   input $text, "Edit the clipboard content below and click ok when ready:", "<clipboard>", "m";
   copytext $text;
   status "Content ready into clipboard!";
Raw:

Code: Select all

   input $text, "Clipboard", "<clipboard>", "m";
   copytext $text;
New User's Ref. Guide and Quick Setup Guide can help a bit! Check XYplorer Resources Index for many useful links!
Want a new XYperience? XY MOD - surfYnXoard
-coz' the aim of computing is to free us to LIVE...

Post Reply