Re: macOS, is my app active?

2019-11-25 Thread scott--- via use-livecode
It does work nicely from the IDE but as Trevor noted, the downside to using AppleScript in this case is that under newer version of OSX your compiled app will trigger a (one time) dialog asking to grant access to control “System Events.app” — Scott Morrow > On Nov 25, 2019, at 8:46 AM, Bob

Re: iOS simulator not responding

2019-11-25 Thread J. Landman Gay via use-livecode
Thanks Panos. Resetting didn't work, so now I'm wondering if it is something about my LC native fields. The first thing the user needs to do is log in, and I can't test beyond that until I can enter credentials. There are two native fields, both are transparent. Would transparency in iOS

Re: iOS simulator not responding

2019-11-25 Thread panagiotis merakos via use-livecode
Hello Jacque, So the iOS standalone is installed to the iOS simulator, but the simulator does not respond to clicks / keyboard entry? I am on Mojave as well, but have not seen that happening. Maybe it is worth resetting the simulator state: Quit any instances of Xcode and iOS simulator, and

Re: How do I select graphics that are on top of each other with mousedown?

2019-11-25 Thread dunbarx--- via use-livecode
The "mouseControl" is very straightforward. The "target" would work just as well. In the card script: on mouseUp  answer the targetend mouseUp But for a line graphic, you must click right on the line, or the function will not work. In other words, the extent of each graphic is the same, but

Re: WebP-Tool v103

2019-11-25 Thread Andrew Bell via use-livecode
"2. have more images that fit the package -- last time I check it was 100MB, for iOS." I assume you are referring to the maximum app size when downloading from the App Store, in which case that limit has been removed with iOS 13.

Re: How do I select graphics that are on top of each other with mousedown?

2019-11-25 Thread William de Smet via use-livecode
Hi there, "pointInShape" looks very interesting, Too much for now. MouseControl does the job. Thanks! groeten, William Op ma 25 nov. 2019 om 19:45 schreef hh via use-livecode < use-livecode@lists.runrev.com>: > Yet another option is to use the technique from "pointInShape": >

Re: How do I select graphics that are on top of each other with mousedown?

2019-11-25 Thread William de Smet via use-livecode
Hi Peter, MouseControl works fine. Thanks. greetings, William Op ma 25 nov. 2019 om 19:31 schreef Peter Bogdanoff via use-livecode < use-livecode@lists.runrev.com>: > William, > > You could try working with the mouseControl. > > Peter > > > On Nov 25, 2019, at 10:19 AM, William de Smet

Re: Identifying Un-used functions and commands

2019-11-25 Thread dunbarx--- via use-livecode
Jacque, Ah. You may be right. So, Steve, which way, or do you need both? The methodology is basically the same. Craig -Original Message- From: J. Landman Gay via use-livecode To: How to use LiveCode Cc: J. Landman Gay Sent: Mon, Nov 25, 2019 1:09 pm Subject: Re: Identifying Un-used

iOS simulator not responding

2019-11-25 Thread J. Landman Gay via use-livecode
When I run a test on the iOS simulator, it will not respond to either clicks/taps or keyboard entry. Basically, it's inert. I've tried several different hardware devices, all with the same results. A Google search seems to show that this is a bug in the simulator when running under Mojave,

Re: How do I select graphics that are on top of each other with mousedown?

2019-11-25 Thread Pi Digital via use-livecode
Put each one in a group control that extends one to the left and the other to the right Sean Cole Pi Digital Prod Ltd > On 25 Nov 2019, at 18:19, William de Smet via use-livecode > wrote: > > Hi there, > > I have to square graphics (line style) on top of each other. > They have the same

Re: How do I select graphics that are on top of each other with mousedown?

2019-11-25 Thread hh via use-livecode
Yet another option is to use the technique from "pointInShape": http://forums.livecode.com/viewtopic.php?p=129274#p129274 ___ use-livecode mailing list use-livecode@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your

Re: How do I select graphics that are on top of each other with mousedown?

2019-11-25 Thread Peter Bogdanoff via use-livecode
William, You could try working with the mouseControl. Peter > On Nov 25, 2019, at 10:19 AM, William de Smet via use-livecode > wrote: > > Hi there, > > I have to square graphics (line style) on top of each other. > They have the same width and height and form a letter X. > > How do I

Re: Identifying Un-used functions and commands

2019-11-25 Thread Paul Dupuis via use-livecode
revRefactor has a very nice "orphan Code..." feature https://github.com/mwieder/revRefactor/tree/master/Plugin On 11/25/2019 1:08 PM, J. Landman Gay via use-livecode wrote: I think he wants it the other way around, identifying handlers and functions that aren't called by any other handler.

How do I select graphics that are on top of each other with mousedown?

2019-11-25 Thread William de Smet via use-livecode
Hi there, I have to square graphics (line style) on top of each other. They have the same width and height and form a letter X. How do I select the different graphics? Mousedown, MouseLoc and points of graphic? Any pointers are welcome. greetings, William

Re: Push notification to all user

2019-11-25 Thread JJS via use-livecode
It's Googles Firebase. firebase.google.com Op 25-11-2019 om 18:19 schreef Bob Sneidar via use-livecode: What is FCM? Bob S On Nov 14, 2019, at 10:24 , JJS via use-livecode wrote: You need to use FCM ___ use-livecode mailing list

Re: Identifying Un-used functions and commands

2019-11-25 Thread J. Landman Gay via use-livecode
I think he wants it the other way around, identifying handlers and functions that aren't called by any other handler. I've done this, but only one at a time, by searching for the handler name across all open stacks. If the only occurrence is the handler itself ("on/function whatever", ) then

Re: DocuSign lib

2019-11-25 Thread Sean Cole (Pi) via use-livecode
It wasn't designed to be for use on mobile but it would. In fact, all it does is generate the document as a pdf with special references in the eSign APIs which get replaced with Signature boxes, etc. These then get emailed via our app and AdobeSign to the customer who signs it within the eSign

Re: Identifying Un-used functions and commands

2019-11-25 Thread dunbarx--- via use-livecode
Hi. This was posted a couple of weeks ago, no? I suggested then that you could write a short handler that loops through all the scripts in all the controls on all the cards, and isolate words that are not preceded by either "command", "on" or "function". In this way you might see, for example,

Re: Mobile development android vs ios

2019-11-25 Thread Bob Sneidar via use-livecode
I'm still working on my first time flawless build! :-) Bob S > On Nov 9, 2019, at 16:32 , Tom Glod via use-livecode > wrote: > > I don't expect 100% first time flawlessness. But is there anything I > should keep in mind as I do this? ___

Re: DocuSign lib

2019-11-25 Thread Bob Sneidar via use-livecode
Oh brilliant! We have a need for eSigned documents in locations where for one reason or other we do not have access to any of their printing devices. Also none of our service technicians (as opposed to IT technicians) connect to our customer's networks, and an eSign solution on tablets would be

Re: DocuSign lib

2019-11-25 Thread Pi Digital via use-livecode
I know. That’s what I’m writing the library for :) It’s a way of getting pdf documents signed via email. Our clients use Adobe Sign currently but it’s stupid expensive in comparison to others out there. So we’re giving our clients more options. Sean Cole Pi Digital Prod Ltd > On 25 Nov 2019,

Re: Identifying Un-used functions and commands

2019-11-25 Thread Bob Sneidar via use-livecode
Since there is code in the script editor that knows the location of any command or function you right click on, if you found out how they do that, you would be well on your way to developing a way to grok it. Also, GLX2 has a "clairvoyance" (Auto-Complete) function that is handler aware. I

Re: Push notification to all user

2019-11-25 Thread Bob Sneidar via use-livecode
What is FCM? Bob S > On Nov 14, 2019, at 10:24 , JJS via use-livecode > wrote: > > You need to use FCM ___ use-livecode mailing list use-livecode@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your subscription

Re: macOS, is my app active?

2019-11-25 Thread Bob Sneidar via use-livecode
on mouseUp put "tell application " & quote & "System Events" & quote & cr after tApplescript put "set activeApp to name of first application process whose frontmost is true" & cr after tApplescript put "return activeApp" & cr after tApplescript put "end tell" & cr after tApplescript

[ANN] This Week in LiveCode 203

2019-11-25 Thread panagiotis merakos via use-livecode
Hi all, Read about new developments in LiveCode open source and the open source community in today's edition of the "This Week in LiveCode" newsletter! Read issue #203 here: http://bit.ly/2OHOI2X This is a weekly newsletter about LiveCode, focussing on what's been going on in and around

Re: DocuSign lib

2019-11-25 Thread Bob Sneidar via use-livecode
Just be aware there is an actual product called DocuSign. Bob S > On Nov 24, 2019, at 11:59 , Pi Digital via use-livecode > wrote: > > Before I plough on, has anyone else created a DocuSign library for LiveCode? > I don’t want to reinvent the wheelie-bin. > > We’d already made one for