Search found 45 matches
- Sat Jul 19, 2014 7:19 am
- Forum: Android Deployment
- Topic: Application Permissions
- Replies: 5
- Views: 5456
Re: Application Permissions
Hi all, I share with you the answer from the support of Livecode : Dear Boris, Thank you for your request. Inneractive Ads are a 3rd party ad service that we provide access to within LiveCode. As they are 3rd party, we do not have access to their underlying source so we will only be able to supply t...
- Tue Jul 15, 2014 8:36 pm
- Forum: Android Deployment
- Topic: Application Permissions
- Replies: 5
- Views: 5456
Re: Application Permissions
Jacque,
Thank you for your answer, I will send a email to the support.
Best regards
Boris
Thank you for your answer, I will send a email to the support.
Best regards
Boris
- Sat Jul 12, 2014 8:15 am
- Forum: Android Deployment
- Topic: Application Permissions
- Replies: 5
- Views: 5456
Application Permissions
Hello, In advance sorry for my poor english, I hope that you understand me. In the Standalone application settings, you must activate the AD Support when you will add a inneractive banner. And this option activate this permission : - Phone Calls : read phone state and identity My question is: Which ...
- Sun Jun 29, 2014 12:58 pm
- Forum: Android Deployment
- Topic: Inneractive ads banner problem
- Replies: 1
- Views: 2343
Inneractive ads banner problem
Hello, I ' m testing the ads with inneractive. The banner will not resize on different screen size with Android. It's a very little banner. On IOS the banner is resize correctly. I'have tested with Livecode 6.6.2 and 6.7(dp4) it's the same problem. Here is my code : mobileAdCreate "Ad001", "banner",...
- Mon May 05, 2014 7:50 am
- Forum: iOS Deployment
- Topic: Upgrade App lost data
- Replies: 18
- Views: 12324
Re: Upgrade App lost data
Hi all,
Thank you to you for your help.
Jean-Marc i will continue testing.
Jacque what you say is interesting, because it solves the problem of
upgrade with the launcher stack, but we need to test it.
Best
Boris
Thank you to you for your help.
Jean-Marc i will continue testing.
Jacque what you say is interesting, because it solves the problem of
upgrade with the launcher stack, but we need to test it.
Best
Boris
- Sun May 04, 2014 2:41 pm
- Forum: iOS Deployment
- Topic: Upgrade App lost data
- Replies: 18
- Views: 12324
Re: Upgrade App lost data
Thanks for the suggestion, but it's not working.
Best
Best
- Sun May 04, 2014 11:07 am
- Forum: iOS Deployment
- Topic: Upgrade App lost data
- Replies: 18
- Views: 12324
Re: Upgrade App lost data
Salut Jean-Marc,
Yes I will call you it's better.
Boris
Yes I will call you it's better.
Boris
- Sun May 04, 2014 10:28 am
- Forum: iOS Deployment
- Topic: Upgrade App lost data
- Replies: 18
- Views: 12324
Re: Upgrade App lost data
Salut Jean-Marc,
I have tested with your code and changed the version of the custom property uMyVesion in my stack.
It's the same problem.
Best
Boris
I have tested with your code and changed the version of the custom property uMyVesion in my stack.
It's the same problem.
Best
Boris
- Sun May 04, 2014 6:50 am
- Forum: iOS Deployment
- Topic: Upgrade App lost data
- Replies: 18
- Views: 12324
Re: Upgrade App lost data
Thank you for the reply, but I do not understand how to do it the difference between a new installation and update. :cry: If every update my application, you must uninstall the old and lose all the data, I do not think this is ideal. I will continue looking for a solution, but for now I do not know ...
- Sat May 03, 2014 8:25 pm
- Forum: iOS Deployment
- Topic: Upgrade App lost data
- Replies: 18
- Views: 12324
Re: Upgrade App lost data
Salut Jean-Marc,
tMainStackPath, it's for saving/loading the stack (saving.livecode) with the data.
Thanks for your code, but he don't save the data when I shutdown the application.
Best regards
Boris
tMainStackPath, it's for saving/loading the stack (saving.livecode) with the data.
Thanks for your code, but he don't save the data when I shutdown the application.
Best regards
Boris
- Sat May 03, 2014 5:40 pm
- Forum: iOS Deployment
- Topic: Upgrade App lost data
- Replies: 18
- Views: 12324
Upgrade App lost data
Hello, I save my application data IOS with a stack launcher. I attach the code : on openstack put specialFolderPath("Documents") & "/saving.livecode" into tMainStackPath if there is not a file tMainStackPath then put specialFolderPath("engine") & "/saving.livecode" into tOriginalStackPath put url ("...
- Thu May 01, 2014 4:21 pm
- Forum: iOS Deployment
- Topic: How to read a external txt file ?
- Replies: 6
- Views: 5007
Re: How to read a external txt file ?
Hi Klaus,
Thank you very much.
I must learn to be lazy.
Best
Thank you very much.
I must learn to be lazy.

Best
- Thu May 01, 2014 2:58 pm
- Forum: iOS Deployment
- Topic: How to read a external txt file ?
- Replies: 6
- Views: 5007
Re: How to read a external txt file ?
Thanks Klaus, Your suggestion made me to try a different code : on mouseUp set the defaultFolder to specialFolderPath("Documents") open file specialFolderPath("engine") & "/French.txt" for read read from file specialFolderPath("engine") & "/French.txt" until EOF put it into Myvar put ite...
- Thu May 01, 2014 1:54 pm
- Forum: iOS Deployment
- Topic: How to read a external txt file ?
- Replies: 6
- Views: 5007
Re: How to read a external txt file ?
Salut Jean-Marc,
Thanks for your answer, but the content of the file txt is not put in the field.
Boris
Thanks for your answer, but the content of the file txt is not put in the field.
Boris
- Thu May 01, 2014 1:34 pm
- Forum: iOS Deployment
- Topic: How to read a external txt file ?
- Replies: 6
- Views: 5007
How to read a external txt file ?
Hello, I try to read a external "txt" file in IOS and put it in a field "read". I can read the file path but not its contents. In "Standalone application settings" I put the txt file (folder "documents") in the copy file menu : Capture d’écran 2014-05-01 à 14.28.19.png And here is my script in a but...