Feature Requests item #1071318, was opened at 2004-11-22 16:12
Message generated for change (Comment added) made by hansonr
You can respond by visiting: 
https://sourceforge.net/tracker/?func=detail&atid=379136&aid=1071318&group_id=23629

Please note that this message will contain a full copy of the comment thread,
including the initial issue submission, for this request,
not just the latest update.
Category: None
Group: None
>Status: Closed
Priority: 5
Submitted By: Miguel (migueljmol)
Assigned to: Bob Hanson (hansonr)
Summary: clipboard support to application

Initial Comment:
We should add support to pulling a model off of the
clipboard within the Jmol application

---------------------------- Mensaje original
---------------------------- Asunto: JMOL: support for
copying a MOL string off system clipboard De:     "Pat
Spink" <[EMAIL PROTECTED]>
Fecha:  Lun, 22 de Noviembre de 2004, 16:01
Para:   [EMAIL PROTECTED]
--------------------------------------------------------------------------

Miguel,

Would it be possible to support copying a MOL string
off the system clipboard:

// Get data from clipboard
Transferable clipData = 
  clipboard.getContents(clipboard);
// Make sure not empty
if (clipData != null) {
// Check if it supports the desired flavor
  if (clipData.isDataFlavorSupported
       (DataFlavor.stringFlavor)) {
// Get data
    String s = (String)(clipData.getTransferData(
      DataFlavor.stringFlavor));
// Use data
    ...
  }
}


----------------------------------------------------------------------

>Comment By: Bob Hanson (hansonr)
Date: 2006-09-27 09:06

Message:
Logged In: YES 
user_id=1082841

this is done.

----------------------------------------------------------------------

Comment By: Bob Hanson (hansonr)
Date: 2006-08-22 18:01

Message:
Logged In: YES 
user_id=1082841

 

----------------------------------------------------------------------

You can respond by visiting: 
https://sourceforge.net/tracker/?func=detail&atid=379136&aid=1071318&group_id=23629

-------------------------------------------------------------------------
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys -- and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
_______________________________________________
Jmol-developers mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/jmol-developers

Reply via email to