Re: SHELL command works in Terminal but not via SHELL in LC

2020-06-03 Thread Mark Wieder via use-livecode
On 6/3/20 4:26 AM, Ludovic THEBAULT via use-livecode wrote: Yes, you need to set the PATH like : if "/usr/local/bin" is not in $PATH then put "/usr/local/bin:" before $PATH But with the path of ffmepg. Or be explicit in the commandline if you don't want to change the PATH (watch the

Re: iOS builds ignore taps

2020-06-03 Thread J. Landman Gay via use-livecode
That's exactly what I saw. I changed the script of a completely unrelated control elsewhere and the login graphic started working again. I wish I'd saved the bad stack to send to the team. -- Jacqueline Landman Gay | jac...@hyperactivesw.com HyperActive Software | http://www.hyperactivesw.com

Re: SHELL command works in Terminal but not via SHELL in LC

2020-06-03 Thread Klaus major-k via use-livecode
Hi Mark and Ludovic, thank you, will pass this info to my customer! > Yes - when you launch an app from Finder it has a minimal set of environment > variables. > > Moreover, Terminal will run scripts when a session is started which can add > to them (I suspect homebrew adds something to

Re: SHELL command works in Terminal but not via SHELL in LC

2020-06-03 Thread Ludovic THEBAULT via use-livecode
> Le 3 juin 2020 à 13:13, Klaus major-k via use-livecode > a écrit : > > Hi friends, > > maybe someone has a brilliant hint for me! :-) > > A customer of mine has installed ffmpeg on his mac via Terminal: > 1. google: homebrew > 2. terminal: brew install ffmpeg > or whatever the command

Re: SHELL command works in Terminal but not via SHELL in LC

2020-06-03 Thread Mark Waddingham via use-livecode
On 2020-06-03 12:13, Klaus major-k via use-livecode wrote: However if he fires this in LC: on mouseUp put shell("ffmpeg -i Desktop/ffmpegMac/TiffSequence/Test_%5d.tif test3.mp4") end mouseUp He gets: /bin/sh: line 1: ffmpeg: command not found But this is working in the Terminal!? What is

SHELL command works in Terminal but not via SHELL in LC

2020-06-03 Thread Klaus major-k via use-livecode
Hi friends, maybe someone has a brilliant hint for me! :-) A customer of mine has installed ffmpeg on his mac via Terminal: 1. google: homebrew 2. terminal: brew install ffmpeg or whatever the command were... Now ffmpeg is available on his Mac and something like: ffmpeg -i

Re: iOS builds ignore taps

2020-06-03 Thread scott--- via use-livecode
I have run into that same scenario more than once. In most cases, over time as I continue to change things, these situations resolve themselves so that toggling acceleratedRendering is no longer needed. But what exactly changed is a mystery :- ) > On Jun 2, 2020, at 10:46 PM, J. Landman Gay