<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:sy="http://purl.org/rss/1.0/modules/syndication/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:media="http://search.yahoo.com/mrss/">
<channel>
<title>ClipboardFusion RSS: Paste with macro</title>
<atom:link href="https://www.clipboardfusion.com/Discussions/RSS/?TopicID=d87d4e52-48ad-4b7d-9e59-beac915ae7d3" rel="self" type="application/rss+xml" />
<link>https://www.clipboardfusion.com/Discussions/RSS/?TopicID=d87d4e52-48ad-4b7d-9e59-beac915ae7d3</link>
<description>ClipboardFusion RSS: Paste with macro</description>
<lastBuildDate>Fri, 01 May 2026 22:44:43 GMT</lastBuildDate>
<language>en</language>
<sy:updatePeriod>hourly</sy:updatePeriod>
<sy:updateFrequency>1</sy:updateFrequency>
<generator>https://www.clipboardfusion.com/Discussions/RSS/?TopicID=d87d4e52-48ad-4b7d-9e59-beac915ae7d3</generator>
<item>
<title>RE: Paste with macro</title>
<link>https://www.clipboardfusion.com/Discussions/View/paste-with-macro/?ID=d87d4e52-48ad-4b7d-9e59-beac915ae7d3#2</link>
<pubDate>Thu, 05 Sep 2019 15:47:38 GMT</pubDate>
<dc:creator>Binary Fortress Software</dc:creator>
<guid isPermaLink="false">https://www.clipboardfusion.com/Discussions/View/paste-with-macro/?ID=d87d4e52-48ad-4b7d-9e59-beac915ae7d3#2</guid>
<category>ClipboardFusion</category>
<description><![CDATA[Before the "return text;" line, add a line like this:
BFS.Clipboard.PasteText(text);
Hope that helps!]]></description>
<content:encoded><![CDATA[<div class="CTDiscussions">
Before the "return text;" line, add a line like this:<br/>
<br/>
<div class="Inline"><pre>BFS.Clipboard.PasteText(text);</pre></div><br/>
<br/>
Hope that helps!
</div>
]]></content:encoded>
</item>
<item>
<title>Paste with macro</title>
<link>https://www.clipboardfusion.com/Discussions/View/paste-with-macro/?ID=d87d4e52-48ad-4b7d-9e59-beac915ae7d3</link>
<pubDate>Thu, 05 Sep 2019 08:09:08 GMT</pubDate>
<dc:creator>Binary Fortress Software</dc:creator>
<guid isPermaLink="false">https://www.clipboardfusion.com/Discussions/View/paste-with-macro/?ID=d87d4e52-48ad-4b7d-9e59-beac915ae7d3</guid>
<category>ClipboardFusion</category>
<description><![CDATA[I have a little macro that remove spaces.
It works fine with CTRL+SPACE. Code
Copy
Select All
using System;
using System.Collections.Generic;
// CTRL+SPACE
public static class ClipboardFusionHelper{
public static string ProcessText( string text ){
text = text.Replace( " ", "" );
return ...]]></description>
<content:encoded><![CDATA[<div class="CTDiscussions">
I have a little macro that remove spaces. <br/>
It works fine with CTRL+SPACE. <div class="col-md-12 BoxWrap"><div class="Box table-responsive"><a name="code" style="width:0; height:0;"></a><h2 class="TableTitle" style="border:0"><div class="TableTitleText">Code</div><div class="TitleButtons"><div class="TableTitleButton"><a href="#" onclick="return false;" data-clipboard-target="#code019de5b7379275d9963ab39f2f53ff00" class="ClipboardCopyControl"><img src="https://www.clipboardfusion.com/MediaCommon/SVGs/FontAwesome/clone.blue.svg" style="box-sizing:border-box;position:relative;overflow:hidden;width:auto;max-width:16px;height:16px;" /><span class="Text">Copy</span></a></div><div class="TableTitleButton"><a href="#" onclick="bfs.util.codeEditorSelectAll('code019de5b7379275d9963ab39f2f53ff00Js'); return false;"><img src="https://www.clipboardfusion.com/MediaCommon/SVGs/FontAwesome/square-check.blue.svg" style="box-sizing:border-box;position:relative;overflow:hidden;width:auto;max-width:16px;height:16px;" /><span class="Text">Select All</span></a></div></div></h2><div class="TableTitleContent table-responsive"><div class="AceEditorWrapper" style="border-top:solid 1px var(--color-default-border);padding:0"><pre id="code019de5b7379275d9963ab39f2f53ff00Js" contenteditable="true" spellcheck="true" class="skiptranslate" style="width:100%; min-height:75px;">using System;
using System.Collections.Generic;
// CTRL+SPACE
public static class ClipboardFusionHelper{
    public static string ProcessText( string text ){
        text = text.Replace( " ", "" );
        return text;
    }
}</pre><textarea id="code019de5b7379275d9963ab39f2f53ff00" name="code019de5b7379275d9963ab39f2f53ff00" style="position:absolute; top:0; left:-999999px; width:1px; height:1px;"></textarea></div>
</div></div></div><br/>
How I can paste the text without press CTRL+v.<br/>
I will only press CTRL+SPACE to to remove spaces and paste.<br/>
<br/>
Thanks Ronny
</div>
]]></content:encoded>
</item>
</channel>
</rss>