Stack References When Fired in Backscripts/Libraries

2017-03-29 Thread Sannyasin Brahmanathaswami via use-livecode
I was (happily) surprised today when in a handler in a library that was put into use on init of the app that a handler in lib_initMyApp.livecodescript # now in the msg hierarchy on bakeBread pDaKin put the name of this stack end bakeBread Then in a top level binary stack name… e.g.

Re: Extra Title Bar in All Stacks

2017-03-29 Thread Sannyasin Brahmanathaswami via use-livecode
"System wide" ?? I tried a dozen different apps, include Apple's own Pages, Numbers and Notes etc. *none* of them respond to cmd-shift-T to make tabbed windows… the only "system-wide" is the Finder. Adding an Apple-Mac Only Finder feature to LC that OS X does not even implement this in it's

Re: Line numbers for soft-wrapped styled text?

2017-03-29 Thread Jim Lambert via use-livecode
Hermann wrote: > In sum I learned very important things in this thread: > Using a styledText array (by Alex Tweedly). > Using liststyles for _any_ field (by Jim Lambert). > You could now think about making a "Sample stack" for that (livecodeshare). > > One thing to remark: > One has to adjust

Quasi Student Secure Web Browser?

2017-03-29 Thread JOHN PATTEN via use-livecode
Hi All, I’m attempting to create a simple secure web browser iOS app for some teachers. I want to prevent any links within an approved site (i.e. “www.approvedsite.com") that link out to others sites from launching. For example, if the "www.approvedsite.com" has a link out to Youtube.com, I

Re: Line numbers for soft-wrapped styled text?

2017-03-29 Thread hh via use-livecode
> Jim L. wrote: > Just set the liststyle of the field that contains your editable text to > ‘decimal’. Then the lines will be automatically numbered and outdented. > Yet conveniently, the ’text’ and the ‘styledtext’ runs will not ‘contain' > the numbering since it is a styling. Now I finally

Re: playing multiple audio files simultaneously

2017-03-29 Thread Ray via use-livecode
I'm also sticking with LC 8.1. I thought there was a stable version of 9 but evidently not yet. On 3/29/2017 4:13 PM, Peter Bogdanoff via use-livecode wrote: Using “wait” is generally not advisable… I just have a list of all players and then give them all a pause command or set their

OT: CurryK Contact Updated

2017-03-29 Thread Curry Kenworthy via use-livecode
Howdy Folks, If you tried to call me recently and didn't get through, it's fixed now! During a family emergency and death, I wasn't able to manage the settings for my phone number (the number that was listed on my web page) and it expired. There was also a technical problem with the first

Re: LiveCode's handling of Unicode glyphs being dependent on the underlying OS

2017-03-29 Thread Sannyasin Brahmanathaswami via use-livecode
Two mangos on these issues from Hawaii. As one of the users of Richmond's program: He and I have been 'at it" for nearly 8 year with his DevaWrite Pro, because the "state of the art" for rendering Sanskrit in the world of fonts is pretty abysmal with respect to some small but mission critical

Re: playing multiple audio files simultaneously

2017-03-29 Thread Peter Bogdanoff via use-livecode
Using “wait” is generally not advisable… I just have a list of all players and then give them all a pause command or set their filenames to empty before playing the new audio. I saw some instability in LC 9 (crashing), so I’m sticking with 8 until those issues are worked out. pb On Mar 29,

Re: playing multiple audio files simultaneously

2017-03-29 Thread Ray via use-livecode
Peter - this is working well now. Thanks for the link, very informative. On 3/29/2017 2:34 PM, Peter Bogdanoff via use-livecode wrote: What I’m doing now is… I’m using the Livecode 8.1 series Converting my QT files to wmv and putting those in the same directory as the QT files Using the

Re: playing multiple audio files simultaneously

2017-03-29 Thread Ray via use-livecode
Thanks Peter - I'll look into 9.0 and see how it works. I can't imagine an improvement in 8.x is not retained in 9.x. To your point, I'm assuming you can't use: wait until sound() = "done" with messages in order to avoid playing sounds simultaneously. Right? On 3/29/2017 2:34 PM,

Re: playing multiple audio files simultaneously

2017-03-29 Thread Peter Bogdanoff via use-livecode
What I’m doing now is… I’m using the Livecode 8.1 series Converting my QT files to wmv and putting those in the same directory as the QT files Using the platform property to detect the user’s OS Setting the file suffix to .mov or .wmv depending on that result It works well. My issue is wanting

Re: Line numbers for soft-wrapped styled text?

2017-03-29 Thread Jim Lambert via use-livecode
Richard wrote: > This morning Jim Lambert emailed me a very different solution that I > thought would be worth sharing here. > > Here he uses the engine's own metrics for calculating vertical line > spacings, by having the number field placed below the editable text > field, setting its width

Re: playing multiple audio files simultaneously

2017-03-29 Thread Ray via use-livecode
Yes - 7.7.9. I re-installed Quicktime and got it working, playing sounds simultaneously, but I'm still somewhat apprehensive since Quicktime has been discontinued for so long now. Do you know of anything else Peter or are we pretty much resigned to Quicktime on the desktop for simultaneous

Re: playing multiple audio files simultaneously

2017-03-29 Thread Peter Bogdanoff via use-livecode
You do have QuickTime installed on your Windows machine? …if you are trying to play a QT file. Peter On Mar 29, 2017, at 10:40 AM, Ray via use-livecode wrote: > I've lo0oked into playing multiple audio files simultaneously, for Windows > and Mac desktops, and

playing multiple audio files simultaneously

2017-03-29 Thread Ray via use-livecode
I've lo0oked into playing multiple audio files simultaneously, for Windows and Mac desktops, and come up with nothing but issues. Using a player object on my Windows 8.1 system, LC 7.1.1, I get an error of "could not open that video". Even if it worked I understand there are latency issues as

Re: Object Selection Handles

2017-03-29 Thread Bob Sneidar via use-livecode
Actually, I really appreciate Adobe Illustrator's object properties dialog. Sometimes I LIKE being able to define an object's dimensions by typing in coordinates. CAD designers do this all the time. Of course, advanced features like snap to point make this mostly obsolete, but if you need a

Re: specialFolderPath("resources") on Mac with trailing slash

2017-03-29 Thread Richard Gaskin via use-livecode
panagiotis wrote: > On Wed, Mar 29, 2017 at 9:43 AM, Tiemo Hollmann TB wrote: > >> LC 8.1.3: getting the specialFolderPath("resources") comes on Mac & >> Win without trailing slash. >> >> On Win I also don't get a trailing slash in a standalone. >> >> BUT in a MacOS 10.12 standalone I get a

Re: Line numbers for soft-wrapped styled text?

2017-03-29 Thread hh via use-livecode
Alex, before you waste valuable time: The formattedRect can NOT be used in LC 7/8/9, because of the (2^15 div 2)-limit for coordinates is active for that. So the algorithm works in LC 6.7.11, but the results are sadly 'extremely' wrong in LC 7/8/9: Crossing the 'limit' with a vertical coordinate

AW: specialFolderPath("resources") on Mac with trailing slash

2017-03-29 Thread Tiemo Hollmann TB via use-livecode
Thanks for the quick answer :) Tiemo -Ursprüngliche Nachricht- Von: use-livecode [mailto:use-livecode-boun...@lists.runrev.com] Im Auftrag von panagiotis merakos via use-livecode Gesendet: Mittwoch, 29. März 2017 10:49 An: How to use LiveCode Cc: panagiotis

Re: specialFolderPath("resources") on Mac with trailing slash

2017-03-29 Thread panagiotis merakos via use-livecode
Hi Tiemo, This is a bug, which will be fixed in LiveCode 8.1.4 RC-1: http://quality.livecode.com/show_bug.cgi?id=18619 Best, Panos -- On Wed, Mar 29, 2017 at 9:43 AM, Tiemo Hollmann TB via use-livecode < use-livecode@lists.runrev.com> wrote: > Hello, > > LC 8.1.3: getting the

specialFolderPath("resources") on Mac with trailing slash

2017-03-29 Thread Tiemo Hollmann TB via use-livecode
Hello, LC 8.1.3: getting the specialFolderPath("resources") comes on Mac & Win without trailing slash. On Win I also don't get a trailing slash in a standalone. BUT in a MacOS 10.12 standalone I get a trailing slash! Is this a wanted "feature" which I have to script around, or is this a bug I