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 mailing

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 the

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 vi

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 every

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 co

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 openCa

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 op

Re: AR in LiveCode Browser?

2020-06-30 Thread Dan Friedman via use-livecode
essage- 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 obje

Re: AR in LiveCode Browser?

2020-06-30 Thread Dan Friedman via use-livecode
08 AM, "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!Feel

Re: AR in LiveCode Browser?

2020-06-30 Thread Dan Friedman via use-livecode
there's some licensing issues(money). Ralph DiMola IT Director Evergreen Information Services rdim...@evergreeninfo.net -Original Message- From: use-livecode [mailto:use-livecode-boun...@lists.runrev.com] On Behalf Of Dan Friedman via use-livecode Sent:

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 v

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 ___

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

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 e

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 D:\apktest\assets\tsNet.lc

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 use-livecode@lists.runrev.c

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 ___ use-

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 ab

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 o

Re: iOS app denied: AVAudioSession

2020-08-21 Thread Dan Friedman via use-livecode
you suggest 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

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 Mark

Re: iOS app denied: AVAudioSession

2020-08-24 Thread Dan Friedman via use-livecode
mergAVCamSet "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 v

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 P

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 hardware

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 word

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

Re: Odd data in message box

2020-10-17 Thread Dan Friedman via use-livecode
Mark and Jacque, Thank you for your assistance. There was invalid data in sTime. Interestingly, it wasn't from the data I was loading... it was old data coming from a reference to an array in a datagrid. Setting the datagrid's Persistent Data to false resolved the problem. A couple follow u

Re: Odd data in message box

2020-10-18 Thread Dan Friedman via use-livecode
> Jacqueline Landman Gay | jacque 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

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

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 and

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 use-livecode@l

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 bo

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 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 to me, an

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 __

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 t

Re: iOS screen size

2021-05-21 Thread Dan Friedman via use-livecode
reen 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 >

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 date/t

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 >

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 ke

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 is

Re: Custom URLs

2021-09-02 Thread Dan Friedman via use-livecode
it may be enough. 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 l

Re: Custom URLs

2021-09-02 Thread Dan Friedman via use-livecode
t it > 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,

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 years,

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 the

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 lo

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

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: http://lists.runre

Re: Video Chat?

2022-01-10 Thread Dan Friedman via use-livecode
the camera 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

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? -Dan

Re: browserDocumentLoadComplete

2022-02-16 Thread Dan Friedman via use-livecode
nfirmed and >> > 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 wou

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 fr

Re: Loading a LONG list with images

2022-02-21 Thread Dan Friedman via use-livecode
Richard, Probably not over a couple thousand. The images are square -- they need to be resized to the DG template image size, but not scaled (H vs W). -Dan On 2/21/22, 12:14 PM, "use-livecode on behalf of Richard Gaskin via use-livecode" wrote: How many images? I once made a sol

Re: Loading a LONG list with images

2022-02-21 Thread Dan Friedman via use-livecode
L8?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 imag

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 a

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: 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 gre

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

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

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

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 pla

Re: Audio Control on Mobile?

2022-05-15 Thread Dan Friedman via use-livecode
Alan, Thank you for the info. I know of the mobileSound items... but, it doesn't have all the commands we need. For example, there is no method to start (or change) the sounds play position, or poll the sound for the current position. My client wants to make a music playing app. Need to repl

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
k" 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 w

Re: Audio in Background

2022-06-27 Thread Dan Friedman via use-livecode
ck handler (or elsewhere): iphoneSetAudioCategory "playback" Kind regards, Panos -- On Mon, 27 Jun 2022 at 18:29, Dan Friedman via use-livecode < use-livecode@lists.runrev.com<mailto:use-livecode@lists.runrev.com>> wrote: > Happy Monday

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 _

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, no

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 __

Re: Android Player Object in Background

2022-07-26 Thread Dan Friedman via use-livecode
n On 7/26/22, 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

Android API Level 31

2022-08-09 Thread Dan Friedman via use-livecode
I am trying to upload an AAB to Google Play Condole and I am getting this error: "Your app currently targets API level 30 and must target at least API level 31 to ensure it is built on the latest APIs optimized for security and performance. Change your app's target API level to at least 31." I

Re: Android API Level 31

2022-08-09 Thread Dan Friedman via use-livecode
ood for release very soon. If you are urgently affected please contact support and we can offer an interim (test) build to try. Kind regards, Panos -- On Tue, 9 Aug 2022 at 20:34, Dan Friedman via use-livecode < use-livecode@lists.runrev.com> wrote: > I am tryi

mobileControl placeholderText?

2022-08-11 Thread Dan Friedman via use-livecode
Is there a method to add placeholderText to a native mobile control field? So, if the fields' text is empty, it will show a string in gray. Like a Password field that when empty displays "Enter password here". Dan ___ use-livecode mailing list use

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

Re: Images in Push Messages

2022-09-27 Thread Dan Friedman via use-livecode
html#source.type=clipart&source.clipart=place&source.space.trim=1&source.space.pad=0&name=ic_stat_place Hope this helps. Please let us know if this works for you. Kind regards, Panos On Tue, 27 Sept 2022 at 03:50, Dan Friedman via use-livecode < use-livecode@li

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 i

Re: PDF Printing

2022-10-04 Thread Dan Friedman via use-livecode
vices rdim...@evergreeninfo.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

Re: PDF Printing

2022-10-04 Thread Dan Friedman via use-livecode
wrote: On 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.p

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
os On Thu, 13 Oct 2022 at 01:41, Dan Friedman via use-livecode < use-livecode@lists.runrev.com> wrote: > 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

Re: App not printing

2022-11-28 Thread Dan Friedman via use-livecode
Marty, I had a similar issue. The only way to resolve the issue was to add the printing entitlements. Apps uploaded to the Mac App Store must have the sandbox environment enabled, and for every functionality that needs to communicate with the "outside world" it needs the appropriate entitle

Mobile Clipboard?

2022-12-16 Thread Dan Friedman via use-livecode
Is there a way to set the clipboard text on a mobile (iOS and Android) device? Something equivalent to "set the clipboardData to someText"? Thanks in advance, -Dan ___ use-livecode mailing list use-livecode@lists.runrev.com Please visit this url to su

Transporter Issue

2023-02-21 Thread Dan Friedman via use-livecode
Does anyone have any insight to this problem? I can create my app in 10.0.0 (dp 5) with no issue/warning/error of any kind. But, when I try to add it to Transported to upload to Apple, I get this error message: Could not create a temporary .itmsp package for the app “application.ipa”. Lookup a

Re: Transporter Issue

2023-02-21 Thread Dan Friedman via use-livecode
at 20:35, Dan Friedman via use-livecode < use-livecode@lists.runrev.com> wrote: > Does anyone have any insight to this problem? > > I can create my app in 10.0.0 (dp 5) with no issue/warning/error of any > kind. But, when I try to add it to Transported to upload to Apple, I get &g

Re: Transporter Issue

2023-02-21 Thread Dan Friedman via use-livecode
is m mailto:merak...@gmail.com>> Subject: Re: Transporter Issue Hello Dan, Is that an iOS or a Mac app? At which stage of the process do you get this error? Kind regards, Panos -- On Tue, 21 Feb 2023 at 20:35, Dan Friedman via use-livecode < use-livecode@lists.runrev.com<mailto:use-livecod

Mobile ask and capitalization

2023-02-27 Thread Dan Friedman via use-livecode
Is it possible to define the autoCapitalizationType for the ask command (for mobile)? Seems that it's always set to "none". I would like to set it to "sentences". Thanks in advance! -Dan ___ use-livecode mailing list use-livecode@lists.runrev.com Ple

Custom URL on Android

2023-03-07 Thread Dan Friedman via use-livecode
I have an Android app that I am launching from a webpage via the custom URL on an Android device. If I put the link in a webpage and click it, it works fine. The app launches and I get the param to act upon. However, if launch the app through a java script, then the browser displays a white

LC and Universal Links

2023-03-15 Thread Dan Friedman via use-livecode
I know that LC supports Custom URLs… I have used on both iOS and Android and it works great! But it looks like there is a new method, “Universal Links”. https://developer.apple.com/documentation/xcode/supporting-universal-links-in-your-app Does anyone know if LC supports Universal Links? -Da

Android SDK Tools Missing

2023-04-10 Thread Dan Friedman via use-livecode
I am following the directions (https://lessons.livecode.com/m/4069/l/985962-livecode-and-android-studio) to install Android Studio on my Apple M1 Max Mac. The instructions say to select the “Android SDK Tools”. However, this option is not listed in the “SDK Tools” tab of the Android Studio P

Re: Android SDK Tools Missing

2023-04-10 Thread Dan Friedman via use-livecode
that you want to install? If the latter then "enable" the option "show package details". This will show all available SDK tools. Regards Matthias > Am 10.04.2023 um 19:46 schrieb Dan Friedman via use-livecode > : > > I am following the directions > (https://l

Re: Android SDK Tools Missing

2023-04-10 Thread Dan Friedman via use-livecode
that you want to install? If the latter then "enable" the option "show package details". This will show all available SDK tools. Regards Matthias > Am 10.04.2023 um 19:46 schrieb Dan Friedman via use-livecode > : > > I am following the directions > (ht

Re: Android SDK Tools Missing

2023-04-10 Thread Dan Friedman via use-livecode
ssary. Kind regards, Panos -- On Mon, 10 Apr 2023 at 21:38, Dan Friedman via use-livecode < use-livecode@lists.runrev.com> wrote: > Matthias, > > Thank you for the reply. The “SDK Tools” is just not listed. Everything > else is. I see “Android Emulator” and “Android SDK P

Android Build Error

2023-04-15 Thread Dan Friedman via use-livecode
I am trying to build my Android App with the latest version of 10.0.0 DP-5. However, when I build the app, I get this error: There was an error while saving the standalone application could not encode class bundle - error: Methods with invalid locals information: void android.viewpager.widget

Android 13?

2023-04-22 Thread Dan Friedman via use-livecode
I have a custom that is trying to install my app (from the Google Play Store) and says they are getting the message, “This app was built for an older version of Android…”. The app was built with 9.6.2. Does LC support this version of Android? And, if so, what version of LC do I need to use

Android Push Messaging issue

2023-05-17 Thread Dan Friedman via use-livecode
I am stumped!I have an app that where push messaging is working fine using Legacy Cloud Messaging (and LC 9.6.2). I have setup the new Firebase Cloud Messaging and downloaded the new “google-services.json” file and included it in my updated standalone (LC 10.0.0). The app when launched on

Re: Android Push Messaging issue

2023-05-17 Thread Dan Friedman via use-livecode
Wed, 17 May 2023, 22:38 Dan Friedman via use-livecode, < use-livecode@lists.runrev.com> wrote: > I am stumped!I have an app that where push messaging is working fine > using Legacy Cloud Messaging (and LC 9.6.2). I have setup the new Firebase > Cloud Messaging and downloaded

Android Status Bar Icon

2023-05-24 Thread Dan Friedman via use-livecode
Greetings! I am seeing inconsistent results on the status bar icon on Android. On some devices (most running Android 9), the icon that appears in a push message is a white or grey square. I have tried using a 24x24 PNG for the Status Bar Icon and I also tried a 512x512. Another device runn

Android Signing

2023-06-19 Thread Dan Friedman via use-livecode
I am trying to update an Android app that was previously release on the Google Play Store. When I went to upload the Bundle, I got this message: “To upload an Android App Bundle you must be enrolled in Play App Signing.” With a little research, I found the App Signing area under “App Integrity

Re: Android Signing

2023-06-20 Thread Dan Friedman via use-livecode
gning On 6/19/23 5:29 PM, Dan Friedman via use-livecode wrote: > I am trying to update an Android app that was previously release on the > Google Play Store. When I went to upload the Bundle, I got this message: > > “To upload an Android App Bundle you must be enrolled in Play App Signi

Re: Android Signing

2023-06-21 Thread Dan Friedman via use-livecode
code [mailto:use-livecode-boun...@lists.runrev.com] On Behalf Of Dan Friedman via use-livecode Sent: Wednesday, June 21, 2023 1:24 AM To: How to use LiveCode Cc: Dan Friedman Subject: Re: Android Signing Jacqueline, Thank you for the reply. That is EXACLY what I am doing. I downloaded the public key a

  1   2   3   >