Re: sqLite delete memory database

2020-04-30 Thread JB via use-livecode
I am not saying I know how to do it but are you able to read the memory like you can with a regular variable? If so maybe you can just assign each block of memory a null character. If you actually can get the memory address of the data it would be easy to delete it using C code. JB > On Apr

sqLite delete memory database

2020-04-30 Thread Bob Sneidar via use-livecode
I can create memory databases, but how do I delete it once created? revdb_disconnect still leaves it in memory. revCloseDatabase is just a synonym of revdb_disconnect. Bob S ___ use-livecode mailing list use-livecode@lists.runrev.com Please visit

Re: mergAV Select specific rear camera

2020-04-30 Thread Andrew at MidWest Coast Media via use-livecode
“Bug” submitted, though this is probably a Feature Enhancement in hindsight. https://quality.livecode.com/show_bug.cgi?id=22714 -Andrew Bell ___ use-livecode mailing list

Re: mergAV Select specific rear camera

2020-04-30 Thread Monte Goulding via use-livecode
Hi Andrew It looks like both mergAVCam and the cameraControl in the Indy+ engines need to be updated to use APIs added in iOS 11 for `minAvailableVideoZoomFactor` and `maxAvailableVideoZoomFactor`. The multiple lens back camera is treated as one device and it switches between the lenses

Re: mergAV Select specific rear camera

2020-04-30 Thread Andrew at MidWest Coast Media via use-livecode
The only devices that are returned by mergAVCamGet(“video devices”) is: com.apple.avfondation.avcapturedvice.built-in_video:0 Back Camera com.apple.avfondation.avcapturedvice.built-in_video:1 Front Camera mergAVPick(“rear camera”) brings up the native camera controls, but my goal is to have

RE: Xcode 11.4

2020-04-30 Thread Ralph DiMola via use-livecode
In the LC 9.6 (dp4) release notes from Panos. - To build iOS apps with LiveCode you must have the appropriate versions of Xcode as follows: - macOS 10.13.4: Xcode 10.1 - LiveCode builds iOS apps using the iOS 12.1 SDK - macOS 10.14.4: Xcode 11.3.1 - LiveCode

Xcode 11.4

2020-04-30 Thread Mike for GDC via use-livecode
Can you create a build for app submission using Xcode 11.4? ___ use-livecode mailing list use-livecode@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your subscription preferences:

Accessibility in LC projects

2020-04-30 Thread Peter Bogdanoff via use-livecode
Hi, I’m looking at modifying my Music in the Air application to enhance its accessibility, specifically for the sight impaired. I would be using text to speech to make it what is called in the accessibility world-- “self voicing.” The goal is to not only speak the text (which is the easy part

Test. Do not reply

2020-04-30 Thread Craig Newman via use-livecode
___ use-livecode mailing list use-livecode@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your subscription preferences: http://lists.runrev.com/mailman/listinfo/use-livecode

Test only, Do not reply

2020-04-30 Thread Craig Newman via use-livecode
___ use-livecode mailing list use-livecode@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your subscription preferences: http://lists.runrev.com/mailman/listinfo/use-livecode

Re: mergAV Select specific rear camera

2020-04-30 Thread Martin Koob via use-livecode
Hi Andrew. I haven’t used it on iOS but this is what you need to do on Mac OS X to use internal or external cameras. To choose a particular camera use merAVCamSet “camera” , tCameraID So or your case using iOS I think you can use just “rear camera” as the tCameraID

Re: mergAV Select specific rear camera

2020-04-30 Thread Devin Asay via use-livecode
Andrew, I’m not sure about mergAV, but if you gave an Indy license you might want to check out cameraControl, which keeps getting better with each new release. I was playing around with it in 9.6.0DP4 yesterday, and it seems pretty capable. It also has the advantage of being cross-platform on

mergAV Select specific rear camera

2020-04-30 Thread Andrew at MidWest Coast Media via use-livecode
I’m using mergAv to access video on mobile. I can access the front camera but only one of the rear cameras on my iPhone 11, the 1x “normal” lens rather than the 0.5x “wide angle”. Is there a way to access the multiple lenses that Apple has on their newer devices? —Andrew Bell