Snapshot image density

2021-04-16 Thread David V Glasgow via use-livecode
Hi Livecoders, I have been thinking about offering snapshot image density options on an app which currently only offers (import) snapshot size options. I chose import snapshot script variant because users’ machines may well react badly to an attempt to save an image (security). However, mos

Android splash and icon

2021-04-16 Thread Klaus major-k via use-livecode
Hi friends, the docs are quite sparse on this, or did I miss this? But I already found that we need a 48*48 pixel png (really that small?) for an icon for our android apps. But what about the "splash"? What do we need to supply here? Or ist is enough to "fake" a splash screen with the first car

Android Barcode Scanner widget

2021-04-16 Thread Klaus major-k via use-livecode
Hi all, a problem with the barcode sacanner on Android. I have this script: - on barcodeDetected pBarcode, pID put pBarcode["raw value"] into tBarCode ## It definitively works answer tBarCode ## This works, too, fetch data from a good

Re: Android splash and icon

2021-04-16 Thread Klaus major-k via use-livecode
Hi all, maybe this is helpful to others... > Am 16.04.2021 um 12:23 schrieb Klaus major-k via use-livecode > : > ... > Now I have to find out how to pass the APK to a customer of mine without > the use of the Google Play Store or something. > > Unfortunately my customer does not have a 64bit ve

Re: Snapshot image density

2021-04-16 Thread Richard Gaskin via use-livecode
David V Glasgow wrote: > Is it right that import snapshot doesn’t offer image density options > as export snapshot does? Is the metadata["density"] settable? I haven't used it so I can't say, but given how snapshotting works I'd be surprised if it lets us control the pixel density of LC's imag

Re: Android splash and icon

2021-04-16 Thread Andrew at MidWest Coast Media via use-livecode
The Standalone Application Settings for this are not as intuitive as they could be. You do not need a splash screen, because it in fact does nothing on Android. The 48x48 icon you needed was the Status Bar Icon that is only used for Push/Local notifications. It would be nice if there was a to

Re: Android splash and icon

2021-04-16 Thread Klaus major-k via use-livecode
Hi Andrew, > Am 16.04.2021 um 18:39 schrieb Andrew at MidWest Coast Media via use-livecode > : > > The Standalone Application Settings for this are not as intuitive as they > could be. well said. :-) > You do not need a splash screen, because it in fact does nothing on Android. Ah, OK, tha

Re: Android splash and icon

2021-04-16 Thread J. Landman Gay via use-livecode
On 4/16/21 11:48 AM, Klaus major-k via use-livecode wrote: Thanks, anyone knows how big the icon needs to be? Maybe even several icons in one file like the ICO files on Windows? You can use any size you like and Android will scale it as needed. I used to use 96px because that was about as larg

Re: Android splash and icon

2021-04-16 Thread Klaus major-k via use-livecode
Hi Jaques, > Am 16.04.2021 um 20:18 schrieb J. Landman Gay via use-livecode > : > > On 4/16/21 11:48 AM, Klaus major-k via use-livecode wrote: >> Thanks, anyone knows how big the icon needs to be? >> Maybe even several icons in one file like the ICO files on Windows? > > You can use any size yo

Re: Android splash and icon

2021-04-16 Thread J. Landman Gay via use-livecode
On 4/16/21 8:42 AM, Klaus major-k via use-livecode wrote: I searched the LC android froum and read a lot of entries until I found the final hint: I selected "do not sign" in the Android settings, because I do not have any Google Dev ID or whatever (yet), but had to change it to "Sign for develo

Re: Android splash and icon

2021-04-16 Thread Klaus major-k via use-livecode
Hi Jaques, > Am 16.04.2021 um 20:27 schrieb J. Landman Gay via use-livecode > : > > On 4/16/21 8:42 AM, Klaus major-k via use-livecode wrote: >> I searched the LC android froum and read a lot of entries until I found the >> final hint: >> I selected "do not sign" in the Android settings, becaus

Re: Android splash and icon

2021-04-16 Thread J. Landman Gay via use-livecode
On 4/16/21 1:27 PM, Klaus major-k via use-livecode wrote: Yo, if the steps to the new world would not be so steep... ;-) They're only steep for a little while. I'm very enthusiastic about Android and I find it does so much more than iOS. I couldn't live without the special features and capabil

Re: Android Barcode Scanner widget

2021-04-16 Thread JeeJeeStudio via use-livecode
Hoi Klaus, on mouseUp if the environment is "mobile" then    mobileVibrate 3    end if end mouseUp the vibrate has nothing to do with the barcode reader. But it could be a Rights issue, you can check if the app has rights to use the vibration, requsting these are also in the dictionary Op

Re: revBrowserNavigate

2021-04-16 Thread JeeJeeStudio via use-livecode
Why don't you use or test the latest 9.x.x version ? maybe a piece of script would help. Op 14-4-2021 om 15:51 schreef jbv via use-livecode: Hi list, I am using revBrowserNavigate and have the following problem : sometimes some urls won't display, but they display fine when I enter them in th

Re: Android Barcode Scanner widget

2021-04-16 Thread Klaus major-k via use-livecode
Hoi JeeJee, > Am 16.04.2021 um 21:38 schrieb JeeJeeStudio via use-livecode > : > > Hoi Klaus, > > on mouseUp > > if the environment is "mobile" then >mobileVibrate 3 >end if > end mouseUp > > the vibrate has nothing to do with the barcode reader. > But it could be a Rights issue, you

Re: Android splash and icon

2021-04-16 Thread Klaus major-k via use-livecode
Hi Jaques, > Am 16.04.2021 um 21:05 schrieb J. Landman Gay via use-livecode > : > > On 4/16/21 1:27 PM, Klaus major-k via use-livecode wrote: >> Yo, if the steps to the new world would not be so steep... ;-) > > They're only steep for a little while. I'm very enthusiastic about Android > and I

Re: Android Barcode Scanner widget

2021-04-16 Thread J. Landman Gay via use-livecode
On 4/16/21 2:38 PM, JeeJeeStudio via use-livecode wrote: But it could be a Rights issue, you can check if the app has rights to use the vibration, requsting these are also in the dictionary I can't get it to work either on my Pixel phone, nothing happens. There are no permission settings to co

Re: Android Barcode Scanner widget

2021-04-16 Thread Klaus major-k via use-livecode
Hi Jaques, > Am 16.04.2021 um 21:59 schrieb J. Landman Gay via use-livecode > : > > On 4/16/21 2:38 PM, JeeJeeStudio via use-livecode wrote: >> But it could be a Rights issue, you can check if the app has rights to use >> the vibration, requsting these are also in the dictionary > > I can't ge