In my compiled app for Windows, right-clicking within a text field does not display the usual Windows context menu that includes copy/paste functions. Is there a way to get the contextual menu to display?
Thank you,
Jon
Moderators: Klaus, FourthWorld, heatherlaine, kevinmiller
Code: Select all
on mousedown tMouse
if tMouse = 3 then
popup btn "you text menu here..."
end if
end mousedownYes.cmhjon wrote: Mon Apr 12, 2021 2:04 pmdoes this mean that I must also code what happens when someone right clicks a text field and chooses, "Paste"?