Copying text in a Standalone app
Posted: Mon Dec 31, 2012 9:05 pm
I added an edit menu to my app that has a Copy option. How I do I make it possible to copy the text in an existing text field once I create a Standalone?
Questions and answers about the LiveCode platform.
https://www.forums.livecode.com/
Yes, that much I had already figured out. I should have phrased my question, "what is the preferred way to handle the issue."FourthWorld wrote:Yep - see the "copy" command in the Dictionary.
Code: Select all
on commandKeyDown pKey
if pKey is "c" then
copy
else
pass commandKeyDown
end if
end commandKeyDown