AutoHotkey Homepage AutoHotkey Community
Let's help each other out
 
 FAQFAQ   SearchSearch   MemberlistMemberlist   RegisterRegister 
 ProfileProfile   Log in to check your private messagesLog in to check your private messages   Log inLog in 

Network Wide Clipboard

 
Post new topic   Reply to topic    AutoHotkey Community Forum Index -> Ask for Help
View previous topic :: View next topic  
Author Message
Larry



Joined: 03 Mar 2005
Posts: 23

PostPosted: Mon Jul 18, 2005 4:22 pm    Post subject: Network Wide Clipboard Reply with quote

Does anyone know if it would be possible for a Network Wide Clipboard to be created with AutoHotkey?

For instance, lets say that you have 5 home computers.
Would it be possible to capture a clip on Computer#1,
and have the clip written to a clipboard file on each of
the 5 computers. Then, from each of the computers,
have the ability to paste that clip where ever it might
be needed.

Seems like it might be possible.....

Larry
Back to top
View user's profile Send private message
Chris
Site Admin


Joined: 02 Mar 2004
Posts: 10480

PostPosted: Tue Jul 19, 2005 11:02 am    Post subject: Reply with quote

I think you could do something like this via SetTimer and ClipboardAll. SetTimer would monitor the clipboard for changes on all systems. Whenever it changes, it could write the clipboard to a file using:

FileAppend, ClipboardAll, M:\SavedClipboard.bin
(where M can be a drive letter mapped on all five systems)

The timer would also check the file for changes made to it by the scripts running on the other systems. If the file changes, the clipboard could be loaded from the file.

This would require some careful design to avoid a deadlock where two PCs both try to write the file at the same time. There would probably be other complications too.
Back to top
View user's profile Send private message Send e-mail
Display posts from previous:   
Post new topic   Reply to topic    AutoHotkey Community Forum Index -> Ask for Help All times are GMT
Page 1 of 1

 
Jump to:  
You can post new topics in this forum
You can reply to topics in this forum


Powered by phpBB © 2001, 2005 phpBB Group