MailJet

2018-03-06 Thread Robert ListMail via 4D_Tech
I’ve inherited a project that’s been setup to send email via MailJet. I’m having a problem where a newly defined CC email address will not be delivered via MailJet unless another test email address is specified as a CC as well. So, I have to ask, why might you use a service like MailJet when sen

Re: 4D Called from AppleScript

2018-03-06 Thread B.Bippus via 4D_Tech
Maybe you can use 'osascript' via LEP. Like: -- Displaying a dialog with osascript osascript -e 'display dialog ""' returns execution error: No user interaction allowed. One option is to tell a background process like SystemUIServer to display the dialog: answer=$(osascript -e 'try tell applicati

Re: Question about Execute on Server under 4D v15

2018-03-06 Thread Robert McKeever via 4D_Tech
Thanks, Kirk. > On Mar 6, 2018, at 10:24 AM, Kirk Brooks via 4D_Tech <4d_tech@lists.4d.com> > wrote: > > Robert, > John's suggestion about a worker process is a good one. It sounds like > you're just starting into this area so I'll throw out out a few things that > aren't readily apparent. > >

Re: Question about Execute on Server under 4D v15

2018-03-06 Thread Kirk Brooks via 4D_Tech
Robert, John's suggestion about a worker process is a good one. It sounds like you're just starting into this area so I'll throw out out a few things that aren't readily apparent. I use Execute on server (EOS) methods a lot. When a method is EOS it runs on the server but in the 'twin' process of t

Re: 4D Called from AppleScript

2018-03-06 Thread Jeremy Roussak via 4D_Tech
That’s the one I had in mind, yes. Jeremy Jeremy Roussak j...@mac.com > On 6 Mar 2018, at 15:57, Axel Kohlepp via 4D_Tech <4d_tech@lists.4d.com> > wrote: > > Miyako: https://github.com/miyako/4d-tips-custom-url > > mfg > > Axel Kohlepp > > Herr Alexander Heintz via 4D_Tech schrieb: >> Hi

Re: 4D Called from AppleScript

2018-03-06 Thread Axel Kohlepp via 4D_Tech
Miyako: https://github.com/miyako/4d-tips-custom-url mfg Axel Kohlepp Herr Alexander Heintz via 4D_Tech schrieb: Hi Folks, does anyone know, if it is possible to talk to 4D from AppleScript? I have a small application that receives information form a phone system and can launch an AppleScrip

Re: 4D Called from AppleScript

2018-03-06 Thread John Baughman via 4D_Tech
I did a couple of quick google searches and found that AppleScript can send HTTP Get/Post requests, SOAP requests, and SQL requests. 4D can respond/consume any of these. For example google found for "AppleScript Get and Post requests"… https://stackoverflow.com/questions/12678900/can-apple

Re: 4D Called from AppleScript

2018-03-06 Thread Jeremy Roussak via 4D_Tech
Miyako has something that allows 4D to respond to custom URLs. It was mentioned here recently. You might be able to adapt that. Just a thought. Jeremy Jeremy Roussak j...@mac.com > On 6 Mar 2018, at 15:07, Herr Alexander Heintz via 4D_Tech > <4d_tech@lists.4d.com> wrote: > > Hi Folks, >

4D Called from AppleScript

2018-03-06 Thread Herr Alexander Heintz via 4D_Tech
Hi Folks, does anyone know, if it is possible to talk to 4D from AppleScript? I have a small application that receives information form a phone system and can launch an AppleScript. Now I would like this to „talk“ to 4D. Any ideas, is it even possible? Thanks Alex **