Search found 785 matches

by LiveCode_Panos
Mon Jul 23, 2018 1:29 pm
Forum: iOS Deployment
Topic: How can I change the permission request alert?
Replies: 12
Views: 7674

Re: How can I change the permission request alert?

Hello Peter, What happens if you remove this line: cameraControlSet "Cam", "audioDevice", "" ? However, note that you do have to specify a *videoDevice* if you want to use the cameraControlDo "Cam", "takePicture" command. You can get a list of the available videoDevices using: cameraControlGet "Cam"...
by LiveCode_Panos
Mon Jul 23, 2018 12:05 pm
Forum: iOS Deployment
Topic: How can I change the permission request alert?
Replies: 12
Views: 7674

Re: How can I change the permission request alert?

Hello Peter,

No, I done think you must change the description string for the microphone at this point.

Which command do you use to show the camera? Maybe it is the same bug we fixed for mergAV.

Best,
Panos
--
by LiveCode_Panos
Sat Jul 21, 2018 12:46 pm
Forum: iOS Deployment
Topic: How can I change the permission request alert?
Replies: 12
Views: 7674

Re: How can I change the permission request alert?

Hello Peter,

Are you using mergAV? If yes, you can disable the microphone like this:

Code: Select all

...
mergAVCamSet "microphone", empty
mergAVCamCreate
...
...
Note this will work in LC 8.1.10 / LC 9.0.0 / LC 9.0.1 RC-1

Best,
Panos
--
by LiveCode_Panos
Sat Jul 21, 2018 12:43 pm
Forum: iOS Deployment
Topic: Help with LC9 on 10.11 El Capitan
Replies: 41
Views: 25801

Re: Help with LC9 on 10.11 El Capitan

Hi Josep,

It is strange that the exact same setup works with LC 8.x but not with LC 9.

I suggest filing a bug report at quality.livecode.com, and the quality team will pick up the issue from there.

Best,
Panos
--
by LiveCode_Panos
Fri Jul 20, 2018 1:11 pm
Forum: Getting Started with LiveCode - Complete Beginners
Topic: cAPITAL lETTER pROBLEM
Replies: 33
Views: 12666

Re: cAPITAL lETTER pROBLEM

Hello Craig,

I confirm what you describe. This might be a bug in the tree view widget (which is used in this section of the Property Inspector), rather than a bug in the inspector itself.

I will file a bug in the weekend.

Thanks for spotting this.

Best,
Panos
--
by LiveCode_Panos
Fri Jul 20, 2018 10:33 am
Forum: iOS Deployment
Topic: How can I change the permission request alert?
Replies: 12
Views: 7674

Re: How can I change the permission request alert?

Hello Peter, The strings that describe the use of these permissions are in the plist template. Currently they are too generic, for example "This app requires access to your microphone", and after the stricter rules Apple has imposed, it causes the app to be rejected. You can modify the description s...
by LiveCode_Panos
Fri Jul 20, 2018 9:24 am
Forum: Getting Started with LiveCode - Experienced Developers
Topic: mobilecontrolcreate problem
Replies: 3
Views: 3026

Re: mobilecontrolcreate problem

Yes, you will be able to test the scroll of the mobile field in the simulator. You can use the mouse (hold and drag) to scroll in the simulator.

You might find this lesson useful:

http://lessons.livecode.com/m/4069/l/94 ... ll-a-field

Best regards,
Panos
--
by LiveCode_Panos
Fri Jul 20, 2018 7:59 am
Forum: Getting Started with LiveCode - Complete Beginners
Topic: cAPITAL lETTER pROBLEM
Replies: 33
Views: 12666

Re: cAPITAL lETTER pROBLEM

This is interesting. When I do on mouseUp set the caseSensitive to "true" set the "X" of btn 1 to "upper" set the "x" of btn 1 to "lower" end mouseUp and then open the Property Inspector of btn 1, the value of both properties seem to appear as "lower". However, doing: set the caseSensitive to true;p...
by LiveCode_Panos
Thu Jul 19, 2018 10:42 pm
Forum: Getting Started with LiveCode - Experienced Developers
Topic: mobilecontrolcreate problem
Replies: 3
Views: 3026

Re: mobilecontrolcreate problem

Hi petero,

The mobileControlCreate command is for mobile only, so it will throw this error on Desktop when this line is executed.

You'll have to do something like:

Code: Select all

if isMobile() then
   mobileControlCreate ...
end if
as you did previously with mobileControlDelete.

Best,
Panos
--
by LiveCode_Panos
Thu Jul 19, 2018 8:30 pm
Forum: Android Deployment
Topic: Could not compile service support class - revisited
Replies: 3
Views: 4417

Re: Could not compile service support class - revisited

Hi Carolyn, Java 9 and 10 are not supported yet, so yes, you'll need to download Java 8 and delete Java 9 and 10. http://www.oracle.com/technetwork/java/javase/downloads/jdk8-downloads-2133151.html RE the other issue, yes you can create android standalones on Mac. You just have to remove the path to...
by LiveCode_Panos
Wed Jul 18, 2018 11:49 am
Forum: Getting Started with LiveCode - Complete Beginners
Topic: cAPITAL lETTER pROBLEM
Replies: 33
Views: 12666

Re: cAPITAL lETTER pROBLEM

Hi all, You could probably use the image ID instead of the image name in the send command. In general, LC does differentiate between lowercase and uppercase letters but only when it comes to comparisons ("contains", "is among", "replace", "filter" etc) See "caseSensitive" property in the dictionary....
by LiveCode_Panos
Wed Jul 18, 2018 8:45 am
Forum: iOS Deployment
Topic: Help with LC9 on 10.11 El Capitan
Replies: 41
Views: 25801

Re: Help with LC9 on 10.11 El Capitan

Hi Josep,

I think we are running out of options here :)

Do you see that error with every standalone you try to deploy to iOS simulator, or with just a specific one?

Does it work on a physical iOS device?

Best,
Panos
--
by LiveCode_Panos
Tue Jul 17, 2018 9:46 pm
Forum: Linux
Topic: Unable to install LC 9 on Ubuntu 18.04
Replies: 22
Views: 26288

Re: Unable to install LC 9 on Ubuntu 18.04

Nice work Jimmy :)

Good to know that the installer does not like unicode cars in the filename, thanks.

Best,
Panos
--
by LiveCode_Panos
Mon Jul 16, 2018 10:28 pm
Forum: Android Deployment
Topic: Unable to build app for testing: apk preparation failed
Replies: 25
Views: 17732

Re: Unable to build app for testing: apk preparation failed

Thanks, this is helpful. Which version of Java have you installed? Note that Java 9 and 10 will not work, you need Java 8.

Go to advanced search