Re: LiveCode Server

2019-10-18 Thread Todd Fabacher via use-livecode
GOOD NEWS - Got it to work. Someone should take note an issue with Apache 2 and LiveCode server SetEnvIf Authorization "(.*)" HTTP_AUTHORIZATION=$1 For Linux in /etc/apache2/apache2.conf For Mac (using Homebrew) in /usr/local/etc/httpd/httpd.conf Adding this to .htaccess didn't work for some re

iOS 13.1.3 - Catelina

2019-10-18 Thread Sannyasin Brahmanathaswami via use-livecode
We are in software no-man's land… the last three days, mired in technical mud 1. Play beachball with Adobe InDesign (app hangs on every 10 key strokes, and you move to a new tool) Spent 2 hour screen sharing with a very savvy lad in New Delhi. No Go 2. iPhone pestering for an upgrade. I fi

Re: Is there a command to display number of seconds as hrs:min:seconds?

2019-10-18 Thread Stephen Barncard via use-livecode
(Ice cream cone hits forehead) -- Stephen Barncard - Sebastopol Ca. USA - mixstream.org On Fri, Oct 18, 2019 at 2:24 PM JB via use-livecode < use-livecode@lists.runrev.com> wrote: > Here is a terminal example; > > on mouseUp > put shell( "date" ) into tData > answer question tData > end mous

Re: Is there a command to display number of seconds as hrs:min:seconds?

2019-10-18 Thread JB via use-livecode
Here is a terminal example; on mouseUp put shell( "date" ) into tData answer question tData end mouseUp JB > On Oct 18, 2019, at 11:12 AM, Tom Glod via use-livecode > wrote: > > Let me throw my hat into the ring here...lolI wrote this function to > display time in a specific format >

Re: Is there a command to display number of seconds as hrs:min:seconds?

2019-10-18 Thread Tom Glod via use-livecode
Let me throw my hat into the ring here...lolI wrote this function to display time in a specific format function TimeDisplay HowManySeconds local final_output = " days ::" local running_second_count local next_calculation set itemdelimiter to "." -- we are looking at boths sides

Re: Is there a command to display number of seconds as hrs:min:seconds?

2019-10-18 Thread Dar Scott Consulting via use-livecode
I would +1 a deltaTime format, but we might not agree on hours over 24 and fractions of a second. > On Oct 17, 2019, at 10:25 PM, Bill Vlahos via use-livecode > wrote: > > All great suggestions. > > I mostly wanted to see if there already was such a function - which there > obviously isn’t.