-- Lingo syntaxmemberObjRef.copyToClipBoard() // JavaScript syntaxmemberObjRef.copyToClipBoard();
Member method; copies a specified cast member to the Clipboard.
Calling this method does not require the Cast window to be active.
This method is useful when copying cast members between movies or applications.
None.
This statement copies the cast member named chair to the Clipboard:
-- Lingo syntax
member("chair").copyToClipBoard()
// JavaScript syntax
member("chair").copyToClipBoard();
This statement copies cast member number 5 to the Clipboard:
-- Lingo syntax member(5).copyToClipBoard() // JavaScript syntax member(5).copyToClipBoard();