Re: How to Create a Browser-Like Tabbed Interface

2019-01-21 Thread Douglas von Roeder via 4D_Tech
nife-for-4d/ > > (free and source included) > > -Ursprüngliche Nachricht- > Von: 4D_Tech <4d_tech-boun...@lists.4d.com> Im Auftrag von Douglas von > Roeder via 4D_Tech > Gesendet: Montag, 21. Januar 2019 18:45 > An: 4D iNug Technical <4d_tech@lists.4d.com>

AW: How to Create a Browser-Like Tabbed Interface

2019-01-21 Thread Olivier Flury via 4D_Tech
r 2019 18:45 An: 4D iNug Technical <4d_tech@lists.4d.com> Cc: Douglas von Roeder Betreff: Re: How to Create a Browser-Like Tabbed Interface Keith: Thanks for the reply. The issue in 4D (which I should have explained) is that, since 4D doesn't report a click, I can't trap for the contextual

Re: How to Create a Browser-Like Tabbed Interface

2019-01-21 Thread Jim Dorrance via 4D_Tech
I do this sort of thing with SVG often for clients. Contact me in private if you like. -- Jim Dorrance jim.dorra...@gmail.com 4...@dorrance.eu www.4d.dorrance.eu PS: If you know of anyone that needs an experienced 4D programmer to add energy and experience to their team, please let me know. I

Re: How to Create a Browser-Like Tabbed Interface

2019-01-21 Thread Douglas von Roeder via 4D_Tech
Keith: Thanks for the reply. The issue in 4D (which I should have explained) is that, since 4D doesn't report a click, I can't trap for the contextual click. "SVG pictures offer a good way to see clicks. You'll always get an object's ID, and you can put almost anything in the picture." Agreed,

Re: How to Create a Browser-Like Tabbed Interface

2019-01-21 Thread Keith Culotta via 4D_Tech
A tab control will not report a click when the click is on the current tab "page", but Safari seems to work that way too (no reaction to a click on the current page's tab). Clicking another of the tab's areas will generate a click. SVG pictures offer a good way to see clicks. You'll always

How to Create a Browser-Like Tabbed Interface

2019-01-21 Thread Douglas von Roeder via 4D_Tech
I'd like to create an interface that mimics the functionality and appearance of the tab control in Chrome or Safari. Given the functionality of the 4D tab control (once a tab is clicked, it no longer reports mouse clicks) what are my options for building a highly functional, tabbed UI? --