Re: Converting from unicode to ASCII

2020-09-26 Thread J. Landman Gay via use-livecode
On 9/24/20 12:09 PM, J. Landman Gay via use-livecode wrote: My original goal was to get the canonical version directly from LC somehow. Neville Smythe contacted me privately with this brilliant solution, posted here with his consent: function stripAccents pInput local tDecomposed local

Re: I Have a Problem With a Plug-In

2020-09-26 Thread J. Landman Gay via use-livecode
Click the Messages icon in the toolbar. That will prevent the handler from running when the stack opens and you can delete the line in the script. -- Jacqueline Landman Gay | jac...@hyperactivesw.com HyperActive Software | http://www.hyperactivesw.com On September 26, 2020 9:06:33 AM Sannyasin

Re: Accessing files on a local network file server - BEST PRACTICE?

2020-09-25 Thread J. Landman Gay via use-livecode
I know very little about Windows network addresses, but from the example you gave, I'd check to see if (slash-delimited) item 1 of the path is a single letter followed by a colon. On 9/24/20 3:53 PM, Paul Dupuis via use-livecode wrote: This question may have an obvious answer, but I am brain

Re: Some problems with an old stack that gets regular updates

2020-09-24 Thread J. Landman Gay via use-livecode
en without the sub tack i do not get Remote Debugger working. - Matthias Rebbe Life Is Too Short For Boring Code Am 24.09.2020 um 18:12 schrieb J. Landman Gay via use-livecode : I haven't had the internet problem but I went a whole year once where I couldn't get remote debugging to work. I

Re: Converting from unicode to ASCII

2020-09-24 Thread J. Landman Gay via use-livecode
said earlier you don't have a field in the database for the file name. But does the database table have a unique numerical ID field for each record? If so, could you strip out the non-ASCII characters and then append the numerical ID to the file name? On 23 Sep 2020, at 20:59, J. Landman Gay

Re: Converting from unicode to ASCII

2020-09-24 Thread J. Landman Gay via use-livecode
earlier you don't have a field in the database for the file name. But does the database table have a unique numerical ID field for each record? If so, could you strip out the non-ASCII characters and then append the numerical ID to the file name? On 23 Sep 2020, at 20:59, J. Landman Gay via use

Re: Some problems with an old stack that gets regular updates

2020-09-24 Thread J. Landman Gay via use-livecode
I haven't had the internet problem but I went a whole year once where I couldn't get remote debugging to work. I never did figure out why. Then it started to work again by itself. I never thought to check the stack file version. You could Save As with the latest LC version and see if that

Re: Converting from unicode to ASCII

2020-09-24 Thread J. Landman Gay via use-livecode
It's all automated already except for the uploading. The file organization on AWS is complex and the stacks don't all go in the same place. -- Jacqueline Landman Gay | jac...@hyperactivesw.com HyperActive Software | http://www.hyperactivesw.com On September 23, 2020 4:53:36 PM Richard Gaskin

Re: Converting from unicode to ASCII

2020-09-23 Thread J. Landman Gay via use-livecode
Heh. Now you understand why I didn't want another lookup table. :) -- Jacqueline Landman Gay | jac...@hyperactivesw.com HyperActive Software | http://www.hyperactivesw.com On September 23, 2020 5:27:06 PM Mark Wieder via use-livecode wrote: On 9/22/20 11:10 PM, J. Landman Gay via use

Re: Converting from unicode to ASCII

2020-09-23 Thread J. Landman Gay via use-livecode
On 9/23/20 1:26 PM, Richard Gaskin via use-livecode wrote: My only suggestion was to change how the existing munger works to satisfy the two problem areas identified: that names not be too long, and that any munger not remove so many characters as to make the file name non-unique or empty.

Re: Converting from unicode to ASCII

2020-09-23 Thread J. Landman Gay via use-livecode
On 9/23/20 1:47 PM, Richard Gaskin via use-livecode wrote: But so far I haven't read anything requiring this to work in both directions.  Did I miss something?  Does she also rely on an unmunger function? No, you're correct, I only need the conversion to go one-way. The cron job creates

Re: Converting from unicode to ASCII

2020-09-23 Thread J. Landman Gay via use-livecode
On 9/22/20 10:42 PM, Mark Wieder via use-livecode wrote: On 9/22/20 7:58 PM, J. Landman Gay via use-livecode wrote: Is this just a temporary filename (not long-term storage)? No, the stacks are uploaded to AWS and remain there, retrieved from the server on request. There are currently

Re: Converting from unicode to ASCII

2020-09-22 Thread J. Landman Gay via use-livecode
Combining responses: "NormalizeText" always returns unicode for all four of its variations, so no go. And as Paul pointed out, if the language is Chinese, deleting all non-ascii characters would leave nothing. On the other hand, we are only converting to Roman languages right now, so this

Converting from unicode to ASCII

2020-09-22 Thread J. Landman Gay via use-livecode
I have a stack with an index. When a user clicks a line, a handler uses the clicktext to create a file name which is always the clicktext plus the ".livecode" extension. The stack is then downloaded from an AWS server and displayed. We are now translating some stacks to other languages which

Re: Updating a menubar button on Mac

2020-09-21 Thread J. Landman Gay via use-livecode
When the menu is placed into the system menu on Macs the buttons no longer receive messages but the group does, so update everything at once on mouseDown in the group script. -- Jacqueline Landman Gay | jac...@hyperactivesw.com HyperActive Software | http://www.hyperactivesw.com On September

Re: HOw to get htmltext from the field to display in another field

2020-09-20 Thread J. Landman Gay via use-livecode
On 9/20/20 3:20 PM, Mark Wieder via use-livecode wrote: On 9/20/20 1:10 PM, J. Landman Gay via use-livecode wrote: As an aside, I first thought that this would work:    if the htmltext of field "mainText" <> the text of field "mainText" then -- plain text is in the

Re: Mouse messages in scrollers

2020-09-20 Thread J. Landman Gay via use-livecode
Scott, did you ever figure this out? When are you capturing the mouse locations? If I remember right, they are accurate if you store them on mouseDown. I meant to reply sooner but the email got lost in a barrage for a while. On 9/15/20 8:30 PM, scott--- via use-livecode wrote: on mobile

Re: HOw to get htmltext from the field to display in another field

2020-09-20 Thread J. Landman Gay via use-livecode
On 9/20/20 10:55 AM, Mark Wieder via use-livecode wrote: On 9/20/20 7:28 AM, Sannyasin Brahmanathaswami via use-livecode wrote: Eureka! So easy, now to get back to the htmlText as per the code if the htmlText of field "mainText"  then    put the htmlText of field "mainText" into field

Re: HOw to get htmltext from the field to display in another field

2020-09-20 Thread J. Landman Gay via use-livecode
On 9/20/20 9:28 AM, Sannyasin Brahmanathaswami via use-livecode wrote: Eureka! So easy, now to get back to the htmlText as per the code if the htmlText of field "mainText" then put the htmlText of field "mainText" into field "mainText" else set the htmlText of field

Re: THIS group

2020-09-14 Thread J. Landman Gay via use-livecode
I see how it could work if a child control referenced "this group" but what should happen if: You type "the name of this group" into the message box? The child control is in a nested group? On 9/14/20 1:18 PM, Ralph DiMola via use-livecode wrote: I can see why the mother ship does not like

Re: ANN: Zygodact 2.0.1 update available

2020-09-05 Thread J. Landman Gay via use-livecode
preferences dialog I have ever seen. You should patent this. Martin On Sep 4, 2020, at 3:23 PM, J. Landman Gay via use-livecode wrote: Zygodact is an easy way to add serial key registration to standalones. Version 2.0.1 is now available at no cost to currently registered users. There are many

ANN: Zygodact 2.0.1 update available

2020-09-04 Thread J. Landman Gay via use-livecode
Zygodact is an easy way to add serial key registration to standalones. Version 2.0.1 is now available at no cost to currently registered users. There are many new features, so please read the revised documentation included with the download. Also, the most annoying bug has been fixed, and now

RE: Cross Platform Font Layout - current workarounds

2020-08-26 Thread J. Landman Gay via use-livecode
The problem was the lack of any mouseUp message at all when swiping horizontally, making it impossible to swipe for navigation over a scroller. We used a kludgy workaround, but the problem has been fixed now, so the next update can be completely cross platform without any diversions. --

Re: Cross Platform Font Layout - current workarounds

2020-08-26 Thread J. Landman Gay via use-livecode
On August 25, 2020 7:47:00 PM "Sean Cole \(Pi\) via use-livecode" wrote: The projects deadline was Monday morning, which was completed. It doesn't take away from the fact that next time I will face it all again because LC won't fix the fundamentals. They don't live up to their promises.

Re: Cross Platform Font Layout

2020-08-25 Thread J. Landman Gay via use-livecode
Kudos also to Mark Waddingham who calmly delivered supportive info in an even response, even after reading for days how he and the team are liars, incompetents, and cheats. On 8/25/20 2:59 PM, Richmond via use-livecode wrote: This sort of stuff will NOT help you at all; it appears intemperate

Re: Cross Platform Font Layout - current workarounds

2020-08-24 Thread J. Landman Gay via use-livecode
On August 24, 2020 5:01:54 PM "Sean Cole \(Pi\) via use-livecode" wrote: The font IS embedded. Not a problem using the font itself. It is the same physical font on the two platforms. That's not what I'm asking when you read past paragraph one. HowTF do you get them to show up in the same

Re: Layers in PBrowser

2020-08-14 Thread J. Landman Gay via use-livecode
On August 14, 2020 8:10:59 PM "Sean Cole \(Pi\) via use-livecode" wrote: Oh, just to summarize the issue: https://quality.livecode.com/buglist.cgi?quicksearch=lcfm I'd hardly call 16 bugs "abandonware". They've fixed far more than that. LCFM is important. I know you don't believe it, but

Re: iOS 12 and browser widget

2020-08-14 Thread J. Landman Gay via use-livecode
On 8/14/20 3:01 PM, Ralph DiMola via use-livecode wrote: On some but not all iOS 12 devices you must load local html files from the temp folder. I went around this with Panos for a week before he figured this out. See QCC 22816https://quality.livecode.com/show_bug.cgi?id=22816 Oh wow. That's

Re: ProtonMail vs Apple

2020-08-14 Thread J. Landman Gay via use-livecode
On 8/14/20 9:46 AM, Sean Cole (Pi) via use-livecode wrote: It's all a pointless debate. Apple can do what it likes with THEIR *platform*! if YOU_choose_ not to agree with their policies for use on THEIR platform, YOU can_choose_ to go elsewhere. We can't all choose. Remember Mylan, the drug

iOS 12 and browser widget

2020-08-14 Thread J. Landman Gay via use-livecode
I have a browser widget that loads content from the local drive on iOS devices. It works fine with iOS 13 but fails on iOS 12. The app was built with LC 9.6.1 rc 2. I know webkit was changed since we last built a year ago, but shouldn't it still work with iOS 12? When it fails, the browser

Re: Layers in PBrowser

2020-08-12 Thread J. Landman Gay via use-livecode
into place is just damned ridiculous. More to the point, that NO ONE HAS FIXED IT IN 6 YEARS!! FFS! Sean Cole *Pi Digital * On Wed, 12 Aug 2020 at 20:57, J. Landman Gay via use-livecode < use-livecode@lists.runrev.com> wrote: Double-click the control with the edit tool. Go to the Position pane

Re: Layers in PBrowser

2020-08-12 Thread J. Landman Gay via use-livecode
to the point, that NO ONE HAS FIXED IT IN 6 YEARS!! FFS! Sean Cole *Pi Digital * On Wed, 12 Aug 2020 at 20:57, J. Landman Gay via use-livecode < use-livecode@lists.runrev.com> wrote: Double-click the control with the edit tool. Go to the Position pane. Type in the layer number. I don

Re: Layers in PBrowser

2020-08-12 Thread J. Landman Gay via use-livecode
Double-click the control with the edit tool. Go to the Position pane. Type in the layer number. I don't use the Project Browser much. I have no issues with the Application Browser, except that it needs a manual refresh occasionally. Changing layers requires that. To manually refresh the card

Re: Building a Windows standalone without tsNet?

2020-08-12 Thread J. Landman Gay via use-livecode
Did you try just removing the external and library from the standalone inclusions? In standalone settings, General pane, choose "Select inclusions for the standalone application". In the Inclusions pane, uncheck TSNet and Internet Library. On 8/12/20 12:21 PM, matthias rebbe via

Re: ProtonMail vs Apple

2020-08-10 Thread J. Landman Gay via use-livecode
Auto-complete made me do it. -- Jacqueline Landman Gay | jac...@hyperactivesw.com HyperActive Software | http://www.hyperactivesw.com On August 10, 2020 5:35:40 PM Mark Wieder via use-livecode wrote: On 8/10/20 2:43 PM, J. Landman Gay via use-livecode wrote: I forgot we had a lawyer in our

Re: ProtonMail vs Apple

2020-08-10 Thread J. Landman Gay via use-livecode
I forgot we had a lawyer in our midst. So is Apple a monopoly in the legal sense? On 8/10/20 3:45 PM, doc hawk via use-livecode wrote: Jerry jesticulated, Are you sure? The W12 used in some Bentleys is made by VW, and many years of Phantoms used a V12 of the proper displacement. Of

Re: ProtonMail vs Apple

2020-08-08 Thread J. Landman Gay via use-livecode
This: "PC and Mac users have assumed for decades that they could choose whatever they wanted to see, hear, and play on their own computers. But with iOS, Apple tried to avoid surrendering that level of openness, at least for content viewed through native apps." -- Jacqueline Landman Gay |

Re: ProtonMail vs Apple

2020-08-07 Thread J. Landman Gay via use-livecode
ifficult. > I'm for a safe store too. But this is grabbing money from wherever they > can. > > Op do 6 aug. 2020 om 20:53 schreef J. Landman Gay via use-livecode < > use-livecode@lists.runrev.com>: > > > I've been working on mobile apps for a non-profit pu

Re: ProtonMail vs Apple

2020-08-06 Thread J. Landman Gay via use-livecode
I've been working on mobile apps for a non-profit publishing house. Their customers are large organizations that buy products in bulk and then resell to their own customers. Thus, the app does not sell to users at all, nor does our client. I made a minor mistake in one of my progress spinners;

Re: Odd Files in an Android apk

2020-08-04 Thread J. Landman Gay via use-livecode
a reduction of a few MB (which was nice!) but nothing like what you got. — Scott Morrow On Aug 4, 2020, at 3:42 PM, J. Landman Gay via use-livecode wrote: Wow. I just built an update to an Android app with LC 9.6.1rc2 and the size went from 47MB to 21MB. Nice. On 8/2/20 11:51 PM, panagiotis

Re: Has anyone created a specialised mobile keyboard?

2020-08-04 Thread J. Landman Gay via use-livecode
On 8/4/20 3:57 PM, Graham Samuel via use-livecode wrote: What I want to do is to design my own keyboard with numerals and a few additional special symbols, but I don’t know if it’s possible to do in native mode, as it were. You have to write keyboards in Swift or Kotlin or whatever language

Re: Odd Files in an Android apk

2020-08-04 Thread J. Landman Gay via use-livecode
Wow. I just built an update to an Android app with LC 9.6.1rc2 and the size went from 47MB to 21MB. Nice. On 8/2/20 11:51 PM, panagiotis merakos via use-livecode wrote: Hello Dan, This bug was fixed for 9.6.0, but (accidentally) it did not make it into 9.6.1 rc-1. It will be fixed in 9.6.1

Re: Google Play SDK problem

2020-07-30 Thread J. Landman Gay via use-livecode
I've never seen that. Did you accidentally tick the ads checkbox in standalone settings? -- Jacqueline Landman Gay | jac...@hyperactivesw.com HyperActive Software | http://www.hyperactivesw.com On July 30, 2020 12:29:00 AM scott--- via use-livecode wrote: I have an app (Windows, Mac, iOS

Re: Help me understand infinity

2020-07-29 Thread J. Landman Gay via use-livecode
The bug list is infinite, ergo, all others are secondary to this one. ;) -- Jacqueline Landman Gay | jac...@hyperactivesw.com HyperActive Software | http://www.hyperactivesw.com On July 29, 2020 6:13:39 PM Mark Wieder via use-livecode wrote: On 7/29/20 3:17 PM, Ali Lloyd via use-livecode

Re: Is "import snapshot" without parameters broken?

2020-07-24 Thread J. Landman Gay via use-livecode
On 7/24/20 5:31 PM, matthias rebbe via use-livecode wrote: Hi, today i've tried to do a screen capture using "import snapshot", but without parameter. Livecode displays a crosshairs cursor, but i am not able to select an area with the mouse. Liveconde freezes then in some way and i have to

Re: Wrapping Text

2020-07-22 Thread J. Landman Gay via use-livecode
Right, removing characters from the end until it fits is the only way I know of. It's faster if you use the templateField and measureText. -- Jacqueline Landman Gay | jac...@hyperactivesw.com HyperActive Software | http://www.hyperactivesw.com On July 22, 2020 8:36:59 AM Terry Heaford via

Re: Browser widget scrolling

2020-07-21 Thread J. Landman Gay via use-livecode
On 7/21/20 1:39 AM, Terence Heaford via use-livecode wrote: On 20 Jul 2020, at 21:06, J. Landman Gay via use-livecode wrote: I'm not sure if this is a bug or a feature. It also seems to happen when the widget is empty? Sounds like a bug report is in order. If there is a property

Re: Browser widget scrolling

2020-07-20 Thread J. Landman Gay via use-livecode
On 7/20/20 7:43 AM, Terence Heaford via use-livecode wrote: This does not appear to work: set the hScrollbar of widget “myBrowser" to false The scrollbar becomes visible when you drag resize a window. I was expecting there to ne no scrollbar at all. Also the checkboxes in the properties

Re: Styled text on mobile

2020-07-18 Thread J. Landman Gay via use-livecode
It's possible. For a LiveCode field, note that the font has to have a font variant for each style. Some time ago LC stopped supporting artificially altered font styles. The native system font on each mobile OS supports all styles. Or do you mean something else? -- Jacqueline Landman Gay |

Re: Congrats to everyone on success of the Covid-19 -- LiveCode Impact Fund Campaign.

2020-07-17 Thread J. Landman Gay via use-livecode
On 7/17/20 2:40 PM, Martin Koob via use-livecode wrote: I hadn’t heard of ‘campaign snipers’ but it sounded like a thing I suspect it was a pun or a reference to eBay sniping. That's when bidders wait until the very last second of an auction and then swoop in with a higher price in order to

Push notifications

2020-07-17 Thread J. Landman Gay via use-livecode
How come we're still getting this warning when submitting to the App Store: ITMS-90078: Missing Push Notification Entitlement The app does not use notifications. I know it's just a warning, but the client gets a copy of Apple's email and they get concerned. -- Jacqueline Landman Gay

RE: [off-topic-ish] do you prefer LC-related content as books or video courses?

2020-07-07 Thread J. Landman Gay via use-livecode
IT Director Evergreen Information Services rdim...@evergreeninfo.net -Original Message- From: use-livecode [mailto:use-livecode-boun...@lists.runrev.com] On Behalf Of J. Landman Gay via use-livecode Books. I read much faster than video playback, and a book allows me to skip around easily

Re: [off-topic-ish] do you prefer LC-related content as books or video courses?

2020-07-07 Thread J. Landman Gay via use-livecode
Books. I read much faster than video playback, and a book allows me to skip around easily and look up topics of interest. I rarely have time to sit through a whole video unless it's very short. Books hold my interest better. I think younger people are used to receiving information differently.

Re: Mobile Keyboard

2020-07-06 Thread J. Landman Gay via use-livecode
-livecode wrote: By the way, this has worked for me, tested on iOS: on preopenstack do_stuff send "hideMobileKeyword" to me in 100 millisec end preopenstack on hideMobileKeyword focus on nothing end hideMobileKeyword Kind regards, Panos -- On Wed, 24 Jun 2020 at 21:40, J. Landm

Re: Message watcher and selectionChanged

2020-07-06 Thread J. Landman Gay via use-livecode
On 7/6/20 11:41 AM, Alex Tweedly via use-livecode wrote: On 06/07/2020 17:19, J. Landman Gay via use-livecode wrote: There's a button at the lower right of the window that allows you to select which messages are suppressed. The default is to suppress unused messages but you can change

Re: Message watcher and selectionChanged

2020-07-06 Thread J. Landman Gay via use-livecode
By the way, I'd keep mouseMove in the blocked messages or else the whole window will fill up and bump the stuff you do want to see off the top. -- Jacqueline Landman Gay | jac...@hyperactivesw.com HyperActive Software | http://www.hyperactivesw.com On July 6, 2020 11:21:40 AM "J. Landma

Re: Message watcher and selectionChanged

2020-07-06 Thread J. Landman Gay via use-livecode
There's a button at the lower right of the window that allows you to select which messages are suppressed. The default is to suppress unused messages but you can change that. IDE messages aren't shown by default either and you can add your own if you want. -- Jacqueline Landman Gay |

Re: Apple Transporter for iOS uploads?

2020-07-02 Thread J. Landman Gay via use-livecode
On 7/2/20 3:58 PM, Graham Samuel via use-livecode wrote: My iOS deployment issues seem endless. It is dispiriting. I try to avoid iOS apps for the same reason. Unfortunately client demand means I have to go there. We have just completed a grueling review process that required changing some of

Re: Apple Transporter for iOS uploads?

2020-07-02 Thread J. Landman Gay via use-livecode
On 7/1/20 3:15 PM, Graham Samuel via use-livecode wrote: Anyone having any trouble with this app? I downloaded it and signed in with my Apple ID, but then it got stuck displaying “signing in” with a rotatiing progress indicator. The ‘Force Quit’ system doesn’t report it as ’not responding’,

Re: Animation Engine: speed tips

2020-06-30 Thread J. Landman Gay via use-livecode
Did you use acceleratedRendering? Set it to true and set the layermode of each moving object to dynamic. I'd be curious to see if there's a difference. -- Jacqueline Landman Gay | jac...@hyperactivesw.com HyperActive Software | http://www.hyperactivesw.com On June 30, 2020 8:43:25 PM Alex

Re: get URL results in tsneterr(6) on Android, previously worked ok

2020-06-28 Thread J. Landman Gay via use-livecode
I think that's a DNS error. One of my testers got that once and later it stopped by itself. I think she was using her ISP's DNS resolver. I'm not sure there's much we can do about it, it happens after the request is sent, but maybe someone else knows more. -- Jacqueline Landman Gay |

Re: What the heck? Writing and reading ios files??

2020-06-24 Thread J. Landman Gay via use-livecode
Mobile is case-sensitive, desktop isn't. The "documents" folder should be all lower case. If that's not the problem then show us the lines of script that both create the file path and retrieve it. -- Jacqueline Landman Gay | jac...@hyperactivesw.com HyperActive Software |

Re: Mobile Keyboard

2020-06-24 Thread J. Landman Gay via use-livecode
"hideMobileKeyword" to me in 100 millisec end preopenstack on hideMobileKeyword focus on nothing end hideMobileKeyword Kind regards, Panos -- On Wed, 24 Jun 2020 at 21:40, J. Landman Gay via use-livecode < use-livecode@lists.runrev.com> wrote: We've all had that problem: <https://q

Re: stacks panel in standalone application settings disabled

2020-06-24 Thread J. Landman Gay via use-livecode
. On Tue, Jun 23, 2020 at 5:42 PM J. Landman Gay via use-livecode < use-livecode@lists.runrev.com> wrote: Yeah. But you can disable the mobile build(s) and add the files and then re-enable mobile. Seems like the wrong interface but it works. On 6/23/20 4:11 PM, Mike Kerner via use-livecode

Re: Platform Divergence

2020-06-24 Thread J. Landman Gay via use-livecode
On 6/23/20 7:03 PM, Sean Cole (Pi) via use-livecode wrote: Put a standard scrolling field on a mobile device and it always looks Win91/Linux styled. To this day!! Hasn't been improved by Team LC or even considered. It has always fallen on us to fake it and go through mental amounts of flaming

Re: Mobile Keyboard

2020-06-24 Thread J. Landman Gay via use-livecode
We've all had that problem: On 6/23/20 6:53 PM, Dan Friedman via use-livecode wrote: Ralph, I had this same issue on a project. The problem is when the card/stack opens, LiveCode want to activate the first typable field it finds. If my

Re: stacks panel in standalone application settings disabled

2020-06-23 Thread J. Landman Gay via use-livecode
, Jun 23, 2020 at 4:57 PM J. Landman Gay via use-livecode < use-livecode@lists.runrev.com> wrote: On 6/23/20 2:34 PM, Mike Kerner via use-livecode wrote: why would everything on the stacks panel of the standalone application settings be disabled? It's disabled if you are building for

Re: stacks panel in standalone application settings disabled

2020-06-23 Thread J. Landman Gay via use-livecode
On 6/23/20 2:34 PM, Mike Kerner via use-livecode wrote: why would everything on the stacks panel of the standalone application settings be disabled? It's disabled if you are building for mobile. -- Jacqueline Landman Gay | jac...@hyperactivesw.com HyperActive Software |

Re: Chromebook apps?

2020-06-22 Thread J. Landman Gay via use-livecode
On 6/22/20 11:51 AM, prothero--- via use-livecode wrote: I may invest in a Chromebook, for testing, but would like to scope out the landscape before I waste my time. I forgot to mention that I recently saw that some of last year's Chromebooks are going for as low as $80. They don't have

Re: Chromebook apps?

2020-06-22 Thread J. Landman Gay via use-livecode
I've had fairly good experiences running an Android app on Chromebook. The manufacturer matters. On my Lenovo there are a few glitches, on my client's Asus Flip there are a few different glitches, but in general they are minor. I've made two Android apps that also run on Chromebooks. Both

Re: AppstoreConnect : no build available

2020-06-21 Thread J. Landman Gay via use-livecode
On 6/20/20 12:52 AM, Ludovic THEBAULT via use-livecode wrote: Nothing new this morning. But we are not alone ! I had a series of unhelpful responses to Apple dev support this weekend. Finally I got an answer: Apps will not process completely unless they have the beta entitlement checked.

Re: Dismiss Answer Dialog on Android

2020-06-21 Thread J. Landman Gay via use-livecode
Tapping outside the dialog should be the equivalent of Cancel. -- Jacqueline Landman Gay | jac...@hyperactivesw.com HyperActive Software | http://www.hyperactivesw.com On June 21, 2020 11:15:18 AM Dan Friedman via use-livecode wrote: On android, if you issue an answer command and tap outside

Re: AppstoreConnect : no build available

2020-06-20 Thread J. Landman Gay via use-livecode
On 6/20/20 12:52 AM, Ludovic THEBAULT via use-livecode wrote: Le 19 juin 2020 à 21:49, J. Landman Gay via use-livecode a écrit : I'm having the same problem. Submitted a verified app last night and got an email immediately that it had completed processing. But when I log into App Store

Re: AppstoreConnect : no build available

2020-06-19 Thread J. Landman Gay via use-livecode
I'm having the same problem. Submitted a verified app last night and got an email immediately that it had completed processing. But when I log into App Store Connect it is not available. If I look in the Test Flight pane it shows there but it is not available in the App Info page to submit for

Re: Moving object out of a group

2020-06-15 Thread J. Landman Gay via use-livecode
Kind of, but I'm not very good at it. Look at what happened. Now I'm afraid to go back and try to fix it. -- Jacqueline Landman Gay | jac...@hyperactivesw.com HyperActive Software | http://www.hyperactivesw.com On June 15, 2020 2:48:27 PM Mark Wieder via use-livecode wrote: On 6/15/20

mobileComposeMail on iOS

2020-06-15 Thread J. Landman Gay via use-livecode
I'm using mobileComposeMail to send a log file to the support queue when a user has a problem. It works fine in Android with any email client. In iOS it works for everyone except one person who has removed Mail from their iPhone and is using the gMail app as the mail client. When they tap the

Re: on cheese

2020-06-08 Thread J. Landman Gay via use-livecode
I am Edam-ent that one should not be prosciutto-Ed for the use of a single word. -- Jacqueline Landman Gay | jac...@hyperactivesw.com HyperActive Software | http://www.hyperactivesw.com On June 8, 2020 9:51:44 AM Heather Laine via use-livecode wrote: I guess they would need to use

Re: Script profiler

2020-06-07 Thread J. Landman Gay via use-livecode
On 6/7/20 2:27 PM, Niggemann, Bernd via use-livecode wrote: Jacques wrote Does anyone with a business license use the script profiler? I'm having trouble interpreting what it reports. According to the lesson in the LC Lessons, it looks like the most recent handler is recorded on top of the

Script profiler

2020-06-07 Thread J. Landman Gay via use-livecode
Does anyone with a business license use the script profiler? I'm having trouble interpreting what it reports. According to the lesson in the LC Lessons, it looks like the most recent handler is recorded on top of the output but I'm getting output that is all mixed up without any order that I

Re: Scrolling jitter

2020-06-07 Thread J. Landman Gay via use-livecode
Information Services rdim...@evergreeninfo.net -Original Message- From: use-livecode [mailto:use-livecode-boun...@lists.runrev.com] On Behalf Of J. Landman Gay via use-livecode Sent: Saturday, June 06, 2020 1:43 PM To: How to use LiveCode Cc: J. Landman Gay Subject: RE: Scrolling jitter

RE: Scrolling jitter

2020-06-06 Thread J. Landman Gay via use-livecode
Actually, did you adjust any of the default values like tilesize or compositorCacheLimit? I wonder if that would help. -- Jacqueline Landman Gay | jac...@hyperactivesw.com HyperActive Software | http://www.hyperactivesw.com On June 6, 2020 12:16:46 PM "J. Landman Gay via use-livecode&quo

RE: Scrolling jitter

2020-06-06 Thread J. Landman Gay via use-livecode
. Landman Gay via use-livecode Sent: Friday, June 05, 2020 6:27 PM To: How to use LiveCode Cc: J. Landman Gay Subject: Re: Scrolling jitter On 6/4/20 2:49 PM, J. Landman Gay via use-livecode wrote: On 6/4/20 2:22 PM, J. Landman Gay via use-livecode wrote: So far I've had two complaints from Android

Re: Scrolling jitter

2020-06-05 Thread J. Landman Gay via use-livecode
On 6/4/20 2:49 PM, J. Landman Gay via use-livecode wrote: On 6/4/20 2:22 PM, J. Landman Gay via use-livecode wrote: So far I've had two complaints from Android users that scrolling fields in our app are jittering when scrolled. Every field that needs to scroll is set up identically: Field

Re: revCopyFolder - execution error in standalone

2020-06-05 Thread J. Landman Gay via use-livecode
The common library is included automatically in every standalone, so you don't need to select it. I think revMoveFolder is in the same library, and since that works you can assume the library is loaded. What does the execution error say? If you get the result, does that tell you anything? Is

Re: Scrolling jitter

2020-06-05 Thread J. Landman Gay via use-livecode
On 6/5/20 12:03 PM, Jim Lambert via use-livecode wrote: Clearly jitterbugs! Our age is showing. ;) I'd still like to know the cause though. -- Jacqueline Landman Gay | jac...@hyperactivesw.com HyperActive Software | http://www.hyperactivesw.com

Re: Scrolling jitter

2020-06-04 Thread J. Landman Gay via use-livecode
On 6/4/20 2:22 PM, J. Landman Gay via use-livecode wrote: So far I've had two complaints from Android users that scrolling fields in our app are jittering when scrolled. Every field that needs to scroll is set up identically: Field expanded to full formattedheight Enclosing (shorter) group

Scrolling jitter

2020-06-04 Thread J. Landman Gay via use-livecode
So far I've had two complaints from Android users that scrolling fields in our app are jittering when scrolled. Every field that needs to scroll is set up identically: Field expanded to full formattedheight Enclosing (shorter) group is unadorned Group is set to scrolling layermode

Re: iOS builds ignore taps

2020-06-03 Thread J. Landman Gay via use-livecode
is a mystery :- ) On Jun 2, 2020, at 10:46 PM, J. Landman Gay via use-livecode wrote: In my case all groups that use a scroller have scrolling layermode set. They work. The primary problem for me is that regular LC controls stop getting messages and responding to taps. All these controls

Re: iOS builds ignore taps

2020-06-02 Thread J. Landman Gay via use-livecode
via use-livecode wrote: On 6/1/20 11:30 PM, Mark Wieder via use-livecode wrote: On 6/1/20 9:15 PM, J. Landman Gay via use-livecode wrote: Oh my gosh, I *never* would have guessed that fullscreenMode was the culprit. That's kind of screwy isn't it? Why would it block taps

Re: iOS builds ignore taps

2020-06-02 Thread J. Landman Gay via use-livecode
www.classroomFocusedSoftware.com On Jun 2, 2020, at 1:58 AM, J. Landman Gay via use-livecode wrote: On 6/1/20 11:30 PM, Mark Wieder via use-livecode wrote: On 6/1/20 9:15 PM, J. Landman Gay via use-livecode wrote: Oh my gosh, I *never* would have guessed that fullscreenMode was the culprit. That's kind of screwy

Re: iOS builds ignore taps

2020-06-02 Thread J. Landman Gay via use-livecode
On 6/1/20 3:19 PM, matthias rebbe via use-livecode wrote: I am not sure if this will solve your problem, but did you try the touch messages instead? It may have changed since I last tried that, which was years ago, but I found that if you have both mouse and touch messages, you get both

Re: iOS builds ignore taps

2020-06-02 Thread J. Landman Gay via use-livecode
with what Scott also mentioned. be well, randy www.classroomFocusedSoftware.com On Jun 2, 2020, at 1:58 AM, J. Landman Gay via use-livecode wrote: On 6/1/20 11:30 PM, Mark Wieder via use-livecode wrote: On 6/1/20 9:15 PM, J. Landman Gay via use-livecode wrote: Oh my gosh, I *never* would

Re: iOS builds ignore taps

2020-06-02 Thread J. Landman Gay via use-livecode
On 6/1/20 11:30 PM, Mark Wieder via use-livecode wrote: On 6/1/20 9:15 PM, J. Landman Gay via use-livecode wrote: Oh my gosh, I *never* would have guessed that fullscreenMode was the culprit. That's kind of screwy isn't it? Why would it block taps? And not consistently either. WTF? My

Re: iOS builds ignore taps

2020-06-02 Thread J. Landman Gay via use-livecode
t use fullscreenMode. Is acceleratedRendering a default requirement of fullscreenMode? I’ve been unable to create a simple recipe. In my cases I am suspicious that it has something to do with overlapping groups… but obviously it is more than that. — Scott On Jun 1, 2020, at 9:15 PM, J. Landman Gay via use-live

Re: iOS builds ignore taps

2020-06-01 Thread J. Landman Gay via use-livecode
chalk dust!) web https://elementarysoftware.com/ email sc...@elementarysoftware.com booth1-800-615-0867 -- On Jun 1, 2020, at 12:50 PM, J. Landman Gay via use-livecode wrote: Has anyone seen this problem? On an iOS build,

iOS builds ignore taps

2020-06-01 Thread J. Landman Gay via use-livecode
Has anyone seen this problem? On an iOS build, normal LC controls sometimes do not respond to mouseUp events. There are no native controls involved -- the worst offender is a regular LC graphic that serves as a login button. Sometimes it just doesn't trigger. Other times it's a locked LC field

Re: HTML Colour Groups

2020-05-31 Thread J. Landman Gay via use-livecode
Note there's a bug in the property inspector when using hex colors. It works and the color is applied to the object, but it doesn't show up in the property inspector's color squares. -- Jacqueline Landman Gay | jac...@hyperactivesw.com HyperActive Software | http://www.hyperactivesw.com On May

Re: Code-signed apk fails

2020-05-28 Thread J. Landman Gay via use-livecode
Okay, here are the results of my tests, all done in LC 9.6rc2. 1. Keystore: FPMobile.jks, included TSNet: fails to download files 2. Keystore: FPMobile.jks, TSNet removed: works 3. Keystore: FPMobile.keystore, included TSNet: works So TSNet doesn't like "jks" extensions, which is the file

Re: Code-signed apk fails

2020-05-28 Thread J. Landman Gay via use-livecode
easier. On 5/28/20 6:40 AM, JeeJeeStudio via use-livecode wrote: The normal exstension is .keystore , maybe that's the reason? Op 28-5-2020 om 08:52 schreef J. Landman Gay via use-livecode: We're about to release an Android app. I've been signing it for development only and it works well. Today I

Re: Code-signed apk fails

2020-05-28 Thread J. Landman Gay via use-livecode
On 5/28/20 5:24 AM, matthias rebbe via use-livecode wrote: did you already try to build the .apk without tsNet? This way you could check if tsNET is involved. You need to do the 2 steps before building the .apk 1. executedispatch "revUnloadLibrary" to stack "tsNetLibUrl"in message box

<    3   4   5   6   7   8   9   10   11   12   >