Jump to content

Sky Slate Blueberry Blackcurrant Watermelon Strawberry Orange Banana Apple Emerald Chocolate
Photo

Strange interactions of ClipBoardAll and Send ^c


  • Please log in to reply
20 replies to this topic
Tekl
  • Members
  • 814 posts
  • Last active: May 03 2009 03:28 PM
  • Joined: 24 Sep 2004
Hi,

I just have overflown this topic. I had problems with the clipboard and Adobe-applications. I have to activate the desktop and reactivate the adobe-application to let them refresh what they see in the clipboard. So pasting in adobe-apps works only if it was de- and reactivated first.
Tekl

Chris
  • Administrators
  • 10727 posts
  • Last active:
  • Joined: 02 Mar 2004
That behavior probably means that Adobe applications maintain their own private clipboard that they update only when they think you might have changed the clipboard outside of Adobe (i.e. by switching to some other window).

Other than your current workaround, there might be some message you can Post/Send to an Adobe window to get it to update, but I don't know offhand what it might be. Perhaps their site or their support staff would know the answer.

Chris
  • Administrators
  • 10727 posts
  • Last active:
  • Joined: 02 Mar 2004
The issue ClipboardAll causing unwanted bookmarks to appear in MS Word has hopefully been fixed in v1.0.42.04 (please let me know if you have any problems with it). However, the issue of ClipboardAll pasting empty pictures in MS Word (as Laszlo described above) is not yet solved. I'm not sure if there will ever be a complete solution for that, but I'm planning to look into further.

Thanks.

Laszlo
  • Moderators
  • 4713 posts
  • Last active: Mar 31 2012 03:17 AM
  • Joined: 14 Feb 2005
The cause of the picture placeholder problem seems to be in MS Word. When pasting a picture, it selects HTML format. If you don't send Ctrl-V, but Edit / Paste Special: Microsoft Office Word Document Object (Send !es{Home}{Enter}), there is no problem with the picture. Maybe an appropriate SendMessage could do this paste-special nicer. (Anyone knows, how to do it?)

I enjoy the lack of bookmarks with the new AHK version. I stopped using my deluxe clipboard because of that. Now I can put it back to my main script. Thanks!

CloudSurfer777
  • Members
  • 42 posts
  • Last active: Sep 04 2013 01:55 AM
  • Joined: 02 Oct 2012

I have a lot of issues using ClipStep with similar effects like what you describe above and even causes Excel to crash and recover, what a pain.  I'd like to try Deluxe ClipBoard, do you have the latest version?  Thanks for all of your hard work, you guys are great!



b0dhikey
  • Members
  • 44 posts
  • Last active: Nov 06 2015 02:43 AM
  • Joined: 26 Jan 2014

Anybody figure out why the strange interaction with ^C happens?

 

I don't even use any clipboard tools or clipboard modifications in my AHK and I experience the same thing: copying any text instantly bookmarks it (and copies it).

 

By the way, here is a VBA script that will delete all bookmarks:

Sub removebookmarks()
Dim bkm As Bookmark
For Each bkm In ActiveDocument.Bookmarks
bkm.Delete
Next bkm
End Sub