Re: Modal stacks cpu usage

2020-10-02 Thread J. Landman Gay via use-livecode
If the Project Browser is open, try closing it. On my Mac, the CPU usage while idle is usually close to 0 when in the background. -- Jacqueline Landman Gay | jac...@hyperactivesw.com HyperActive Software | http://www.hyperactivesw.com On October 2, 2020 7:03:59 PM Neville Smythe via use-livecode

Re: What Causes "##string##"

2020-10-02 Thread Sannyasin Brahmanathaswami via use-livecode
Nope! Does this work? ##string## -- ___ use-livecode mailing list use-livecode@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your subscription preferences: http://lists.runrev.com/mailman/listinfo/use-livecod

Re: Modal stacks cpu usage

2020-10-02 Thread Neville Smythe via use-livecode
Looks like Elanor beat me to it Bug 22929 Neville Smythe ___ use-livecode mailing list use-livecode@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your subscription pref

Re: Modal stacks cpu usage

2020-10-02 Thread Neville Smythe via use-livecode
> Confirmed here on macOS 10.14.5. The CPU load is indeed quite dramatic > with modal dialogs. > > I also checked on Linux (Ubuntu 18.04), and LC does not exhibit the > problem there. Thanks Richard for confirming, and testing on Linux. Yes I will file a bug report. It occurred to me that L

Re: Getting URL to Work in specialFolderDocuments

2020-10-02 Thread Bob Sneidar via use-livecode
You are putting a file from a url into a variable called tLocalDocumentsStories & sStoryTitle & "/" & sStoryTitle & ".livecode”. You should probably have a variable with the full path to the file: put tLocalDocumentsStories & sStoryTitle & "/" & sStoryTitle & ".livecode” into tFilePath Then p

Re: Getting URL to Work in specialFolderDocuments

2020-10-02 Thread Sannyasin Brahmanathaswami via use-livecode
on dataServerStack local tHttpsServerRoot,tLocalDocumentsStories put "https://dev.himalayanacademy.com/media/stories/"; --into tHttpsServerRoot put specialFolderPath("Documents") & "/SivaSivaApp/media/stories/" into tLocalDocumentsStories put URL (tHttpsServerRoot & sStoryTitle & "/" &

Re: What Causes "##string##"

2020-10-02 Thread J. Landman Gay via use-livecode
Does this work? ##string## -- Jacqueline Landman Gay | jac...@hyperactivesw.com HyperActive Software | http://www.hyperactivesw.com On October 2, 2020 12:56:10 PM Sannyasin Brahmanathaswami via use-livecode wrote: Words of Our Master By Siva Yogaswami textAlign does not work it gets 'wiped'

Getting URL to Work in specialFolderDocuments

2020-10-02 Thread Sannyasin Brahmanathaswami via use-livecode
on dataServerStack local tHttpsServerRoot,tLocalDocumentsStories put "https://dev.himalayanacademy.com/media/stories/"; --into tHttpsServerRoot put specialFolderPath("Documents") & "/SivaSivaApp/media/stories/" into tLocalDocumentsStories put URL (tHttpsServerRoot & sStoryTitle & "/" &

Re: What Causes "##string##"

2020-10-02 Thread Sannyasin Brahmanathaswami via use-livecode
Words of Our Master By Siva Yogaswami textAlign does not work it gets 'wiped' clean ??  Devin Asay Probably when the textAlign property of a line is set to “center”? ___ use-livecode mailing list use-livecode@lists.runrev.com Please visit this

Re: What Causes "##string##"

2020-10-02 Thread J. Landman Gay via use-livecode
It looks a little like a place holder for a merge function, only it's missing the square brackets. -- Jacqueline Landman Gay | jac...@hyperactivesw.com HyperActive Software | http://www.hyperactivesw.com On October 2, 2020 10:11:28 AM Sannyasin Brahmanathaswami via use-livecode wrote: When

Re: What Causes "##string##"

2020-10-02 Thread Devin Asay via use-livecode
Probably when the textAlign property of a line is set to “center”? > On Oct 2, 2020, at 9:09 AM, Sannyasin Brahmanathaswami via use-livecode > wrote: > > When setting htmltext? > > BR > > ___ > use-livecode mailing list > use-livecode@lists.runrev

What Causes "##string##"

2020-10-02 Thread Sannyasin Brahmanathaswami via use-livecode
When setting htmltext? BR ___ use-livecode mailing list use-livecode@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your subscription preferences: http://lists.runrev.com/mailman/listinfo/use-livecode

Re: ICS Generation

2020-10-02 Thread Andre Garzia via use-livecode
There is https://github.com/soapdog/livecode-vobjectlib it is fairly easy to use but it is best if you use it while reading the specs because it is a bit low-level. On Fri, 2 Oct 2020 at 01:30, Alex Tweedly via use-livecode < use-livecode@lists.runrev.com> wrote: > > On 02/10/2020 00:11, Bob Snei