Search found 339 matches

by cusingerBUSCw5N
Fri Sep 27, 2019 9:02 pm
Forum: iOS Deployment
Topic: IOS simulator failure: enabledpressuredexit
Replies: 0
Views: 4999

IOS simulator failure: enabledpressuredexit

I have been getting warnings when I upload my app to Itunes, that the boolean enabledpressuredexit will soon be unrecognized (I think those were the words). Anyway... "soon" may have happened. I can no longer load any app into the IOS simulator. They call get an error that it won't load, and when I ...
by cusingerBUSCw5N
Sat Sep 21, 2019 2:34 am
Forum: iOS Deployment
Topic: Native Scroller problems in IOS
Replies: 1
Views: 2702

Re: Native Scroller problems in IOS

The answer is that you have to set the height and top of the group right before you create the scroller. I had created it on opencard, instead of at the same place I created the scroller.

Worked for Android...but IOS didn't play nice.
by cusingerBUSCw5N
Fri Sep 20, 2019 11:08 pm
Forum: iOS Deployment
Topic: Native Scroller problems in IOS
Replies: 1
Views: 2702

Native Scroller problems in IOS

I have a scroller that refuses to work in IOS. I have taken these steps: 1) Verified that I declared local sScrollerID 2) I have verified that there are no remaining scrollers from the prior card, using put mobileControls() into tControlList answer tControlList& " is mobilecontrollist" in preopensta...
by cusingerBUSCw5N
Thu Aug 22, 2019 10:57 pm
Forum: iOS Deployment
Topic: IOS 12.3
Replies: 3
Views: 3799

Re: IOS 12.3

I have been told by MacinCloud that Apple no longer accepts Xcode 10.1 What is the plan for updating to Xcode 10.2 +??????

Thanks

Carolyn
by cusingerBUSCw5N
Mon Aug 05, 2019 9:51 pm
Forum: Getting Started with LiveCode - Experienced Developers
Topic: Livecode storing encryption with extra lines
Replies: 5
Views: 3932

Re: Livecode storing encryption with extra lines

Hi. I went back to check my work and there is still a problem. When I encrypt an email, it creates one line of "stuff" (see attachment adminemailpicture.png) open file specialFolderPath("documents") & "/adminemail.txt" for write encrypt temail using "aes192" with key "zSJmf1pHKa42+mdZfGEM+A==" put i...
by cusingerBUSCw5N
Mon Aug 05, 2019 1:34 am
Forum: Getting Started with LiveCode - Complete Beginners
Topic: mergAV equivalent for android
Replies: 0
Views: 2280

mergAV equivalent for android

I just want to confirm that as of August 2019, there is no equivalent for mergAV for the android.

Thanks!
by cusingerBUSCw5N
Thu Jul 25, 2019 8:10 pm
Forum: Getting Started with LiveCode - Experienced Developers
Topic: Livecode storing encryption with extra lines
Replies: 5
Views: 3932

Livecode storing encryption with extra lines

I have used encryption to store information in a file on a mobile device. 1) a person enters their email in a field - it is put into temail and then encrypted The code is encrypt temail using "aes192" with key "zSJmf1pHKa42+mdZfGEM+A==" put it into myText answer myText When I do answer myText, it di...
by cusingerBUSCw5N
Sat Jul 20, 2019 12:22 am
Forum: iOS Deployment
Topic: Progressive Website and Apple
Replies: 0
Views: 3054

Progressive Website and Apple

I have just been dealing with Apple, which is trying to reject the app because that my app doesn't have enough "native" functionality and can be done on the web. I've searched a bit and learned that Apple is pushing Progressive Websites instead of apps.... Does Livecode's standalone for windows or m...
by cusingerBUSCw5N
Thu Dec 13, 2018 8:33 pm
Forum: Getting Started with LiveCode - Experienced Developers
Topic: Un-Caching URL results
Replies: 3
Views: 3386

Re: Un-Caching URL results

Thanks for the input. I re-did it and it works! However, I am wondering if the pendingmessages survives after closing the app, or do you have to save them in a txt file and then when the app is opened again, access the txt file? If it doesn't save it, then I think the code needs to be: on shutdown -...
by cusingerBUSCw5N
Wed Dec 12, 2018 1:12 am
Forum: Getting Started with LiveCode - Experienced Developers
Topic: Un-Caching URL results
Replies: 3
Views: 3386

Un-Caching URL results

Hi. I am creating an app for disasters, and need to have functionality for when there is no wifi. Specifically, if my app tries to send a message and there is no wifi, I want it to continue to try every x seconds until it succeeds. Then I want the app to put the date and time it succeeded into a fie...
by cusingerBUSCw5N
Fri Nov 30, 2018 8:27 pm
Forum: Getting Started with LiveCode - Complete Beginners
Topic: save image from url
Replies: 6
Views: 5296

Re: save image from url

So it finally works. I found that the link I was bringing in has a hidden character. So this works: :D put useline5 into gheaderimage set the itemdel to slash put useline5 into turl0 //begins fixing the hidden character find "png" in turl0 put offset("png",turl0) + 2 into twhat put char 1 to twhat o...
by cusingerBUSCw5N
Fri Nov 30, 2018 5:20 am
Forum: Getting Started with LiveCode - Complete Beginners
Topic: save image from url
Replies: 6
Views: 5296

Re: save image from url

I have tried another example, and when I bring in a different image, it gives me "error" - instead of connected. When I typed in the address, it gives me empty as a status. This is the code that gives me empty. put "https://www.mywebsite/images/paloalto.png" into gheaderimage put the URLStatus of gh...
by cusingerBUSCw5N
Fri Nov 30, 2018 2:44 am
Forum: Getting Started with LiveCode - Complete Beginners
Topic: save image from url
Replies: 6
Views: 5296

Re: save image from url

Unfortunately....more complications. The solution worked as long as the image was directly declared in local gheaderimage = "https://livecode.com/wp-content/uploads/2018/04/multiplatform-2-1018x1024.jpg" when the image comes in through the results of a data request and is put in a variable (tuse) an...
by cusingerBUSCw5N
Thu Nov 29, 2018 5:58 pm
Forum: Getting Started with LiveCode - Complete Beginners
Topic: save image from url
Replies: 6
Views: 5296

Re: save image from url

oohhh...I'm sorry ...I had no idea about the site!

And the solution works. Thanks!
by cusingerBUSCw5N
Thu Nov 29, 2018 4:15 am
Forum: Getting Started with LiveCode - Complete Beginners
Topic: save image from url
Replies: 6
Views: 5296

save image from url

Hi. I am trying to save a url image to a mobile device. I have tried SAVING IT: useline5 is the filename "https://www.yoururlhere.com/image.png" (edited by Heather as the original example url was a porn site :)) put useline5 into gheaderimage load url gheaderimage as timage export timage to file spe...

Go to advanced search