Re: Publishing a DB on the WWW. Howto.

2018-12-04 Thread Paul Dennis via 4D_Tech
As already mentioned. Have a look at lightning. It is now version 4 supports bootstrap 3 which is very important for mobile and you will be able to leverage a lot of your 4d existing code. Paul -- Sent from: http://4d.1045681.n5.nabble.com/4D-Tech-f1376241.html **

Re: Publishing a DB on the WWW. Howto.

2018-12-04 Thread Pat Bensky via 4D_Tech
We've been looking into ways to make it easy for our customers to build custom websites using data from our 4D app (CatBase). I'm quite interested in the Wix solution but haven't had time to properly look into it. Anybody tried this? Basically, you can create a database on your Wix website and pop

Re: Calling java

2018-12-04 Thread John DeSoi via 4D_Tech
Creating a plugin would be pretty involved. If LAUNCH EXTERNAL PROCESS is too slow, I would look into something like JSON RPC. For example, https://www.jsonrpc.org/archive_json-rpc.org/implementations.html https://github.com/briandilley/jsonrpc4j John DeSoi, Ph.D. > On Dec 4, 2018, at 1:48 AM

Re: Mojave

2018-12-04 Thread Cannon Smith via 4D_Tech
Thanks for the list, Miyako. Very helpful. -- Cannon.Smith Synergy Farm Solutions Inc. Hill Spring, AB Canada 403-626-3236 > On Dec 3, 2018, at 5:16 PM, Keisuke Miyako via 4D_Tech <4d_tech@lists.4d.com> > wrote: > > ACI0098799On macOS 10.14.x (Mojave), unexpected white vertical line is > di

Re: Mojave

2018-12-04 Thread Jim Hays via 4D_Tech
We are creating various graphics using a combination of SVG, 4D HTML Tags, and the Canvas plugin. The SVG was originally created with Sketch on the Mac, then added HTML tags and simplified the SVG. We dynamically size and add text, then convert to a picture to be displayed by Canvas. We're only c

Re: Mojave

2018-12-04 Thread Cannon Smith via 4D_Tech
Hi Jim, Thank you very much. That gives me some direction on what I’ll need to look for. Much obliged! -- Cannon.Smith Synergy Farm Solutions Inc. Hill Spring, AB Canada 403-626-3236 > On Dec 4, 2018, at 8:26 AM, Jim Hays via 4D_Tech <4d_tech@lists.4d.com> wrote: > > Good graphics - 32 bit

RE: Calling java

2018-12-04 Thread Piotr Chabot Stadhouders via 4D_Tech
Thanks John, I will take a look at it! Gr, Piotr Creating a plugin would be pretty involved. If LAUNCH EXTERNAL PROCESS is too slow, I would look into something like JSON RPC. For example, https://www.jsonrpc.org/archive_json-rpc.org/implementations.html https://github.com/briandilley/jsonrpc

Transform picture

2018-12-04 Thread Peter Mew via 4D_Tech
Hi Im using Transform picture to Zoom in and out. Horizontally, of a graphic. The Graphic starts out about 4500 (This will vary) pixels wide, using transform picture to fit it in a window 930 pixels wide. the code to zoom in is <>ScrollRatio:=<>ScrollRatio*2 //Zoom Ratio $ScaledL:=OrigL_3 //OrigL_

Re: Create text object

2018-12-04 Thread Peter Mew via 4D_Tech
Hi Chip Thanks to your code and OBJECT DUPLICATE I can achieve exactly what I want Cheers -PM On Tue, Nov 27, 2018 at 8:19 PM Chip Scheide <4d_o...@pghrepository.org> wrote: > well... not exactly programatically - it does require a creating an > object (or duplicating an existing one). > > - You

Re: Transform picture

2018-12-04 Thread Charles Miller via 4D_Tech
It could be that after the number of zooms the width to height ration is wrong for how the picture is placed on the page scaled to fit center proportional etc regards chuck On Tue, Dec 4, 2018 at 2:54 PM Peter Mew via 4D_Tech <4d_tech@lists.4d.com> wrote: > Hi > Im using Transform picture t

4D and SAML

2018-12-04 Thread Nate Rheaume via 4D_Tech
Has anyone used SAML 2.0 (Security Assertion Markup Language 2.0) with 4D? We are currently using the Single Sign On option in 4D but we have a customer that needs SAML protocol for SSO. Any information would be very helpful. Nate Rheaume Software Developer n...@dwdev.com

Re: Publishing a DB on the WWW. Howto.

2018-12-04 Thread Tim Nevels via 4D_Tech
On Dec 4, 2018, at 2:00 PM, Pat Bensky wrote: > We've been looking into ways to make it easy for our customers to build > custom websites using data from our 4D app (CatBase). I'm quite interested > in the Wix solution but haven't had time to properly look into it. Anybody > tried this? > > Basic

Re: Transform picture

2018-12-04 Thread Keisuke Miyako via 4D_Tech
in general, I would avoid applying multiple scale transforms, but rather, restore the original size (scale is not resampling, the original image does not change) and apply a new scale factor. 2018/12/05 4:53、Peter Mew via 4D_Tech <4d_tech@lists.4d.com>のメール: It scale