Search found 33 matches

by bamakojeff
Thu May 22, 2025 5:30 pm
Forum: Getting Started with LiveCode - Experienced Developers
Topic: Test ADB install fails when done over published app
Replies: 6
Views: 2342

Re: Test ADB install fails when done over published app

Part of the legal arguments that Apple made in their case against Epic defending their exorbitant cut of all profits from apps distributed through the App Store was that they are providing a "valuable service" to users and developers by insuring that no malicious actor could ever counterfeit an app ...
by bamakojeff
Thu May 22, 2025 7:07 am
Forum: Getting Started with LiveCode - Experienced Developers
Topic: Test ADB install fails when done over published app
Replies: 6
Views: 2342

Re: Test ADB install fails when done over published app

I *think* this is intentional. When you install an app from an app store (Apple or Google), the app store makes it impossible to install an identically named app which did not come as a legitimate update from them. So the various app stores cryptographically sign apps that you upload to them for ins...
by bamakojeff
Wed May 21, 2025 12:40 am
Forum: iOS Deployment
Topic: using a dylib in an iOS app
Replies: 1
Views: 3499

using a dylib in an iOS app

I am trying to get the external .dylib file from the following project working in an iOS app: https://github.com/trevordevore/iosclipboard The included "iosclipboard.livecode" project makes it seem very simple. It includes the .dylib file in the "Copy Files" section of the Standalone Application Set...
by bamakojeff
Mon May 12, 2025 2:20 am
Forum: Getting Started with LiveCode - Experienced Developers
Topic: DataGrid Native Scrollers
Replies: 0
Views: 1636

DataGrid Native Scrollers

I'm posting this here because it took me a while to figure all this out from a number of different sources. And inevitably, I will need this information in the future but have forgotten it. So I am doing my future self a favor by putting it into the forum in one place so when I search for "datagrid ...
by bamakojeff
Wed Mar 26, 2025 6:12 pm
Forum: Getting Started with LiveCode - Complete Beginners
Topic: Dialog box opens up behind systemWindow stack
Replies: 12
Views: 9380

Re: Dialog box opens up behind systemWindow stack

I believe that it's a problem with the backdrop (View->Backdrop) on Windows. When you bring up a modal dialog box (one that is meant to stay on top), they appear behind the backdrop. Hence you can't see them. But you can bring them to the foreground by clicking on the Livecode icons in the dock, or ...
by bamakojeff
Thu Mar 13, 2025 3:23 am
Forum: Getting Started with LiveCode - Experienced Developers
Topic: orientationChanged vs. resizeStack on iPhone
Replies: 0
Views: 6466

orientationChanged vs. resizeStack on iPhone

According to the docs, "The orientationChanged message is sent before any automatic interface rotation takes place..." and "The resizeStack message is sent after the resizing is finished." But on my iPhone 12, at least, I am seeing "weirdness". I have the following code: on orientationChanged log "o...
by bamakojeff
Mon Mar 10, 2025 5:55 pm
Forum: Getting Started with LiveCode - Experienced Developers
Topic: does "set the screenmouseLoc" work on mobile?
Replies: 7
Views: 3552

Re: does "set the screenmouseLoc" work on mobile?

I'm happy to report that "click" works fine on all platforms, at least for what I need. I get the top-left corner of the field, add in the margins, and I can click right at the first character of the first line. Once the program has "clicked" there, I can get all the information that I need from "mo...
by bamakojeff
Fri Mar 07, 2025 5:09 pm
Forum: Getting Started with LiveCode - Experienced Developers
Topic: does "set the screenmouseLoc" work on mobile?
Replies: 7
Views: 3552

Re: does "set the screenmouseLoc" work on mobile?

I'm trying to use Craig's very clever solution to an earlier problem of mine by using "set the screenMouseLoc" and then "scanning" along the text to find out when the background color changes. https://forums.livecode.com/viewtopic.php?f=8&t=38975&start=15#p228699 It works flawlessly on Desktop. But ...
by bamakojeff
Thu Mar 06, 2025 9:42 pm
Forum: Getting Started with LiveCode - Experienced Developers
Topic: does "set the screenmouseLoc" work on mobile?
Replies: 7
Views: 3552

does "set the screenmouseLoc" work on mobile?

I have a stack with a field "text" and a button. (The stack is attached.) The button has the following code in it: on mouseup local tTopLeft put the globalloc of the topleft of fld "text" into tTopLeft set itemdel to comma add the margins of fld "text" to item 1 of tTopLeft add (the effective texthe...
by bamakojeff
Fri Feb 21, 2025 9:36 pm
Forum: Getting Started with LiveCode - Experienced Developers
Topic: backgroundcolor for transparent images
Replies: 2
Views: 9379

Re: backgroundcolor for transparent images

Two excellent suggestions, Klaus. I did try them both when working on this problem, and I just tried them again to be sure. Unfortunately, no luck. The background of the transparent image stubbornly always shows the field's bgcolor, not the character's.

Thanks for tossing some ideas out.

Jeff
by bamakojeff
Fri Feb 21, 2025 8:34 pm
Forum: Getting Started with LiveCode - Experienced Developers
Topic: backgroundcolor for transparent images
Replies: 2
Views: 9379

backgroundcolor for transparent images

If I put an image with has a transparent background on a field, then the backgroundcolor of the field shows through properly. And if I change the backgroundcolor of the field, then the new backgroundcolor shows through. This also works correctly if I use the "set imagesource" command to replace a ch...
by bamakojeff
Wed Feb 05, 2025 11:26 pm
Forum: Mac OS
Topic: Current advice for building stand-alone?
Replies: 10
Views: 15372

Re: Current advice for building stand-alone?

Check out the following Livecode lesson on-line. I think this is what you are looking for. It explains in excruciating detail what you need to do in order to authorize a Mac app so it can be distributed from a source other than the Appstore. Much more importantly, however, it includes a stack which ...
by bamakojeff
Wed Oct 16, 2024 8:43 pm
Forum: Getting Started with LiveCode - Experienced Developers
Topic: LC 10 install on Windows 11
Replies: 4
Views: 10676

LC 10 install on Windows 11

I recently installed LC 10.0 on my Windows 11 laptop, and it took over 15 hours! I started a little after 14:00 one day (2:00 pm), let it run all day and all night and all the next day, and was sitting at the computer at 17:30 (5:30 pm) or so when it finally popped up the "Installed!" screen. Just t...
by bamakojeff
Tue Aug 27, 2024 6:27 pm
Forum: Talking LiveCode
Topic: Livecode Create - thoughts?
Replies: 125
Views: 124785

Re: Livecode Create - thoughts?

But yes, it is a concern nevertheless, as is the whiplash-inducing speed of licensing changes... Without disagreeing with anything that has been said on this thread, I'd like to offer a perspective which you are, of course, welcome to take or leave. I am very encouraged by the admittedly, "whiplash...
by bamakojeff
Thu May 09, 2024 12:13 am
Forum: Getting Started with LiveCode - Experienced Developers
Topic: Scaling on Mobile
Replies: 4
Views: 9190

Re: Scaling on Mobile

Just for the record, I created a new stack, followed the mobileDemo code, and scaling worked perfectly. So there's something in my earlier stack that is causing the problem. I'm retiring my old "display testing "stack and starting afresh with a new "display testing" stack. :-) Thanks for your help! ...