Robert,

I second Tim's approach - just build your own menu based on the On clicked
event with Contextual Click. I don't think a user could tell the difference
between it being a '4D menu' and an 'OS menu'. I'm not even sure there is
any.

The only thing I'd do differently is not bother with an IP var for the menu
ref. Just use it and loose it:

$menu:=Create menu

APPEND MENU ITEM($menu;"Cut")
SET MENU ITEM PARAMETER($menu;-1;"cut")

APPEND MENU ITEM($menu;"Copy")
SET MENU ITEM PARAMETER($menu;-1;"copy")

etc

// display the menu, get the result, clear the menu
$result:=Dynamic pop up menu($menu)
RELEASE MENU($menu)

Case of
  :($result="cut")
  ....
End case




On Wed, Jun 21, 2017 at 7:05 PM, Robert ListMail via 4D_Tech <
4d_tech@lists.4d.com> wrote:

> Is there a way to use the contextual menu of the host OS (Mac or Windows)
> for Cut, Copy & Paste within 4D?
>
> Thanks,
>
> Robert
>
> **********************************************************************
> 4D Internet Users Group (4D iNUG)
> FAQ:  http://lists.4d.com/faqnug.html
> Archive:  http://lists.4d.com/archives.html
> Options: http://lists.4d.com/mailman/options/4d_tech
> Unsub:  mailto:4d_tech-unsubscr...@lists.4d.com
> **********************************************************************




-- 
Kirk Brooks
San Francisco, CA
=======================

*The only thing necessary for the triumph of evil is for good men to do
nothing.*

*- Edmund Burke*
**********************************************************************
4D Internet Users Group (4D iNUG)
FAQ:  http://lists.4d.com/faqnug.html
Archive:  http://lists.4d.com/archives.html
Options: http://lists.4d.com/mailman/options/4d_tech
Unsub:  mailto:4d_tech-unsubscr...@lists.4d.com
**********************************************************************

Reply via email to