put img into img after import snapshot

2019-11-30 Thread Dan Friedman via use-livecode
This works perfectly on desktop. Why would it fail on mobile? put 0,the bottom of btn "newsHeader",the width of this stack,the top of grc "scaleRectangle" into pRect import snapshot from rect pRect put img 2 into img 1 // THIS LINE DOESN’T DO ANYTHING delete img 2 set the rect of img

Android Native Text Field Odd Behavior

2019-12-02 Thread Dan Friedman via use-livecode
Is this a bug? Can anyone confirm? 1. On an Android device, create a text entry native mobile control. 2. Type “test” (or any other text). 3. Type space. 4. Type back-space 5. Type any text The first word you typed gets repeated. Seems to be the same issue as this:

DataGrid and scroll down refresh

2019-10-03 Thread Dan Friedman via use-livecode
Greeting! For mobile, it has become VERY common to scroll down past the top of a list to refresh the data (usually a loading wheel appears). Is there a method to accomplish this with the DataGrid? -Dan ___ use-livecode mailing list

Re: Set font dynamically to fit text

2019-10-13 Thread Dan Friedman via use-livecode
Sannyasin, I've been doing this for years. Works well... on doShrinkToFit lFldID,startingSize,minSize set the textSize of lFldID to startingSize repeat until the formattedHeight of lFldID <= the height of lFldID set the textSize of lFldID to (the textSize of lFldID - 1) if the

Re: mobileGetDeviceToken

2020-03-03 Thread Dan Friedman via use-livecode
On 2020-03-03 18:18, Dan Friedman via use-livecode wrote: > Greeting! On iOS, prior to LC 9.6, mobileGetDeviceToken() would > return something like this: > > <965b251c 6cb1926d e3cb366f dfb16ddd e6b9086a 8a3cac9e 5f857679 > 376eab7C> > &

mobileGetDeviceToken

2020-03-03 Thread Dan Friedman via use-livecode
Greeting! On iOS, prior to LC 9.6, mobileGetDeviceToken() would return something like this: <965b251c 6cb1926d e3cb366f dfb16ddd e6b9086a 8a3cac9e 5f857679 376eab7C> However, with LC 9.6, I'm getting this:

StackSize limit on iOS

2020-03-05 Thread Dan Friedman via use-livecode
I am trying to produce a landscape PDF on a iPhone… open inv stack "printingStack" set the width of stack "printingStack" to (11*72) set the height of stack "printingStack" to (8.5*72) answer the width of stack "printingStack" //--- this returns 414 ??? // I am using LC Business

Face/Touch ID

2020-01-21 Thread Dan Friedman via use-livecode
Greetings! If memory serves we can use mergLA for Touch ID. Is there a method for Face ID? Thanks! -Dan ___ use-livecode mailing list use-livecode@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your subscription

Re: Parent Group of the Target

2020-01-07 Thread Dan Friedman via use-livecode
BR, Try "the owner of the target". Or, the long id of the owner of the target. Hope that helps. -Dan On 1/7/20, 7:20 AM, "use-livecode on behalf of Sannyasin Brahmanathaswami via use-livecode" wrote: I could have sworn we passed way before, but I can't find it anywhere on the list

Re: StackSize limit on iOS

2020-03-06 Thread Dan Friedman via use-livecode
a use-livecode" wrote: just a guess, but does "printingStack" have a maxWidth value set (other than the default of 65535)? On 3/5/2020 10:46 PM, Dan Friedman via use-livecode wrote: > I am trying to produce a landscape PDF on a iPhone… > >

mobileControlGet and htmlText

2020-04-09 Thread Dan Friedman via use-livecode
Greetings! Is it possible to get the htmlText (the content of the current HTML document) of a native browser? On desktop, I can do this easily with: revBrowserGet(tBrowserId,"htmlText"). Is there a mobile equivalent? -Dan ___ use-livecode

Re: Counting unique items in a file

2020-04-27 Thread Dan Friedman via use-livecode
Skip, Haven't tested, but pope about this... function getUniqueNames inData,pColumn put "" into uNames set the itemDel to tab repeat for each line l in inData add 1 to uNames[item pColumn of l] end repeat return uNames end getUniqueNames You should get back an array keyed by

Re: Looping though a numerically indexed array

2020-09-10 Thread Dan Friedman via use-livecode
David, Maybe there are better ways, but here's what I always do when I have an array with numbered keys... put the keys of pArray into aKeys sort lines of aKeys numeric repeat for each line k in aKeys //do something with pArray[k] end repeat Hope that helps. :) -Dan On 9/10/20, 2:39

Re: Odd data in message box

2020-10-16 Thread Dan Friedman via use-livecode
-- 2185 end if return sTime end convertToLocalTime Thank you! Dan Friedman CEO, ClearVision Technologies, LLC Voice: 909/484-2052 http://www.clearvisiontech.com On 10/16/20, 9:49 AM, "use-livecode on behalf of Mark Wieder via use-livecode" wrote: On 10/16/20 8:46 A

Odd data in message box

2020-10-16 Thread Dan Friedman via use-livecode
I get a bunch of data from my server. In this array, there are some dates. I roll through each one converting the date to local time: function convertToLocalTime sTime //sTime is already been converted to seconds format //convert the time using the hour offset for local time zone put

Re: Odd data in message box

2020-10-17 Thread Dan Friedman via use-livecode
without this list, and the talented and helpful people on it?! -Dan On 10/16/20, 12:36 PM, "use-livecode on behalf of Mark Wieder via use-livecode" wrote: On 10/16/20 9:57 AM, Dan Friedman wrote: > Mark, > > THANK YOU for the reply... Line 2185 is: &

Re: Odd data in message box

2020-10-18 Thread Dan Friedman via use-livecode
cque at hyperactivesw.com > HyperActive Software | http://www.hyperactivesw.com > On October 17, 2020 4:06:03 PM Richard Gaskin via use-livecode > wrote: > >> J. Landman Gay wrote: >>> On 10/17/20 12:13 PM, Dan Friedman via use-livecode wro

backKey with DataGrid

2020-10-06 Thread Dan Friedman via use-livecode
Here's a weird one... I have a card with a number of objects on it. There is a button named "Back" which takes you back to card X. There is also a dataGrid. In the mainStack script, I have a this backKey command: on backKey //this is sent only on Android when the user presses the

iOS app denied: AVAudioSession

2020-08-21 Thread Dan Friedman via use-livecode
I recently uploaded an iOS app to Apple with no problems. After it was approved and released, my client wanted to change the app description in the app store. As you know, you can only do this as a new version (stupid!). So, I made a new build of the same exact app (without changing a line

Re: iOS app denied: AVAudioSession

2020-08-21 Thread Dan Friedman via use-livecode
t I do next? Thank you! Dan Friedman CEO, ClearVision Technologies, LLC Voice: 909/484-2052 http://www.clearvisiontech.com On 8/21/20, 8:53 AM, "use-livecode on behalf of Mark Waddingham via use-livecode" wrote: On 2020-08-21 16:39, Dan Friedman via use-livecode wrote:

Re: iOS app denied: AVAudioSession

2020-08-21 Thread Dan Friedman via use-livecode
..@evergreeninfo.net -Original Message- From: use-livecode [mailto:use-livecode-boun...@lists.runrev.com] On Behalf Of Dan Friedman via use-livecode Sent: Friday, August 21, 2020 12:15 PM To: How to use LiveCode Cc: Dan Friedman Subject: Re: iOS app denied: AVAudioSession

Calendar External?

2020-08-19 Thread Dan Friedman via use-livecode
Quick question With Apple's eventKit, would it be possible to create an LC External to add an event to the device's calendar? I have a client who wants their app to add an event to the phone's calendar (iOS and Android). Importing a ICS file is an option, but the user doesn't have the

Re: iOS app denied: AVAudioSession

2020-08-24 Thread Dan Friedman via use-livecode
VCamSet "visible",true mergAVCamStartBarcodeReader end preOpenStack Why would this bring up the microphone consent dialog? Thank you! -Dan On 8/21/20, 8:53 AM, "use-livecode on behalf of Mark Waddingham via use-livecode" wrote: On 2020-08-21 16:39, Dan Friedman via use-liv

autoCapitalizationType in ask dialog

2020-08-17 Thread Dan Friedman via use-livecode
I know you can use mobileSetKeyboardType to set the keyboard, but is it possible to set the autoCapitalizationType for the ask command on mobile? It seems to be defaulting to "none", when you would think a default would be "sentences". -Dan ___

ADA Compliency

2020-05-26 Thread Dan Friedman via use-livecode
Has anyone done anything in regards to ADA compliancy in mobile apps built with LiveCode? Using the apple or android accessibility tools such as Screen reading, for example. -Dan ___ use-livecode mailing list use-livecode@lists.runrev.com Please

Re: DG outcomes on desktop vs mobile

2020-10-23 Thread Dan Friedman via use-livecode
Phil, One thing I have noticed is if you have a put command with no destination, mobile devices DO NOT LIKE THIS!! It will halt script execution completely as if it were an error. For example: put myVar This would normally put the contents of myVar into the message box. But on a

Re: Line length

2020-10-26 Thread Dan Friedman via use-livecode
Bob, I do what you're talking about all the time. Here's my setObjectHeightToText command that I use (pass it the long id of the field, and the minimum height you want): on setObjectHeightToText lID,minH put the rect of lID into tRect put item 2 of tRect + the formattedHeight of lID into

Add Event To Calendar?

2020-08-06 Thread Dan Friedman via use-livecode
I'm sure someone has tackled this task... Is there any way to add an event to a calendar on mobile (iOS and Android)? Looking for a mobileAddCalendarEvent command. Thanks in advance, -Dan ___ use-livecode mailing list

Odd Files in an Android apk

2020-08-02 Thread Dan Friedman via use-livecode
Using LC version 9.6.1 (rc1), I built by Android app. The app seemed a bit on the large side. So, upon examining the files in the apk, I found this: Volume in drive D has no label. Volume Serial Number is 7C03-D597 Directory of

AR in LiveCode Browser?

2020-06-29 Thread Dan Friedman via use-livecode
I am trying to display and use an AR object in a webpage in a LiveCode browser. It don't work!Feels like the LC browser (native or widget) doesn't have access to the native AR features. For example, if I open this URL https://nexen.ehpec.com/usdz.html in Safari, it works great! If I

Re: AR in LiveCode Browser?

2020-06-30 Thread Dan Friedman via use-livecode
fully investigated (ask Margaret about that). I thought that the browser would directly open the AR. I'm a little fuzzy on how to open and view these AR's. Ralph DiMola IT Director Evergreen Information Services rdim...@evergreeninfo.net -Original Message- From: Dan Friedman [mailto:d

Re: AR in LiveCode Browser?

2020-06-30 Thread Dan Friedman via use-livecode
- From: use-livecode [mailto:use-livecode-boun...@lists.runrev.com] On Behalf Of Dan Friedman via use-livecode Sent: Monday, June 29, 2020 7:48 PM To: How to use LiveCode Cc: Dan Friedman Subject: AR in LiveCode Browser? I am trying to display and use an AR object in

Re: AR in LiveCode Browser?

2020-06-30 Thread Dan Friedman via use-livecode
, "use-livecode on behalf of Klaus major-k via use-livecode" wrote: Hi Dan, > Am 30.06.2020 um 01:47 schrieb Dan Friedman via use-livecode : > > I am trying to display and use an AR object in a webpage in a LiveCode browser. It don't work!Feels like the

Re: AR in LiveCode Browser?

2020-06-30 Thread Dan Friedman via use-livecode
Ikea's app does this. Many other apps also provide an in-app AR expierence. How are they doing it? And how can I do this in my LC app? -Dan On 6/30/20, 9:44 AM, "use-livecode on behalf of Mark Waddingham via use-livecode" wrote: On 2020-06-30 15:46, Dan Friedman via us

returnKey and ask on iPhone

2020-07-14 Thread Dan Friedman via use-livecode
Question... Why doesn't the returnKey on my iPhone change to the "Next" option? mobileSetKeyboardReturnKey "next" ask "" with pLabel titled askTitle if the result = "cancel" then exit thisThing end if put it into tAskData What am I doing wrong? -Dan

iOS - open next field?

2020-06-30 Thread Dan Friedman via use-livecode
Is there a way you activate and utilize the "prev" and "next" button on iOS keyboards? You know, these buttons: https://i.stack.imgur.com/FzrPy.png If you have more than one text field on a card, we want to "tab" between fields. -Dan ___

Re: Mobile Keyboard

2020-06-23 Thread Dan Friedman via use-livecode
Ralph, I had this same issue on a project. The problem is when the card/stack opens, LiveCode want to activate the first typable field it finds. If my old memory is correct, what I did was this: on preOpenCard set the lockText of fld "thisDarnField" to true end preOpenCard on

Dismiss Answer Dialog on Android

2020-06-21 Thread Dan Friedman via use-livecode
On android, if you issue an answer command and tap outside the bounds of the dialog, it = the last button supplied. For example: answer "Are you sure you want to logout?" with "Cancel" or "Logout" If you tap outside the dialog, the dialog is dismissed and it = "Logout". Is this the

Datagrid Scrollers

2020-06-04 Thread Dan Friedman via use-livecode
Hello!I am having an issue with a DataGrid's scroller. The DataGrid is in another group ("flyupMenu") that is located off-screen at the bottom (the top of grp " flyupMenu " = the bottom of the card). Then, when a button is clicked, "flyupMenu" is moved up into view. At this point

Re: Styled text on mobile

2020-07-18 Thread Dan Friedman via use-livecode
Scriptable rich text in a native mobile text field? I second that! -Dan On 7/18/20, 9:01 AM, "use-livecode on behalf of Richard Gaskin via use-livecode" wrote: J. Landman Gay wrote: > It's possible. For a LiveCode field, note that the font has to have > a font variant for

Anyone heard of "App Clips"?

2020-11-13 Thread Dan Friedman via use-livecode
I have a client asking for us to implement a "App Clip". Anyone know if LC can deal with this? https://developer.apple.com/app-clips/ -Dan ___ use-livecode mailing list use-livecode@lists.runrev.com Please visit this url to subscribe, unsubscribe

Re: lock screen

2021-01-22 Thread Dan Friedman via use-livecode
Same here. Anytime I want to lock the screen, I do this: on lockTheScreen if not the lockScreen then lock screen end if end lockTheScreen When needed, I use this: on unLockTheScreen repeat until not lockScreen unlock screen end repeat end unLockTheScreen That's my 2 cents.

clipboardData on Mobile?

2021-01-27 Thread Dan Friedman via use-livecode
Greetings! Is there a way to set the clipboardData a mobile device? (iOS and Android). Client want's a "copy" button so they can paste the text outside of the app (in Notes, or a external document). -Dan ___ use-livecode mailing list

What happened to mobilePickDate ??

2021-06-15 Thread Dan Friedman via use-livecode
Has anyone tried mobilePickDate in LC 9.6.2? On both a phone and tablet, you don't get a picker! It popups a dialog that contains the date (or time). Then you have to tap the date/time and then you get the most tiny date (or time) editor. Is this the new Apple Guidline for picking a

Missing Private Key Woes

2021-06-16 Thread Dan Friedman via use-livecode
I am reaching out for some assistance while I have 1 hair left in my head! Can't build standalone for iOS in LC... get this message: "There was an error while saving the standalone application - could not find a valid identity to use for the selected profile." I look in XCode > Preferences

iOS screen size

2021-05-20 Thread Dan Friedman via use-livecode
Stupid Question (I should know this!)... Why in my iOS app not scaled to the device? I am getting black bars at the top and bottom of the device. I thought this once had to do with the splash screens, but changing the "Launch Image" doesn't seem to have any effect. I don't recall having

Re: iOS screen size

2021-05-21 Thread Dan Friedman via use-livecode
of all device sizes. > > Mark > > > > On May 20, 2021, at 9:22 PM, Dan Friedman via use-livecode < > use-livecode@lists.runrev.com> wrote: > > > > Stupid Question (I should know this!)... Why in my iOS app not scaled > to

Ask Command on Android

2021-07-01 Thread Dan Friedman via use-livecode
Greetings! When I run the ask command on a iOS device, the dialog appears, the soft keyboard appears and you can begin typing. However, on a Android device, the dialog appears but the keyboard doesn't not immediately open. You have to tap into the text area of the ask dialog to open the

LC and Websockets

2021-03-27 Thread Dan Friedman via use-livecode
Greetings! I've been looking around the boards and whatnot and see there has been some discussion about implementing web sockets in LiveCode. Has anyone come up with a library or a way to do this effectively for the Big 4 (Windows, Mac, iOS and Android)? Thanks in advance, Dan

Printing BackgroundColor of text

2021-03-04 Thread Dan Friedman via use-livecode
I seem to be having an issue printing text with a backgroundColor. Anyone else have this experience? SIMPLE to reproduce: Make a stack and put a field in it. Set the htmlText of the field to this: Color: 0233 Deep Marsh Now, run this either in a button or in the multiline message

Re: Printing BackgroundColor of text

2021-03-07 Thread Dan Friedman via use-livecode
Thanks Håkan... I already reported it. Get Outlook for iOS<https://aka.ms/o0ukef> From: ha...@exformedia.se Sent: Sunday, March 7, 2021 9:02:16 AM To: How to use LiveCode Cc: Dan Friedman Subject: Re: Printing BackgroundColor of text Looks like a bug

Custom URLs

2021-09-01 Thread Dan Friedman via use-livecode
I need a little help here... I am creating a mobile app for a client that wants to simply launch another app. To do this, I am trying to use a custom url to launch an external app. For example: launch url "fb:" This works fine on Android, but on iOS, I get "no association" (yes, Facebook

Re: Custom URLs

2021-09-02 Thread Dan Friedman via use-livecode
k > On 1 Sep 2021, at 18:04, Dan Friedman via use-livecode wrote: > > I need a little help here... > > I am creating a mobile app for a client that wants to simply launch another app. To do this, I am trying to use a custom url to launch an external a

Re: Custom URLs

2021-09-02 Thread Dan Friedman via use-livecode
t > sounds like a typical security thing Apple insists on for the AppStore? > They tend (when compared to Android), to lock that sort of thing down save > for a few standard (internet) url schema. > > Schedule a call with me > On 1 Sep 2021, 18:05 +0100, Dan

Re: LC 9.5.6, Android and JSONToArray

2021-12-06 Thread Dan Friedman via use-livecode
6 or 9.5.4 version of LiveCode. Also, to use JSONToArray() you have to include "mergJSON" in the Inclusions, not "JSON Library". The "JSON Library" is needed for "JSONImport" and "JSONExport" functions. Hope this helps. C

Count Up Timer?

2021-11-01 Thread Dan Friedman via use-livecode
Anyone ever done a count up timer? For example, if we supply the seconds of 1605553200, we want to display the number of years, months, days, hours, minutes and seconds since that time. For example, "How long have you been alive?". This needs to be precise – need to account for leap

DataGrid Edit Mode and Fixed Control Height

2021-11-07 Thread Dan Friedman via use-livecode
So, using the edit mode of a data grid is great! When enabled, I can drag the hamburger icon to reoder the rows... easy! But, if I set the "fixed control height" of the data grid to false, the hamburger icon no longer appears! Same with the select icon for each row. I have messed with

LC 9.5.6, Android and JSONToArray

2021-12-05 Thread Dan Friedman via use-livecode
I just built an app for Android in 9.5.6. I am finding that JSONToArray() isn't working. I built the same app in 9.5.4, and JSONToArray() works just fine. (Yes, I have "JSON Library" selected in the Inclusions in the Standalone Application Settings). Is this a bug or is JSONToArray() no

Video Chat?

2022-01-07 Thread Dan Friedman via use-livecode
Does anyone know if it's possible to do a live Video Chat in a LC project/app? -Dan ___ use-livecode mailing list use-livecode@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your subscription preferences:

Re: Video Chat?

2022-01-10 Thread Dan Friedman via use-livecode
a and mic. I tested a couple of them and they seemed to work fine. whereby.com is a good one to try On Fri, Jan 7, 2022 at 12:05 PM Dan Friedman via use-livecode < use-livecode@lists.runrev.com> wrote: > Does anyone know if it's possible to do a live Video C

browserDocumentLoadComplete

2022-02-14 Thread Dan Friedman via use-livecode
Greetings! I am loading a browser widget by setting the htmlText of the widget to some html code. This is working fine! However, how can I determine when the page is done loading? The browserDocumentLoadComplete message isn't being sent? Nor is browserNavigateComplete. Any ideas?

Sign In with Apple and Google

2022-03-07 Thread Dan Friedman via use-livecode
Hey all... does anyone have a method to do user sign-ins with Apple and Google (on iOS AND Android)? I know we could do it in a webpage, but wondered if there was a plug-in or better method to handle it. Any advice on this? Thanks in advance, -Dan

Loading a LONG list with images

2022-02-21 Thread Dan Friedman via use-livecode
Does anyone have any answers to the issue of loading a long list with images so that it loads images "as needed" like a webpage does. I have a DataGrid with several hundred rows. Each row has a specific image that is to be displayed with that row (like a list of songs). The image is loaded

Re: Loading a LONG list with images

2022-02-21 Thread Dan Friedman via use-livecode
Q0L8?t=216 Is this what you have in mind? These images are loaded as the row comes into view. On Mon, Feb 21, 2022 at 6:07 PM Dan Friedman via use-livecode < use-livecode@lists.runrev.com> wrote: > Richard, > > Probably not over a couple thousand. The image

Re: Loading a LONG list with images

2022-02-21 Thread Dan Friedman via use-livecode
once made a solution for 3,000 images, but it may not scale well above 8,000 or so depending on memory and connection speed. -- Richard Gaskin Fourth World Systems Dan Friedman wrote: > Does anyone have any answers to the issue of loading a long list with

Re: Loading a LONG list with images

2022-02-22 Thread Dan Friedman via use-livecode
else > put AppStarterStackTaskScheduler["data"]["DL:" & ThisURL]["data"] > into PixabayResults["cache"]["DL:" & ThisURL] > put 1 into PixabayResults["downloaded"][ThisIndex] >

Re: browserDocumentLoadComplete

2022-02-16 Thread Dan Friedman via use-livecode
> > accepted, so its on the list to be fixed. I know there is work on the >> > browser being done, so one would assume. >> > You will find it will work sometimes, but mostly not. >> > I don't think there is much we can do, I would love to learn of a >

Re: Into the future

2022-02-28 Thread Dan Friedman via use-livecode
" I think LC should have this facility built into the standalone builder " Couldn't agree more!! This should "just work" in LiveCode. -Dan On 2/28/22, 10:39 AM, "use-livecode on behalf of General 2018 via use-livecode" wrote: Just had the same pain. mrSignNotarizeHelperV3 was

Re: Loading a LONG list with images

2022-02-22 Thread Dan Friedman via use-livecode
Mark, >> i.e. make sure the datagrid is only creating rows on demand, rather than >> up front, and then requesting images and updating them when they arrive How do you do that? What property do I set, or method is used to only load the displayed rows? Tom's code snippet is a WONDERFUL start

Signing With Apple on iOS Woes

2022-03-28 Thread Dan Friedman via use-livecode
I am trying to user a browser widget to do a login with Apple. When I load my page (that redirects to apple with the appropriate keys) on my desktop (in the IDE) it works perfect! When I load the URL in the iOS Simulator, I get a browserDocumentLoadFailed message and the error is "navigation

Re: Shutdown on Android

2023-09-02 Thread Dan Friedman via use-livecode
music? -Dan From: use-livecode on behalf of J. Landman Gay via use-livecode Date: Friday, September 1, 2023 at 3:37 PM To: How to use LiveCode Cc: J. Landman Gay Subject: Re: Shutdown on Android On 8/31/23 5:36 PM, Dan Friedman via use-livecode wrote: > Does the shutdown mess

Shutdown on Android

2023-08-31 Thread Dan Friedman via use-livecode
Does the shutdown message (or shutdownRequest message) work on Android? I am playing a song using androidStartAudioPlayingInBackground. However, if the app is closed (swiping up to exit it), then the audio continues to play. So, I added an androidStopAudioPlayingInBackground command in the

Re: [[ ANN ]] Release 9.6.10

2023-08-29 Thread Dan Friedman via use-livecode
Any word on 10.0.0? Biting nails!! -Dan From: use-livecode on behalf of panagiotis merakos via use-livecode Date: Tuesday, August 29, 2023 at 8:10 AM To: How to use LiveCode Cc: panagiotis merakos Subject: [[ ANN ]] Release 9.6.10 Dear list members, We are pleased to announce the

Re: [[ ANN ]] Release 9.6.10

2023-08-29 Thread Dan Friedman via use-livecode
to appear this week. Kind regards, Panos -- On Tue, 29 Aug 2023 at 19:34, Dan Friedman via use-livecode < use-livecode@lists.runrev.com> wrote: > Any word on 10.0.0? Biting nails!! > > -Dan > > > From: use-livecode on behalf of > panagiotis merakos via use-livecode >

Re: Deployment: a plea/opportunity

2023-10-13 Thread Dan Friedman via use-livecode
+1 I obviously agree!I finally got my Mac app uploaded to the Mac Store (and approved)… but what a pain!!! There are SO many steps that could easily be done by LiveCode that they have chosen to omit. Simple things like generating the .ipa for iOS (this is a simple command line), having

Re: Crashing on M2 Mac

2023-11-02 Thread Dan Friedman via use-livecode
Peter, I recently discovered (from one of my own apps) that a Mac app built with 9.6.10 running on Sonoma crashes when the convert command is called. I rebuilt the app in 10.0.0 (dp 6) and the app no longer crashes. Hope that helps! - Dan From: use-livecode on behalf of Peter Bogdanoff

Re: Crashing on M2 Mac

2023-11-03 Thread Dan Friedman via use-livecode
LC 10, so a 9.6.11 that addresses this convert bug is needed. > > On 11/2/2023 6:33 PM, Dan Friedman via use-livecode wrote: > > Peter, > > > > I recently discovered (from one of my own apps) that a Mac app built > with 9.6.10 running on Sonoma crashes when the c

Re: Crashing on M2 Mac

2023-11-03 Thread Dan Friedman via use-livecode
LiveCode Cc: Mark Waddingham Subject: Re: Crashing on M2 Mac Dan, could you file a bug with the offending line of code which crashed ios17 with 9.6.10… Just so we can check it isn’t still there in 9.6.11 :) Thanks! Mark Sent from my iPhone > On 3 Nov 2023, at 16:48, Dan Friedman via use-livec

I give up! Mac App Installer Hell

2023-10-06 Thread Dan Friedman via use-livecode
If you have a very, very, VERY good understanding of creating Mac installer files to be posted to a website for user install, and to submit to the Mac App Store, I would like to pay you to walk me through all this - step by step. I can’t take any of more this crap! Certificates, Identifiers,

Re: Oddities with iOS IAP

2023-08-15 Thread Dan Friedman via use-livecode
Panos, Thank you for the reply. Here is my code…. You click a button, and it calls startInAppPurchase with the number of credits to purchase. After all is done, pLog is completely empty. This is working perfectly on Android. on startInAppPurchase numCredits //setup purchase id if

Re: [[ ANN ]] Release 9.6.10 RC-1

2023-08-18 Thread Dan Friedman via use-livecode
Panos, What about 10.0.0? Is there an update coming? I sure hope so… I’m going to be hosed if not. -Dan From: use-livecode on behalf of panagiotis merakos via use-livecode Date: Thursday, August 17, 2023 at 7:04 AM To: How to use LiveCode Cc: panagiotis merakos Subject: [[ ANN ]]

Oddities with iOS IAP

2023-08-13 Thread Dan Friedman via use-livecode
I am getting some inconsistent results with in in app purchases from the iOS App Store. In the TestFlight dev environment, the purchase “seems” to be complete… I get all the normal iOS prompts to purchase the product, enter the password, etc. I even get the “You’re All Set. Your purchase

Re: Oddities with iOS IAP

2023-08-15 Thread Dan Friedman via use-livecode
Panos, Ok… seems to be working now. I’m no longer getting “completed”, but I am consistently getting “paymentRecieved”… and I can make that work. Obviously, I don’t really understand how this all works… but it’s working! Thank you again for your help! -Dan From: use-livecode on behalf

Emojis in Text

2022-03-18 Thread Dan Friedman via use-livecode
I can't be the first to bring this up, so sorry if this has been asked already... Is there a current solution for Emojis in text? On a mobile device, in a native field, a user enters a emoji (no method to stop them that I can find). I save that text somewhere like a database. When I load it

Re: Audio Control on Mobile?

2022-05-15 Thread Dan Friedman via use-livecode
rev.com wrote: > > Date: Fri, 13 May 2022 19:40:11 +0000 > From: Dan Friedman > To: How to use LiveCode > Subject: Audio Control on Mobile? > Message-ID: <395fac0d-aca3-463e-ab3a-b932d222c...@clearvisiontech.com> > Content-Type: text/p

Audio Control on Mobile?

2022-05-13 Thread Dan Friedman via use-livecode
Hello! On desktop, there is the player object which is great! However, it doesn't work on Mobile. Is there a way to deal with an audio file on mobile (Android and iOS)? Here's what I need to do: - Load an audio file from a server - Play the file - Pause file - Set the cursor (where to

Audio in Background

2022-06-27 Thread Dan Friedman via use-livecode
Happy Monday! I am using the native player control (on both iOS and Android). It's working quite well! The only problem I have is that the background audio doesn't seem to honor this control. If I play audio in a native browser, it works. Is there something I need to set or do to get it

Re: Audio in Background

2022-06-27 Thread Dan Friedman via use-livecode
t; Kind regards, Panos -- On Mon, 27 Jun 2022 at 18:29, Dan Friedman via use-livecode < use-livecode@lists.runrev.com> wrote: > Happy Monday! I am using the native player control (on both iOS and > Android). It's working quite

Signing and Uploading apps to the Mac App Store HELL!

2022-07-09 Thread Dan Friedman via use-livecode
Greetings! I am pulling out my hair in getting my app prepared for the MacApp Store (and for downloading from my website). I can't take it anymore!! Is there someone here I can pay to either do this for me, or walk me through this hideous process? -Dan

Re: Audio in Background

2022-06-27 Thread Dan Friedman via use-livecode
Panos, Just wanted you to know that adding “iphoneEnableRemoteControl” did the trick! The app received the “remoteControlReceived” message and was able to act on that message even in the background. Sweet! Thank you! Dan Friedman CEO, ClearVision Technologies, LLC Voice: 909/484-2052 http

LiveCode access to mpnowplayinginfocenter?

2022-07-26 Thread Dan Friedman via use-livecode
On iOS, a song playing in the native player can be controlled in the Control Center. However, it doesn't display the song name, or artwork or other details. Looks like LC needs to access mpnowplayinginfocenter. Is this possible? Anyone know anything about this? -Dan

Android Player Object in Background

2022-07-26 Thread Dan Friedman via use-livecode
I have a music playing app that uses the native player object to play music. When in the background, iOS allows control of the playing song in the Control Center. This not function this way on Android. There is a androidStartAudioPlayingInBackground command, but that plays a supplied url,

Re: Android Player Object in Background

2022-07-26 Thread Dan Friedman via use-livecode
, 2:29 PM, "use-livecode on behalf of Tom Glod via use-livecode" wrote: The way I achieved this is using a html 5 player in the browser instead of the player object. The player has no way of doing this currentlyas far as I know. On Tue, Jul 26, 2022 at 12:43 PM Dan Fr

Images in Push Messages

2022-09-26 Thread Dan Friedman via use-livecode
We're trying to add images to push messages. Can't seem to get it to work (starting with Android first). Anyone have any knowledge on this? I wouldn't think so, but Is there something I have to set in the LC app?Any guidance anyone might have would be appreciated! -Dan

PDF Printing

2022-10-04 Thread Dan Friedman via use-livecode
I am getting different results using "open printing to pdf" vs standard printing to a printer. I have a card with a single field on it with some formatted text in it. If I print the card to a printer using "open printing with dialog" it all looks perfect (even if I choose to save it to PDF

Re: PDF Printing

2022-10-04 Thread Dan Friedman via use-livecode
2022-10-04 16:20, Dan Friedman via use-livecode wrote: > Here are examples of the printouts (the PDFs): > Print to PDF - https://www.clearvisiontech.com/WORKING/PrintToPDF1.pdf > Print to Printer - > https://www.clearvisiontech.com/WORKING/PrintToPDF2.pdf >

Re: PDF Printing

2022-10-04 Thread Dan Friedman via use-livecode
eninfo.net -Original Message- From: use-livecode [mailto:use-livecode-boun...@lists.runrev.com] On Behalf Of Dan Friedman via use-livecode Sent: Tuesday, October 04, 2022 11:21 AM To: How to use LiveCode Cc: Dan Friedman Subject: PDF Printing I am getting different res

Printing Woes

2022-10-12 Thread Dan Friedman via use-livecode
I am getting several reports of clients that can't print from my Mac app built with 9.6.8. When we call "answer page setup", nothing happens (and the result is empty). It doesn’t happen on all computers... some work and some don’t. Anyone have any thoughts, insights or ideas? -Dan

Re: Printing Woes

2022-10-13 Thread Dan Friedman via use-livecode
30 AM, "use-livecode on behalf of panagiotis m via use-livecode" wrote: Hello Dan, What is the MacOS version of the computers where "answer page setup" fails? Do they have anything else in common? Does the Console app show anything suspicious? Kind regards, Pan

Re: Images in Push Messages

2022-09-27 Thread Dan Friedman via use-livecode
into this: https://developer.android.com/develop/ui/views/notifications/build-notification Does LC use the " NotificationCompat" when building packages? Thank you! Dan Friedman CEO, ClearVision Technologies, LLC Voice: 909/484-2052 http://www.clearvisiontech.com On 9/27/22, 4:4

<    1   2   3   4   5   >