<?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: Copy/Paste to/from specific memory</title>
<atom:link href="https://www.clipboardfusion.com/Discussions/RSS/?TopicID=7d7071b2-b9bd-4462-a312-7d48e2356b42" rel="self" type="application/rss+xml" />
<link>https://www.clipboardfusion.com/Discussions/RSS/?TopicID=7d7071b2-b9bd-4462-a312-7d48e2356b42</link>
<description>ClipboardFusion RSS: Copy/Paste to/from specific memory</description>
<lastBuildDate>Sat, 16 May 2026 21:55:51 GMT</lastBuildDate>
<language>en</language>
<sy:updatePeriod>hourly</sy:updatePeriod>
<sy:updateFrequency>1</sy:updateFrequency>
<generator>https://www.clipboardfusion.com/Discussions/RSS/?TopicID=7d7071b2-b9bd-4462-a312-7d48e2356b42</generator>
<item>
<title>RE: Copy/Paste to/from specific memory</title>
<link>https://www.clipboardfusion.com/Discussions/View/copypaste-tofrom-specific-memory/?ID=7d7071b2-b9bd-4462-a312-7d48e2356b42#25</link>
<pubDate>Mon, 27 Jan 2025 21:09:35 GMT</pubDate>
<dc:creator>Binary Fortress Software</dc:creator>
<guid isPermaLink="false">https://www.clipboardfusion.com/Discussions/View/copypaste-tofrom-specific-memory/?ID=7d7071b2-b9bd-4462-a312-7d48e2356b42#25</guid>
<category>ClipboardFusion</category>
<description><![CDATA[It looks like you're setting the Local Pinned Item with that code, but not actually setting the Clipboard with the Macro output. You can either return the output instead of null to let ClipboardFusion know you want to set the Clipboard, or set the Clipboard directly in the Macro.
Code
Copy
Sel...]]></description>
<content:encoded><![CDATA[<div class="CTDiscussions">
It looks like you're setting the Local Pinned Item with that code, but not actually setting the Clipboard with the Macro output. You can either return the output instead of null to let ClipboardFusion know you want to set the Clipboard, or set the Clipboard directly in the Macro.<br/>
<br/>
<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="#code019e32c9e02b771fafd393d6f85471c7" 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('code019e32c9e02b771fafd393d6f85471c7Js'); 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="code019e32c9e02b771fafd393d6f85471c7Js" contenteditable="true" spellcheck="true" class="skiptranslate" style="width:100%; min-height:75px;">BFS.ClipboardFusion.RunMacro("Remove Extra White Spaces and Trim", text, out string output);
BFS.ClipboardFusion.SetLocalPinnedText(2, output);
return output;</pre><textarea id="code019e32c9e02b771fafd393d6f85471c7" name="code019e32c9e02b771fafd393d6f85471c7" style="position:absolute; top:0; left:-999999px; width:1px; height:1px;"></textarea></div>
</div></div></div><br/>
<br/>
or<br/>
<br/>
<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="#code019e32c9e032743cb770165b9769f7f1" 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('code019e32c9e032743cb770165b9769f7f1Js'); 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="code019e32c9e032743cb770165b9769f7f1Js" contenteditable="true" spellcheck="true" class="skiptranslate" style="width:100%; min-height:75px;">BFS.ClipboardFusion.RunMacro("Remove Extra White Spaces and Trim", text, out string output);
BFS.ClipboardFusion.SetLocalPinnedText(2, output);
BFS.Clipboard.SetText(output);
return null;</pre><textarea id="code019e32c9e032743cb770165b9769f7f1" name="code019e32c9e032743cb770165b9769f7f1" style="position:absolute; top:0; left:-999999px; width:1px; height:1px;"></textarea></div>
</div></div></div><br/>
<br/>
I hope this helps!
</div>
]]></content:encoded>
</item>
<item>
<title>RE: Copy/Paste to/from specific memory</title>
<link>https://www.clipboardfusion.com/Discussions/View/copypaste-tofrom-specific-memory/?ID=7d7071b2-b9bd-4462-a312-7d48e2356b42#24</link>
<pubDate>Mon, 13 Jan 2025 19:58:28 GMT</pubDate>
<dc:creator>Binary Fortress Software</dc:creator>
<guid isPermaLink="false">https://www.clipboardfusion.com/Discussions/View/copypaste-tofrom-specific-memory/?ID=7d7071b2-b9bd-4462-a312-7d48e2356b42#24</guid>
<category>ClipboardFusion</category>
<description><![CDATA[I was now trying to apply a Macro on copied text, but for some reason when I do PASTE from that memory slot it always pasted from slot 0.
For example, the third slot ( #2 ) has this code:
Code
Copy
Select All
BFS.ClipboardFusion.SetLocalPinnedText(2, BFS.Clipboard.CopyText());
return null;...]]></description>
<content:encoded><![CDATA[<div class="CTDiscussions">
I was now trying to apply a Macro on copied text, but for some reason when I do PASTE from that memory slot it always pasted from slot 0.<br/>
<br/>
For example, the third slot ( #2 ) has this code:<br/>
<br/>
<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="#code019e32c9e03d72998be6f90eeeb89d9b" 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('code019e32c9e03d72998be6f90eeeb89d9bJs'); 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="code019e32c9e03d72998be6f90eeeb89d9bJs" contenteditable="true" spellcheck="true" class="skiptranslate" style="width:100%; min-height:75px;">BFS.ClipboardFusion.SetLocalPinnedText(2, BFS.Clipboard.CopyText());
        return null;</pre><textarea id="code019e32c9e03d72998be6f90eeeb89d9b" name="code019e32c9e03d72998be6f90eeeb89d9b" style="position:absolute; top:0; left:-999999px; width:1px; height:1px;"></textarea></div>
</div></div></div><br/>
<br/>
That I replaced with this code as I want to apply the macro to remove extra spaces and to trim:<br/>
<br/>
<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="#code019e32c9e03f7277be7ab51e24405b19" 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('code019e32c9e03f7277be7ab51e24405b19Js'); 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="code019e32c9e03f7277be7ab51e24405b19Js" contenteditable="true" spellcheck="true" class="skiptranslate" style="width:100%; min-height:75px;">BFS.ClipboardFusion.RunMacro("Remove Extra White Spaces and Trim", text, out string output);
        BFS.ClipboardFusion.SetLocalPinnedText(2, output);
        return null;</pre><textarea id="code019e32c9e03f7277be7ab51e24405b19" name="code019e32c9e03f7277be7ab51e24405b19" style="position:absolute; top:0; left:-999999px; width:1px; height:1px;"></textarea></div>
</div></div></div><br/>
<br/>
But when doing PASTE it always pastes whatever is in slot 0.<br/>
<br/>
Any ideas?
</div>
]]></content:encoded>
</item>
<item>
<title>RE: Copy/Paste to/from specific memory</title>
<link>https://www.clipboardfusion.com/Discussions/View/copypaste-tofrom-specific-memory/?ID=7d7071b2-b9bd-4462-a312-7d48e2356b42#23</link>
<pubDate>Thu, 18 Jun 2020 01:48:08 GMT</pubDate>
<dc:creator>Binary Fortress Software</dc:creator>
<guid isPermaLink="false">https://www.clipboardfusion.com/Discussions/View/copypaste-tofrom-specific-memory/?ID=7d7071b2-b9bd-4462-a312-7d48e2356b42#23</guid>
<category>ClipboardFusion</category>
<description><![CDATA[We've just posted ClipboardFusion 5.8 Beta 1, and there's now an option in the Settings to use the NumPad with the quick hotkeys.
Thanks!]]></description>
<content:encoded><![CDATA[<div class="CTDiscussions">
We've just posted ClipboardFusion 5.8 Beta 1, and there's now an option in the Settings to use the NumPad with the quick hotkeys.<br/>
<br/>
Thanks!
</div>
]]></content:encoded>
</item>
<item>
<title>RE: Copy/Paste to/from specific memory</title>
<link>https://www.clipboardfusion.com/Discussions/View/copypaste-tofrom-specific-memory/?ID=7d7071b2-b9bd-4462-a312-7d48e2356b42#22</link>
<pubDate>Fri, 28 Jun 2019 13:36:42 GMT</pubDate>
<dc:creator>Binary Fortress Software</dc:creator>
<guid isPermaLink="false">https://www.clipboardfusion.com/Discussions/View/copypaste-tofrom-specific-memory/?ID=7d7071b2-b9bd-4462-a312-7d48e2356b42#22</guid>
<category>ClipboardFusion</category>
<description><![CDATA[Ok, I've added your vote to that feature request. Thanks!]]></description>
<content:encoded><![CDATA[<div class="CTDiscussions">
Ok, I've added your vote to that feature request. Thanks!
</div>
]]></content:encoded>
</item>
<item>
<title>RE: Copy/Paste to/from specific memory</title>
<link>https://www.clipboardfusion.com/Discussions/View/copypaste-tofrom-specific-memory/?ID=7d7071b2-b9bd-4462-a312-7d48e2356b42#21</link>
<pubDate>Wed, 26 Jun 2019 18:31:10 GMT</pubDate>
<dc:creator>Binary Fortress Software</dc:creator>
<guid isPermaLink="false">https://www.clipboardfusion.com/Discussions/View/copypaste-tofrom-specific-memory/?ID=7d7071b2-b9bd-4462-a312-7d48e2356b42#21</guid>
<category>ClipboardFusion</category>
<description><![CDATA[Yes please. I would like they keypad option.]]></description>
<content:encoded><![CDATA[<div class="CTDiscussions">
Yes please. I would like they keypad option.
</div>
]]></content:encoded>
</item>
<item>
<title>RE: Copy/Paste to/from specific memory</title>
<link>https://www.clipboardfusion.com/Discussions/View/copypaste-tofrom-specific-memory/?ID=7d7071b2-b9bd-4462-a312-7d48e2356b42#20</link>
<pubDate>Wed, 26 Jun 2019 18:30:04 GMT</pubDate>
<dc:creator>Binary Fortress Software</dc:creator>
<guid isPermaLink="false">https://www.clipboardfusion.com/Discussions/View/copypaste-tofrom-specific-memory/?ID=7d7071b2-b9bd-4462-a312-7d48e2356b42#20</guid>
<category>ClipboardFusion</category>
<description><![CDATA[Ah ok, no worries! It does use the number row on the keyboard and not the numpad. I believe we have an open request for an option to use the numpad instead. If you'd like that option as well, please let me know and I'll add your vote.
Thanks!]]></description>
<content:encoded><![CDATA[<div class="CTDiscussions">
Ah ok, no worries! It does use the number row on the keyboard and not the numpad. I believe we have an open request for an option to use the numpad instead. If you'd like that option as well, please let me know and I'll add your vote.<br/>
<br/>
Thanks!
</div>
]]></content:encoded>
</item>
<item>
<title>RE: Copy/Paste to/from specific memory</title>
<link>https://www.clipboardfusion.com/Discussions/View/copypaste-tofrom-specific-memory/?ID=7d7071b2-b9bd-4462-a312-7d48e2356b42#19</link>
<pubDate>Wed, 26 Jun 2019 18:15:53 GMT</pubDate>
<dc:creator>Binary Fortress Software</dc:creator>
<guid isPermaLink="false">https://www.clipboardfusion.com/Discussions/View/copypaste-tofrom-specific-memory/?ID=7d7071b2-b9bd-4462-a312-7d48e2356b42#19</guid>
<category>ClipboardFusion</category>
<description><![CDATA[You know what, it is now! I was using the keypad on my keyboard and it wouldn't work, but when i push 1 at top of my keyboard it worked. Sorry for your trouble!]]></description>
<content:encoded><![CDATA[<div class="CTDiscussions">
You know what, it is now! I was using the keypad on my keyboard and it wouldn't work, but when i push 1 at top of my keyboard it worked. Sorry for your trouble!
</div>
]]></content:encoded>
</item>
<item>
<title>RE: Copy/Paste to/from specific memory</title>
<link>https://www.clipboardfusion.com/Discussions/View/copypaste-tofrom-specific-memory/?ID=7d7071b2-b9bd-4462-a312-7d48e2356b42#18</link>
<pubDate>Wed, 26 Jun 2019 18:13:26 GMT</pubDate>
<dc:creator>Binary Fortress Software</dc:creator>
<guid isPermaLink="false">https://www.clipboardfusion.com/Discussions/View/copypaste-tofrom-specific-memory/?ID=7d7071b2-b9bd-4462-a312-7d48e2356b42#18</guid>
<category>ClipboardFusion</category>
<description><![CDATA[Thanks! So from your settings, pressing Ctrl + Shift + 1 should paste the first item from the History (first tab) in the Clipboard Manager, and Ctrl + Alt + 1 should paste the first Local Pinned Item (second tab). Is neither one working for you?]]></description>
<content:encoded><![CDATA[<div class="CTDiscussions">
Thanks! So from your settings, pressing Ctrl + Shift + 1 should paste the first item from the History (first tab) in the Clipboard Manager, and Ctrl + Alt + 1 should paste the first Local Pinned Item (second tab). Is neither one working for you?
</div>
]]></content:encoded>
</item>
<item>
<title>RE: Copy/Paste to/from specific memory</title>
<link>https://www.clipboardfusion.com/Discussions/View/copypaste-tofrom-specific-memory/?ID=7d7071b2-b9bd-4462-a312-7d48e2356b42#17</link>
<pubDate>Wed, 26 Jun 2019 18:09:48 GMT</pubDate>
<dc:creator>Binary Fortress Software</dc:creator>
<guid isPermaLink="false">https://www.clipboardfusion.com/Discussions/View/copypaste-tofrom-specific-memory/?ID=7d7071b2-b9bd-4462-a312-7d48e2356b42#17</guid>
<category>ClipboardFusion</category>
<description><![CDATA[Here it is]]></description>
<content:encoded><![CDATA[<div class="CTDiscussions">
Here it is
</div>
]]></content:encoded>
</item>
<item>
<title>RE: Copy/Paste to/from specific memory</title>
<link>https://www.clipboardfusion.com/Discussions/View/copypaste-tofrom-specific-memory/?ID=7d7071b2-b9bd-4462-a312-7d48e2356b42#16</link>
<pubDate>Wed, 26 Jun 2019 18:03:35 GMT</pubDate>
<dc:creator>Binary Fortress Software</dc:creator>
<guid isPermaLink="false">https://www.clipboardfusion.com/Discussions/View/copypaste-tofrom-specific-memory/?ID=7d7071b2-b9bd-4462-a312-7d48e2356b42#16</guid>
<category>ClipboardFusion</category>
<description><![CDATA[Can you send me a screenshot of the Settings  Clipboard History tab in ClipboardFusion?]]></description>
<content:encoded><![CDATA[<div class="CTDiscussions">
Can you send me a screenshot of the Settings > Clipboard History tab in ClipboardFusion?
</div>
]]></content:encoded>
</item>
<item>
<title>RE: Copy/Paste to/from specific memory</title>
<link>https://www.clipboardfusion.com/Discussions/View/copypaste-tofrom-specific-memory/?ID=7d7071b2-b9bd-4462-a312-7d48e2356b42#15</link>
<pubDate>Wed, 26 Jun 2019 15:48:34 GMT</pubDate>
<dc:creator>Binary Fortress Software</dc:creator>
<guid isPermaLink="false">https://www.clipboardfusion.com/Discussions/View/copypaste-tofrom-specific-memory/?ID=7d7071b2-b9bd-4462-a312-7d48e2356b42#15</guid>
<category>ClipboardFusion</category>
<description><![CDATA[I need help please!!! I assigned hotkey modifier in clipboard history settings, but when i push shift+ctrl+1, nothing is pasted. Can you please help me figure out what i'm doing wrong? Do i need a macro for this? If so, i need help with that too! Thank you in advance!!]]></description>
<content:encoded><![CDATA[<div class="CTDiscussions">
I need help please!!! I assigned hotkey modifier in clipboard history settings, but when i push shift+ctrl+1, nothing is pasted. Can you please help me figure out what i'm doing wrong? Do i need a macro for this? If so, i need help with that too! Thank you in advance!! <img src="https://www.clipboardfusion.com/MediaCommon/SVGs/FontAwesome/face-smile.light.svg" alt=":)" style="box-sizing:border-box;position:relative;overflow:hidden;vertical-align:middle !important;width:16px;height:16px;" HelpButtonData=":)" HelpButtonDataAlign="BelowMiddle" />
</div>
]]></content:encoded>
</item>
<item>
<title>RE: Copy/Paste to/from specific memory</title>
<link>https://www.clipboardfusion.com/Discussions/View/copypaste-tofrom-specific-memory/?ID=7d7071b2-b9bd-4462-a312-7d48e2356b42#14</link>
<pubDate>Wed, 06 Feb 2019 15:52:21 GMT</pubDate>
<dc:creator>Binary Fortress Software</dc:creator>
<guid isPermaLink="false">https://www.clipboardfusion.com/Discussions/View/copypaste-tofrom-specific-memory/?ID=7d7071b2-b9bd-4462-a312-7d48e2356b42#14</guid>
<category>ClipboardFusion</category>
<description><![CDATA[Excellent, glad to hear it!]]></description>
<content:encoded><![CDATA[<div class="CTDiscussions">
Excellent, glad to hear it!
</div>
]]></content:encoded>
</item>
<item>
<title>RE: Copy/Paste to/from specific memory</title>
<link>https://www.clipboardfusion.com/Discussions/View/copypaste-tofrom-specific-memory/?ID=7d7071b2-b9bd-4462-a312-7d48e2356b42#13</link>
<pubDate>Wed, 06 Feb 2019 12:03:27 GMT</pubDate>
<dc:creator>Binary Fortress Software</dc:creator>
<guid isPermaLink="false">https://www.clipboardfusion.com/Discussions/View/copypaste-tofrom-specific-memory/?ID=7d7071b2-b9bd-4462-a312-7d48e2356b42#13</guid>
<category>ClipboardFusion</category>
<description><![CDATA[Hi Keith,
It works perfectly! Thank you very much!]]></description>
<content:encoded><![CDATA[<div class="CTDiscussions">
Hi Keith,<br/>
<br/>
It works perfectly! Thank you very much!
</div>
]]></content:encoded>
</item>
<item>
<title>RE: Copy/Paste to/from specific memory</title>
<link>https://www.clipboardfusion.com/Discussions/View/copypaste-tofrom-specific-memory/?ID=7d7071b2-b9bd-4462-a312-7d48e2356b42#12</link>
<pubDate>Tue, 05 Feb 2019 17:08:17 GMT</pubDate>
<dc:creator>Binary Fortress Software</dc:creator>
<guid isPermaLink="false">https://www.clipboardfusion.com/Discussions/View/copypaste-tofrom-specific-memory/?ID=7d7071b2-b9bd-4462-a312-7d48e2356b42#12</guid>
<category>ClipboardFusion</category>
<description><![CDATA[Strange, they're working correctly for me. Could you try deleting the slot 01 macro and importing it again from the attached zip file?]]></description>
<content:encoded><![CDATA[<div class="CTDiscussions">
Strange, they're working correctly for me. Could you try deleting the slot 01 macro and importing it again from the attached zip file?
</div>
]]></content:encoded>
</item>
<item>
<title>RE: Copy/Paste to/from specific memory</title>
<link>https://www.clipboardfusion.com/Discussions/View/copypaste-tofrom-specific-memory/?ID=7d7071b2-b9bd-4462-a312-7d48e2356b42#11</link>
<pubDate>Fri, 01 Feb 2019 21:13:58 GMT</pubDate>
<dc:creator>Binary Fortress Software</dc:creator>
<guid isPermaLink="false">https://www.clipboardfusion.com/Discussions/View/copypaste-tofrom-specific-memory/?ID=7d7071b2-b9bd-4462-a312-7d48e2356b42#11</guid>
<category>ClipboardFusion</category>
<description><![CDATA[Hi Keith,
There is some progress.
However, when I use the key combination to store in slot #1 it goes to #2 and so on. Pasting from #1 gives the text: --placeholder--
Look at the content of Pinned Items.
Once again, thank you very much for your help.]]></description>
<content:encoded><![CDATA[<div class="CTDiscussions">
Hi Keith,<br/>
<br/>
There is some progress.<br/>
<br/>
However, when I use the key combination to store in slot #1 it goes to #2 and so on. Pasting from #1 gives the text: --placeholder--<br/>
<br/>
Look at the content of Pinned Items.<br/>
<br/>
Once again, thank you very much for your help.
</div>
]]></content:encoded>
</item>
<item>
<title>RE: Copy/Paste to/from specific memory</title>
<link>https://www.clipboardfusion.com/Discussions/View/copypaste-tofrom-specific-memory/?ID=7d7071b2-b9bd-4462-a312-7d48e2356b42#10</link>
<pubDate>Thu, 31 Jan 2019 19:43:48 GMT</pubDate>
<dc:creator>Binary Fortress Software</dc:creator>
<guid isPermaLink="false">https://www.clipboardfusion.com/Discussions/View/copypaste-tofrom-specific-memory/?ID=7d7071b2-b9bd-4462-a312-7d48e2356b42#10</guid>
<category>ClipboardFusion</category>
<description><![CDATA[Ah yep, that makes sense. It can't set the pinned item text if the item doesn't exist. It's not possible to create an item at a specific slot, the slots are created in order.
Could you try adding this to all of the macros, above the "BFS.ClipboardFusion.SetLocalPinned" line:
Code
Copy
Select ...]]></description>
<content:encoded><![CDATA[<div class="CTDiscussions">
Ah yep, that makes sense. It can't set the pinned item text if the item doesn't exist. It's not possible to create an item at a specific slot, the slots are created in order.<br/>
<br/>
Could you try adding this to all of the macros, above the "BFS.ClipboardFusion.SetLocalPinned" line:<br/>
<br/>
<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="#code019e32c9e09470318f7deeed2214f945" 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('code019e32c9e09470318f7deeed2214f945Js'); 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="code019e32c9e09470318f7deeed2214f945Js" contenteditable="true" spellcheck="true" class="skiptranslate" style="width:100%; min-height:75px;">int localPinnedItemCount = BFS.ClipboardFusion.GetLocalPinnedItemCount();
        if (localPinnedItemCount &lt; 10)
        {
            for (int i = localPinnedItemCount; i &lt; 10; i++)
            {
                BFS.ClipboardFusion.AddLocalPinnedText("--placeholder--");
            }
        }</pre><textarea id="code019e32c9e09470318f7deeed2214f945" name="code019e32c9e09470318f7deeed2214f945" style="position:absolute; top:0; left:-999999px; width:1px; height:1px;"></textarea></div>
</div></div></div>
</div>
]]></content:encoded>
</item>
<item>
<title>RE: Copy/Paste to/from specific memory</title>
<link>https://www.clipboardfusion.com/Discussions/View/copypaste-tofrom-specific-memory/?ID=7d7071b2-b9bd-4462-a312-7d48e2356b42#9</link>
<pubDate>Thu, 31 Jan 2019 19:29:06 GMT</pubDate>
<dc:creator>Binary Fortress Software</dc:creator>
<guid isPermaLink="false">https://www.clipboardfusion.com/Discussions/View/copypaste-tofrom-specific-memory/?ID=7d7071b2-b9bd-4462-a312-7d48e2356b42#9</guid>
<category>ClipboardFusion</category>
<description><![CDATA[Hi Keith,
I've done as you instructed. However, after applying the shorcut to copy text to dedicated slot, I can't paste it - nothing gets pasted. I checked the pinned list items and it's empty. I tried changing the shortcuts (making sure that there is no conflict) but the pinned list item stays...]]></description>
<content:encoded><![CDATA[<div class="CTDiscussions">
Hi Keith,<br/>
<br/>
I've done as you instructed. However, after applying the shorcut to copy text to dedicated slot, I can't paste it - nothing gets pasted. I checked the pinned list items and it's empty. I tried changing the shortcuts (making sure that there is no conflict) but the pinned list item stays empty <img src="https://www.clipboardfusion.com/MediaCommon/SVGs/FontAwesome/face-sad-tear.light.svg" alt=":'(" style="box-sizing:border-box;position:relative;overflow:hidden;vertical-align:middle !important;width:16px;height:16px;" HelpButtonData=":'(" HelpButtonDataAlign="BelowMiddle" /><br/>
<br/>
Thank you for your help!
</div>
]]></content:encoded>
</item>
<item>
<title>RE: Copy/Paste to/from specific memory</title>
<link>https://www.clipboardfusion.com/Discussions/View/copypaste-tofrom-specific-memory/?ID=7d7071b2-b9bd-4462-a312-7d48e2356b42#8</link>
<pubDate>Wed, 30 Jan 2019 19:09:46 GMT</pubDate>
<dc:creator>Binary Fortress Software</dc:creator>
<guid isPermaLink="false">https://www.clipboardfusion.com/Discussions/View/copypaste-tofrom-specific-memory/?ID=7d7071b2-b9bd-4462-a312-7d48e2356b42#8</guid>
<category>ClipboardFusion</category>
<description><![CDATA[After importing the macros, you need to set the key combination on each one. e.g. Ctrl + Alt + 1, Ctrl + Alt + 2, etc.
Then when you press Ctrl + Alt + 1, it should run the macro that puts the selected text in slot 1. If you press Shift + Alt + 1, it should paste from slot 1.]]></description>
<content:encoded><![CDATA[<div class="CTDiscussions">
After importing the macros, you need to set the key combination on each one. e.g. Ctrl + Alt + 1, Ctrl + Alt + 2, etc.<br/>
<br/>
Then when you press Ctrl + Alt + 1, it should run the macro that puts the selected text in slot 1. If you press Shift + Alt + 1, it should paste from slot 1.
</div>
]]></content:encoded>
</item>
<item>
<title>RE: Copy/Paste to/from specific memory</title>
<link>https://www.clipboardfusion.com/Discussions/View/copypaste-tofrom-specific-memory/?ID=7d7071b2-b9bd-4462-a312-7d48e2356b42#7</link>
<pubDate>Wed, 30 Jan 2019 12:11:49 GMT</pubDate>
<dc:creator>Binary Fortress Software</dc:creator>
<guid isPermaLink="false">https://www.clipboardfusion.com/Discussions/View/copypaste-tofrom-specific-memory/?ID=7d7071b2-b9bd-4462-a312-7d48e2356b42#7</guid>
<category>ClipboardFusion</category>
<description><![CDATA[Thank you for your help.
I set the quick key on the Local Pinned Items to Shift + Alt.
Now, how do I copy to slot 1 and then how do I paste form slot 1?
I imported the macros but I can't make it work.]]></description>
<content:encoded><![CDATA[<div class="CTDiscussions">
Thank you for your help.<br/>
<br/>
I set the quick key on the Local Pinned Items to Shift + Alt.<br/>
<br/>
Now, how do I copy to slot 1 and then how do I paste form slot 1?<br/>
<br/>
I imported the macros but I can't make it work.
</div>
]]></content:encoded>
</item>
<item>
<title>RE: Copy/Paste to/from specific memory</title>
<link>https://www.clipboardfusion.com/Discussions/View/copypaste-tofrom-specific-memory/?ID=7d7071b2-b9bd-4462-a312-7d48e2356b42#6</link>
<pubDate>Mon, 28 Jan 2019 18:49:20 GMT</pubDate>
<dc:creator>Binary Fortress Software</dc:creator>
<guid isPermaLink="false">https://www.clipboardfusion.com/Discussions/View/copypaste-tofrom-specific-memory/?ID=7d7071b2-b9bd-4462-a312-7d48e2356b42#6</guid>
<category>ClipboardFusion</category>
<description><![CDATA[Ok, try these out then
You'll want to set the quick key on the Local Pinned Items in the Settings as well, for pasting them (see the attached screenshot).
Hope that helps!]]></description>
<content:encoded><![CDATA[<div class="CTDiscussions">
Ok, try these out then <img src="https://www.clipboardfusion.com/MediaCommon/SVGs/FontAwesome/face-smile.light.svg" alt=":)" style="box-sizing:border-box;position:relative;overflow:hidden;vertical-align:middle !important;width:16px;height:16px;" HelpButtonData=":)" HelpButtonDataAlign="BelowMiddle" /><br/>
<br/>
You'll want to set the quick key on the Local Pinned Items in the Settings as well, for pasting them (see the attached screenshot).<br/>
<br/>
Hope that helps!
</div>
]]></content:encoded>
</item>
<item>
<title>RE: Copy/Paste to/from specific memory</title>
<link>https://www.clipboardfusion.com/Discussions/View/copypaste-tofrom-specific-memory/?ID=7d7071b2-b9bd-4462-a312-7d48e2356b42#5</link>
<pubDate>Fri, 25 Jan 2019 20:02:07 GMT</pubDate>
<dc:creator>Binary Fortress Software</dc:creator>
<guid isPermaLink="false">https://www.clipboardfusion.com/Discussions/View/copypaste-tofrom-specific-memory/?ID=7d7071b2-b9bd-4462-a312-7d48e2356b42#5</guid>
<category>ClipboardFusion</category>
<description><![CDATA[Hi Keith,
Yes, I have some items in the Local Pinned list but I can move them to Online Pinned List. Maybe in some future version there can be more than one Pinned List that can be selected either manually or depending on application you're using.
Anyway, thank you very much in advance for the ...]]></description>
<content:encoded><![CDATA[<div class="CTDiscussions">
Hi Keith,<br/>
Yes, I have some items in the Local Pinned list but I can move them to Online Pinned List. Maybe in some future version there can be more than one Pinned List that can be selected either manually or depending on application you're using.<br/>
<br/>
Anyway, thank you very much in advance for the macros, much appriciated!<br/>
<br/>
Best,<br/>
<br/>
Dejan
</div>
]]></content:encoded>
</item>
<item>
<title>RE: Copy/Paste to/from specific memory</title>
<link>https://www.clipboardfusion.com/Discussions/View/copypaste-tofrom-specific-memory/?ID=7d7071b2-b9bd-4462-a312-7d48e2356b42#4</link>
<pubDate>Fri, 25 Jan 2019 19:23:56 GMT</pubDate>
<dc:creator>Binary Fortress Software</dc:creator>
<guid isPermaLink="false">https://www.clipboardfusion.com/Discussions/View/copypaste-tofrom-specific-memory/?ID=7d7071b2-b9bd-4462-a312-7d48e2356b42#4</guid>
<category>ClipboardFusion</category>
<description><![CDATA[Ah ok, I could write up a bunch of macros that would do that, you'd have 10 macros, one for each slot in the Local Pinned list, then you could use the Local Pinned Quick Hotkey to paste them.
Do you already have stuff in your Local Pinned list, or just the Local History? Just asking because thes...]]></description>
<content:encoded><![CDATA[<div class="CTDiscussions">
Ah ok, I could write up a bunch of macros that would do that, you'd have 10 macros, one for each slot in the Local Pinned list, then you could use the Local Pinned Quick Hotkey to paste them.<br/>
<br/>
Do you already have stuff in your Local Pinned list, or just the Local History? Just asking because these macros will overwrite the items in the Local Pinned list.
</div>
]]></content:encoded>
</item>
<item>
<title>RE: Copy/Paste to/from specific memory</title>
<link>https://www.clipboardfusion.com/Discussions/View/copypaste-tofrom-specific-memory/?ID=7d7071b2-b9bd-4462-a312-7d48e2356b42#3</link>
<pubDate>Thu, 24 Jan 2019 00:07:27 GMT</pubDate>
<dc:creator>Binary Fortress Software</dc:creator>
<guid isPermaLink="false">https://www.clipboardfusion.com/Discussions/View/copypaste-tofrom-specific-memory/?ID=7d7071b2-b9bd-4462-a312-7d48e2356b42#3</guid>
<category>ClipboardFusion</category>
<description><![CDATA[Thank you Keith for you answer.
The problem with that solution is that I can't copy directly to first buffer. As I copy more text, the first item I copied gets shifted to higher number. Is there a way that what I copied stays in the buffer I coppied to?
For example, if I use shorcut key_a + Key...]]></description>
<content:encoded><![CDATA[<div class="CTDiscussions">
Thank you Keith for you answer.<br/>
The problem with that solution is that I can't copy directly to first buffer. As I copy more text, the first item I copied gets shifted to higher number. Is there a way that what I copied stays in the buffer I coppied to?<br/>
<br/>
For example, if I use shorcut key_a + Key_b + <b>3</b> I should be able to paste that with key_x + key_x + <b>3</b> at any time, regardless if I use copy/pate in betwee.<br/>
<br/>
Can I use some shorctuc to copy and pin item directly to specific place [ 1, 2 ... ]?
</div>
]]></content:encoded>
</item>
<item>
<title>RE: Copy/Paste to/from specific memory</title>
<link>https://www.clipboardfusion.com/Discussions/View/copypaste-tofrom-specific-memory/?ID=7d7071b2-b9bd-4462-a312-7d48e2356b42#2</link>
<pubDate>Tue, 22 Jan 2019 18:33:42 GMT</pubDate>
<dc:creator>Binary Fortress Software</dc:creator>
<guid isPermaLink="false">https://www.clipboardfusion.com/Discussions/View/copypaste-tofrom-specific-memory/?ID=7d7071b2-b9bd-4462-a312-7d48e2356b42#2</guid>
<category>ClipboardFusion</category>
<description><![CDATA[How many items do you need to copy/paste at a time? If it's fewer than 10, you can set the "Quick Clipboard History Select HotKey Modifier" option on the Settings  Clipboard History tab. E.g. if you set it to Ctrl + Shift, then you can paste items 1-10 with Ctrl + Shift + 1-10.
Hope that helps!]]></description>
<content:encoded><![CDATA[<div class="CTDiscussions">
How many items do you need to copy/paste at a time? If it's fewer than 10, you can set the "Quick Clipboard History Select HotKey Modifier" option on the Settings > Clipboard History tab. E.g. if you set it to Ctrl + Shift, then you can paste items 1-10 with Ctrl + Shift + 1-10.<br/>
<br/>
Hope that helps!
</div>
]]></content:encoded>
</item>
<item>
<title>Copy/Paste to/from specific memory</title>
<link>https://www.clipboardfusion.com/Discussions/View/copypaste-tofrom-specific-memory/?ID=7d7071b2-b9bd-4462-a312-7d48e2356b42</link>
<pubDate>Mon, 21 Jan 2019 23:05:39 GMT</pubDate>
<dc:creator>Binary Fortress Software</dc:creator>
<guid isPermaLink="false">https://www.clipboardfusion.com/Discussions/View/copypaste-tofrom-specific-memory/?ID=7d7071b2-b9bd-4462-a312-7d48e2356b42</guid>
<category>ClipboardFusion</category>
<description><![CDATA[The topic title might be confusing but here is what I'd like to be able to do:
In the source page, I'd like to copy multiple items in certain order like Ctrl+C+1, Ctrl+C+2... and then I can paste with Ctrl+V+1 what was copied in 1 and so forth.
Is this type of operation configurable and if yes ...]]></description>
<content:encoded><![CDATA[<div class="CTDiscussions">
The topic title might be confusing but here is what I'd like to be able to do:<br/>
In the source page, I'd like to copy multiple items in certain order like Ctrl+C+1, Ctrl+C+2... and then I can paste with Ctrl+V+1 what was copied in 1 and so forth. <br/>
Is this type of operation configurable and if yes how can I do it?
</div>
]]></content:encoded>
</item>
</channel>
</rss>