Re: Sorting by item ... of each and item ... of each

2023-09-03 Thread panagiotis m via use-livecode
Hello Matthias, I do not think that the syntax "sort by sortKey1 and sortKey2" is supported If you have multiple sortKeys, you have to do multiple sorts, for example, in your use case, this should work: set the itemdel to ";" sort lines of tList numeric by item 3 of each sort lines of tList

Re: [[ ANN ]] Release 9.6.10

2023-08-29 Thread panagiotis m via use-livecode
Hello Mike, I guess we will update the supported xcode version once macOS Sonoma and/or Xcode 15 - iOS 17 SDK are publicly available, so probably in LC 9.6.11 rc-1 I think you can update your CLT to 14.3, but make sure you still keep the current supported xcode version Kind regards, Panos On

Re: [[ ANN ]] Release 9.6.10

2023-08-29 Thread panagiotis m via use-livecode
Hello Matthias, I am afraid I cannot give an ETA on this. All I know is it was not planned for 9.6.10 (neither for 10 DP-6). Kind regards, Panos -- On Tue, 29 Aug 2023 at 20:17, Bob Sneidar via use-livecode < use-livecode@lists.runrev.com> wrote: > I think he said in that email that v10 is

Re: [[ ANN ]] Release 9.6.10

2023-08-29 Thread panagiotis m via use-livecode
Hello all, @matthias I am sorry for the frustration - I know you are very eager to get this fixed. But this was not planned for LC 9.6.10 anyway. @Dan The release of LC 10 DP-6 is in the final stages of testing and it is expected to appear this week. Kind regards, Panos -- On Tue, 29 Aug 2023

Re: Merging PDF pages

2023-08-25 Thread panagiotis m via use-livecode
Hello all, There is a built-in utility on MacOS for merging PDFs. You can call it from "shell", as Paul suggested. This seems to work - tested on MacOS Mojave. It merges "test1.pdf" and "test2.pdf" into "merged.pdf" on Desktop. Just check that the path of tApp actually exists in modern MacOS as

Re: Polygrid sorting

2023-08-25 Thread panagiotis m via use-livecode
Hello Paul, See the example in the dictionary for the "headerClick" message: local sDirection on headerClick pColumnNumber local tText put the text of me into tText put not sDirection[pColumnNumber] into sDirection[pColumnNumber] set the itemDel to tab # Sort data by this

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

2023-08-18 Thread panagiotis m via use-livecode
Hello all, Yes, the plan is to release LC 10 dp-6 before the end of the month, which will include support for API 33 as well as all the other fixes/enhancements of LC 9.6.10 rc1. Cheers, Panos On Fri, 18 Aug 2023, 23:50 matthias rebbe via use-livecode, < use-livecode@lists.runrev.com> wrote: >

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

2023-08-17 Thread panagiotis m via use-livecode
ecode < > use-livecode@lists.runrev.com> wrote: > >> I see only a link to the release notes. >> >> Henry >> >> > On Aug 17, 2023, at 5:05 PM, panagiotis m via use-livecode < >> use-livecode@lists.runrev.com> wrote: >> > >> > Hello Mar

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

2023-08-17 Thread panagiotis m via use-livecode
he issue asap. Thanks for spotting it! Cheers, Panos On Thu, 17 Aug 2023 at 19:13, HENRY LOWE via use-livecode < use-livecode@lists.runrev.com> wrote: > I see only a link to the release notes. > > Henry > > > On Aug 17, 2023, at 5:05 PM, panagiotis m via use-livecode <

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

2023-08-17 Thread panagiotis m via use-livecode
Hello Mark, As Matthias noted, you can find this release in your account area. You have to scroll down a bit because the stable releases are listed at the top. In the downloads page you can only find the last stable release - currently 9.6.9. Kind regards, Panos -- On Thu, 17 Aug 2023 at

Re: Oddities with iOS IAP

2023-08-15 Thread panagiotis m via use-livecode
obileStoreDisablePurchaseUpdates > break > case "restored" > answer "restored" > offerPurchasedProduct pProductID > mobileStoreConfirmPurchase pProductID > mobileStoreDisablePurchaseUpdates > loadMeUp > break >

Re: Oddities with iOS IAP

2023-08-15 Thread panagiotis m via use-livecode
Hello Dan, Could you share the code that makes the purchase, as well as the purchaseStateUpdate message? Although, my guess is that this is rather a TestFlight issue, since if it was an issue in LC's API for in-app purchase on iOS, it would have been reported ready. Kind regards, Panos --

Re: Consumable In App Purchases on Android

2023-08-09 Thread panagiotis m via use-livecode
lesson on the LC website was updated > to these options/methods. It might save the next guy some grief. > > -Dan > > > From: use-livecode on behalf of > panagiotis m via use-livecode > Date: Wednesday, August 9, 2023 at 7:51 AM > To: How to use LiveCode > Cc: panag

Re: Consumable In App Purchases on Android

2023-08-09 Thread panagiotis m via use-livecode
Hello all, Also, it might be worth trying this as well - add a new button with this code: on mouseUp mobileStoreEnablePurchaseUpdates mobileStoreRestorePurchases end mouseUp Then press the button, and *then* call mobileStoreConsumePurchase pProductID . Hopefully now it should be properly

Re: Consumable In App Purchases on Android

2023-08-09 Thread panagiotis m via use-livecode
Hello Dan, The call to mobileStoreConfirmPurchase pProductID causes the purchaseStateUpdate message to be sent again with status=complete. So I would not suggest putting the call to mobileStoreConsumePurchase pProductID just after mobileStoreConfirmPurchase. You could either put it in a

Re: Unable to build for Mac: adding ad-hoc signature failed

2023-08-09 Thread panagiotis m via use-livecode
Hello Dar, I can successfully build a Mac standalone in a network drive. The error you are getting indicates that the app the standalone builder tries to codesign, has some extended attributes. This is strange, because the standalone builder does this very thing (i.e. it clears the extended

Re: Consumable In App Purchases on Android

2023-08-08 Thread panagiotis m via use-livecode
Hello Dan, I think Google no longer differentiates between consumables and non-consumables when setting up the in-app product - they are both marked as "In-App Products”. However, in LiveCode, you have to call mobileStoreConsumePurchase pProductID to be able to buy the product again - otherwise

Re: Unable to build for Mac: adding ad-hoc signature failed

2023-08-08 Thread panagiotis m via use-livecode
Hello all, The standalone builder does add a signature when building the mac standalone - but an ad hoc one (i.e. it does not use an actual certificate). The error Dar gets happens during the standalone building process. @Dar Could you attach the exact error? Just upload the screenshot somewhere

Re: Light Windows programs takes 40 s to load

2023-08-08 Thread panagiotis m via use-livecode
Hello all, We recently fixed a bug (affecting mainly Windows 11) where the LC installer, the LC IDE and Windows standalones were crashing on startup. It turned out this was caused if some generic printer drivers were installed in the device, and installing the official printer drivers from the

Re: Light Windows programs takes 40 s to load

2023-08-08 Thread panagiotis m via use-livecode
ott via use-livecode < use-livecode@lists.runrev.com> wrote: > Sure, Panos! Uh, what’s its name? > > > On Aug 7, 2023, at 11:42 AM, panagiotis m via use-livecode < > use-livecode@lists.runrev.com> wrote: > > > > Hello Dar, > > > > Could you quit th

Re: Light Windows programs takes 40 s to load

2023-08-07 Thread panagiotis m via use-livecode
Hello Dar, Could you quit the printer spooler process ( from the task manager or from Windows CMD) and try again? Cheers, Panos On Mon, 7 Aug 2023, 20:38 Dar Scott via use-livecode, < use-livecode@lists.runrev.com> wrote: > > Greetings! > > A made a stack with very little script—just enough to

Re: [[ ANN ]] New Enhancements Bundle v1.0.32 available

2023-08-04 Thread panagiotis m via use-livecode
Hello Derek, Indeed, those 2 widgets are probably the ones I mostly use in my projects as well! *How can I be sure the proper version is being loaded? Should I be clearing out the old versions, or does your installer handle that?* The installer does handle that - it removes existing

Re: [[ ANN ]] New Enhancements Bundle v1.0.32 available

2023-08-04 Thread panagiotis m via use-livecode
Hello all, @Mark There is a file "changelog.txt" in the bundle that describes all the bugfixes and new features that are added per widget. @Klaus Heh, I think the .zip file has this version (1_0_0) because it allows us to update it more easily. If you unzip it, it should show the actual version:

Re: Query Android Version Code

2023-08-01 Thread panagiotis m via use-livecode
Hello Dan, You can do something like this: *put* the cRevStandaloneSettings["android,version code"] of this stack Kind regards, Panos -- On Sat, 22 Jul 2023 at 00:02, Dan Friedman via use-livecode < use-livecode@lists.runrev.com> wrote: > Does anyone know if there is a way to query the

Re: Android app black screen?

2023-07-25 Thread panagiotis m via use-livecode
23 at 15:49, Klaus major-k via use-livecode < > use-livecode@lists.runrev.com> wrote: > >> Hi Panos, >> >> > Am 25.07.2023 um 14:16 schrieb panagiotis m via use-livecode < >> use-livecode@lists.runrev.com>: >> > >> > Hello Klaus, >>

Re: Android app black screen?

2023-07-25 Thread panagiotis m via use-livecode
dRendering of this stack to true end initAE Kind regards, Panos -- On Tue, 25 Jul 2023 at 15:49, Klaus major-k via use-livecode < use-livecode@lists.runrev.com> wrote: > Hi Panos, > > > Am 25.07.2023 um 14:16 schrieb panagiotis m via use-livecode < > use-livecode@lists.runrev.com>:

Re: Android app black screen?

2023-07-25 Thread panagiotis m via use-livecode
the app). Cheers, Panos On Tue, 25 Jul 2023, 15:11 Klaus major-k via use-livecode, < use-livecode@lists.runrev.com> wrote: > Hi Panos, > > > Am 25.07.2023 um 14:06 schrieb panagiotis m via use-livecode < > use-livecode@lists.runrev.com>: > > > &g

Re: Android app black screen?

2023-07-25 Thread panagiotis m via use-livecode
Hello Klaus, Are you setting the acceleratedRendering to true on startup? Kind regards, Panos On Tue, 25 Jul 2023, 12:15 Mark Smith via use-livecode, < use-livecode@lists.runrev.com> wrote: > Hi Klaus, > > I’ve had similar things happen on iOS, perhaps more recently in the past > year than

Re: Remote debugger error message

2023-06-30 Thread panagiotis m via use-livecode
Hello all, @mike The revdebuggerlibrary.livecodescript is not the remote debugger - it is the IDE debugger for the script editor. The remote debugger is a protected stack and it is not present in the repo. @david How do you trigger this error? Could you provide a recipe? Kind regards, Panos --

Re: Answer dialog text missing in standalone 9.6.9

2023-06-30 Thread panagiotis m via use-livecode
Hello again, Just tested on Windows and it works fine here as well. @Camm Could it be the case you have customised the answer dialog stack? Cheers, Panos -- On Fri, 30 Jun 2023 at 14:12, panagiotis m wrote: > Hello Camm, > > In which platform? Seems to work as expected here (MacOS). > >

Re: Answer dialog text missing in standalone 9.6.9

2023-06-30 Thread panagiotis m via use-livecode
Hello Camm, In which platform? Seems to work as expected here (MacOS). Cheers, Panos -- On Fri, 30 Jun 2023 at 09:54, General 2018 via use-livecode < use-livecode@lists.runrev.com> wrote: > Hi, > > Just the “Yes” , “No” > > “Some Text” missing. > > Works fine in IDE and previous standalones. >

Re: Code-Signing Frustration

2023-06-19 Thread panagiotis m via use-livecode
; hadn't mentioned it once I'd be here with the same frustrations. > > > > -- > > Jacqueline Landman Gay | jac...@hyperactivesw.com > > HyperActive Software | http://www.hyperactivesw.com > > On June 19, 2023 9:29:52 AM panagiotis m via use-livecode < > use-livecode@lists.r

Re: Code-Signing Frustration

2023-06-19 Thread panagiotis m via use-livecode
r message. I’m not loading it from XCode > directly, but am using the debug command in the Livecode IDE. > > Best, > Bill > > > On Jun 18, 2023, at 9:34 PM, panagiotis m via use-livecode < > use-livecode@lists.runrev.com> wrote: > > > > Bill, > >

Re: Code-Signing Frustration

2023-06-18 Thread panagiotis m via use-livecode
Bill, I am sorry for the confusion, I meant UDID, not uuid. In other words, the profile must include the id of the devices in which it is allowed to install your app. You said this is a new device, so could it be the case that the UDID that is included in your profile (I see only one UDID in the

Re: Code-Signing Frustration

2023-06-18 Thread panagiotis m via use-livecode
Hello Bill, Is the uuid of the new iOS device included in the provisioning profile? Cheers, Panos On Sun, 18 Jun 2023, 21:59 prothero--- via use-livecode, < use-livecode@lists.runrev.com> wrote: > I also tried the App ID: 8ZD6TKFXZV.org.earthednet.waterdetective, > including the team

Re: Code-Signing Frustration

2023-06-16 Thread panagiotis m via use-livecode
Hello Bill, I would recommend Matthias' excellent lesson and utility stack here: https://lessons.livecode.com/m/4071/l/1653720-code-signing-and-notarizing-your-lc-standalone-for-distribution-outside-the-mac-appstore-with-xcode-13-and-up This is not only for signing but also for notarizing the

Re: Windows OS and LC969 weirdness

2023-06-13 Thread panagiotis m via use-livecode
'screen' 1, that would just be a weird app behavior to > allow other windows to be moved across monitors, but not the media window. > > Thanks again for pointing me in the right direction! > > > On 6/12/2023 2:19 PM, panagiotis m via use-livecode wrote: > > Hello Paul, > >

Re: Windows OS and LC969 weirdness

2023-06-12 Thread panagiotis m via use-livecode
Hello Paul, It sounds like this bug: https://quality.livecode.com/show_bug.cgi?id=20707 Kind regards, Panos On Mon, 12 Jun 2023, 21:10 Paul Dupuis via use-livecode, < use-livecode@lists.runrev.com> wrote: > I have a weird problem and I am wondering if anyone has seen anything > like it. > > I

Re: The Backdrop's Purpose In Life

2023-05-30 Thread panagiotis m via use-livecode
Note that the LC backdrop with LC 9.6.3 community works just fine with > > MacOS Ventura. > > > > Kisses, Richmond. > > > > On 27.05.23 6:58, panagiotis m via use-livecode wrote: > >> Hello all, > >> > >> Note that the LC backdrop does not work on MacOS

Re: The Backdrop's Purpose In Life

2023-05-26 Thread panagiotis m via use-livecode
Hello all, Note that the LC backdrop does not work on MacOS Ventura. Cheers, Panos On Fri, 26 May 2023, 22:23 J. Landman Gay via use-livecode, < use-livecode@lists.runrev.com> wrote: > On 5/26/23 1:14 PM, Richard Gaskin via use-livecode wrote: > > Bob Sneidar wrote: > > > > > HA! I just

Re: Android Push Messaging issue

2023-05-17 Thread panagiotis m via use-livecode
Hello Dan, Have you seen this lesson? https://lessons.livecode.com/m/4069/l/1473964-how-do-i-use-push-notifications-with-android-in-livecode-9-6-5 What is your code that handles the notification? Kind regards, Panos On Wed, 17 May 2023, 22:38 Dan Friedman via use-livecode, <

Re: Android 13?

2023-04-22 Thread panagiotis m via use-livecode
Hello all, LiveCode does support Android 13. The release notes need to be updated. Dan, if you rebuild the app with lc 9.6.9 I think you should be fine. I am not sure why an app built with 9.6.2 would throw this error, but it has been a long time since 9.6.2 anyway. Cheers, Panos On Sat, Apr

Re: Android Build Error

2023-04-15 Thread panagiotis m via use-livecode
Hello Dan, This is caused because the version of the build-tools you have installed is > v32 You have to uninstall this version of the build tools and install a version among v30 and v31. I suggest v30.0.3, which is extensively tested - as recommended in the LC lesson about Android Studio. See

Re: Problem signing Android app

2023-04-12 Thread panagiotis m via use-livecode
Hello Klaus, When you tried to upload a new build using your original keystore, was it actually the original one? Usually this error (i.e. that you did not use the correct key for signing) is thrown when a different key is used to sign an app update compared to the key used to sign the previous

Re: [[ ANN ]] Release 9.6.9

2023-04-10 Thread panagiotis m via use-livecode
Hello Mike, MacOS 13.x was supported in previous LC versions too. If your goal is to build iOS apps, it is possible even with Xcode 13.2 on MacOS 13.x. Yes, Xcode 13.2 won't run on MacOS 13.x, but LC just needs Xcode 13.2 to "be there", since it does not run Xcode directly. it just uses some

Re: Android SDK Tools Missing

2023-04-10 Thread panagiotis m via use-livecode
Hello Dan, If you uncheck the option "Hide Obsolete Packages" then you will see the "Android SDK Tools" package. It is now marked a s obsolete, so I am not entirely sure if it is still necessary. Kind regards, Panos -- On Mon, 10 Apr 2023 at 21:38, Dan Friedman via use-livecode <

Re: Android native scroller

2023-04-07 Thread panagiotis m via use-livecode
Hello Klaus, I _think_ you also have to do: mobileControlSet "myScroller", "vScroll", 1670 Kind regards, Panos -- On Fri, 7 Apr 2023 at 15:05, Klaus major-k via use-livecode < use-livecode@lists.runrev.com> wrote: > Hi friends, > > I have a working scroller for a long field on Android. > The

Re: Ventura 1.3 - revcopyfile

2023-04-06 Thread panagiotis m via use-livecode
Hello Jean-Jacques, This sounds like a permissions issue. Which version of LiveCode are you using? IIRC, I think we fixed a similar issue in LC 9.6.8 - we added proper permissions to the LC IDE and standalones to use AppleScript to control other apps in recent MacOS versions. If you still see

Re: [[ ANN ]] Release 9.6.9 RC-3

2023-03-29 Thread panagiotis m via use-livecode
Hello Ralph, The public downloads page only contains the latest stable version - no DPs or RCs there. You can access the release notes from the LC 9.6.9 rc3 IDE: Help -> Release Notes Also, in your account area, at the left hand side there is a Downloads page, which does have the release

Re: iOS SDK Version Warning

2023-03-20 Thread panagiotis m via use-livecode
Hello Henry, Yes, we are preparing an LC update which will include support for building with Xcode 14.2 / iOS SDK 16.2. Kind regards, Panos -- On Sun, 19 Mar 2023 at 20:37, HENRY LOWE via use-livecode < use-livecode@lists.runrev.com> wrote: > Hi, > > When using Transporter to deliver an app

Re: diagnosing android crash at launch

2023-03-07 Thread panagiotis m via use-livecode
hello all, @Mike Kerner Are you setting the acceleratedRendering to true? The "black screen" on startup reminds me of an older bug that only happened when acceleratedRendering was set to true. If yes, try setting it to false and see if you get any further. You might now see the answer dialogs

Re: android build "could not encode class bundle"

2023-03-05 Thread panagiotis m via use-livecode
ev.com> wrote: > chipmunk, still error > > On Sun, Mar 5, 2023 at 3:20 PM Mike Kerner > wrote: > > > how do we check the version we have installed? > > i downgraded to Dolphin, but i'm still getting the error. > > > > On Sun, Mar 5, 2023 at 1:41 PM panagiotis

Re: android build "could not encode class bundle"

2023-03-05 Thread panagiotis m via use-livecode
Hello all, It is this bug: https://quality.livecode.com/show_bug.cgi?id=23570 See the report for a workaround. Kind regards, Panos On Sun, 5 Mar 2023, 19:49 J. Landman Gay via use-livecode, < use-livecode@lists.runrev.com> wrote: > Do you have the latest version of Build Tools installed? > >

Re: On mobile: mergAVRequestMediaAccess "video" and androidRequestPermission "android.permission.CAMERA"

2023-02-28 Thread panagiotis m via use-livecode
Hello Klaus, *sorry, I only have a Samsung Android phone.* *Tested there, but unfortunately that does not work on Android this way.* On Android, if you go to Settings -> Apps -> Manage Apps and then choose your app, you can see which permissions have been requested and which of them have

Re: Notarizing a standalone with Xcode 13 and 14

2023-02-23 Thread panagiotis m via use-livecode
Thank you very much Matthias :) Kind regards, Panos On Thu, 23 Feb 2023 at 13:57, matthias rebbe via use-livecode < use-livecode@lists.runrev.com> wrote: > Hello, > > with Xcode 13 Apple introduced a new command line tool (notarytool) which > makes Notarizing much easier and more convenient. At

Re: Transporter Issue

2023-02-21 Thread panagiotis m via use-livecode
nt I drop > the ipa into Transporter. > > > Regards, > > Dan Friedman > CEO, ClearVision Technologies, LLC > 909.484.2052 > d...@clearvisiontech.com > https://www.clearvisiontech.com > > -- > *From:* use-livecode on behalf of &g

Re: Transporter Issue

2023-02-21 Thread panagiotis m via use-livecode
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> wrote: > Does anyone have any insight to this problem? > > I can create my app in

Re: [[ ANN ]] New Enhancements Bundle v1.0.29 available

2023-02-09 Thread panagiotis m via use-livecode
Hello Paul, I have followed your recipe and still cannot get it to fail - I can successfully add a new column using the plus button in the Columns tab of the Property Inspector, even if the PL is totally empty (i.e. no columns and no data). I suggest you file a bug report with a short video

Re: Standalone riddle

2023-01-16 Thread panagiotis m via use-livecode
Hello all, *>Can we turn off remote debugger for a test build so we can, how can I say* *it, hmm... I got it! Test?* I think if you choose to "Select Inclusions manually" and you do not include the Remote Debugger, it is not included in the standalone. Kind regards, Panos -- On Mon, 16 Jan

Re: Another LC9.6.9rc2 regression? This time with Datagrids

2022-12-14 Thread panagiotis m via use-livecode
Nice detective work @Mark Wieder Indeed, in LC 9.6.9 rc2 we added support for nested DG behaviors, so this code was updated. Hopefully this will be fixed in LC 9.6.9 rc3 Kind regards, Panos -- On Wed, 14 Dec 2022 at 07:45, Mark Wieder via use-livecode < use-livecode@lists.runrev.com> wrote:

Re: Build in Answer Dialog

2022-12-06 Thread panagiotis m via use-livecode
via use-livecode < use-livecode@lists.runrev.com> wrote: > Hi Panos, > > > Am 06.12.2022 um 18:24 schrieb panagiotis m via use-livecode < > use-livecode@lists.runrev.com>: > > Hello Paul, > > You can tweak this file with a text editor: > > /Applications/L

Re: Build in Answer Dialog

2022-12-06 Thread panagiotis m via use-livecode
Hello Paul, You can tweak this file with a text editor: /Applications/LiveCode 9.6.9 (rc 2).app/Contents/Tools/Toolset/palettes/answer-dialog/revanswerdialog.livecodescript: /* Creates the prompt field if there is not one already created */ if the number of fields of me is 0 then create

Re: Browser widget doesn't display PDF

2022-11-29 Thread panagiotis m via use-livecode
Hello Matthias, See: https://quality.livecode.com/show_bug.cgi?id=18378 https://quality.livecode.com/show_bug.cgi?id=22534 I suggest using a PDF widget instead of a browser widget to display the pdf files, until this bug is fixed. Kind regards, Panos -- On Tue, 29 Nov 2022 at 18:59, matthias

Re: Can we install "command Line Tools 14.1" on Mac?

2022-11-16 Thread panagiotis m via use-livecode
Hello all, Yes, you can install any version of the command line tools you wish, but for LiveCode you need the version that is included in Xcode 13.2.x. So to use a different version you can do: sudo xcode-select -s /path/to/the/new/version/of/command/line/tools But before using LiveCode, make

Re: Anyone any experience with Livecode under Ventura?

2022-11-14 Thread panagiotis m via use-livecode
Hello all, We received a report about "Close and remove from memory" not working on MacOS Ventura (https://quality.livecode.com/show_bug.cgi?id=24008). I have not upgraded yet - so I was wondering if anyone has seen this issue on MacOS Ventura? Kind regards, Panos -- On Mon, 14 Nov 2022 at

Re: [ANN] Release 9.6.9 RC-2

2022-11-04 Thread panagiotis m via use-livecode
. Kind regards, Panos -- On Fri, 4 Nov 2022 at 18:07, matthias rebbe via use-livecode < use-livecode@lists.runrev.com> wrote: > For testing I just built for macOS Intel. > > > > > Am 04.11.2022 um 16:54 schrieb panagiotis m via use-livecode < > use-livecode@lists.runre

Re: [ANN] Release 9.6.9 RC-2

2022-11-04 Thread panagiotis m via use-livecode
Hello Matthias, What platform is your standalone for? Is it multi-arch? Kind regards, Panos -- On Fri, 4 Nov 2022 at 17:45, matthias rebbe via use-livecode < use-livecode@lists.runrev.com> wrote: > Hello Panos, > > regarding the smaller size of standalone on macOS, iOS and Android > mentioned

Re: Printing Woes

2022-10-13 Thread panagiotis m via use-livecode
ot;I am getting more inquiries about teachers not being able to >> print. They can run RCM on their MacBook Air but they cannot print. Their >> macOS is 10.14.6." >> >> Another was on a MacBook Air (2017), macOS 12.6. >> >> What do you mean by "D

Re: Printing Woes

2022-10-13 Thread panagiotis m via use-livecode
rint. They can run RCM on their MacBook Air but they cannot print. Their > macOS is 10.14.6." > > Another was on a MacBook Air (2017), macOS 12.6. > > What do you mean by "Does the Console app show anything suspicious?" > > > -Dan > > > > On

Re: Adaptive Icon for Android

2022-10-13 Thread panagiotis m via use-livecode
Hello Klaus, What have you chosen as a Foreground layer (image, clip art or text) and what as a Background layer (color or image)? In fact, I suggest you file a report in quality.livecode.com and attach the sample stack and the icons so that we can investigate further. If the stack/icons are

Re: Printing Woes

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

Re: "normal" Android app icon looks strange in LC 9.6.9 rc1

2022-10-12 Thread panagiotis m via use-livecode
2 um 15:08 schrieb panagiotis m via use-livecode < > use-livecode@lists.runrev.com>: > > > > Hello Klaus, > > > > What you see is the expected result. In fact, this is the reason one has > to > > use adaptive icons. You can use adaptive icons for non Google Pl

Re: "normal" Android app icon looks strange in LC 9.6.9 rc1

2022-10-12 Thread panagiotis m via use-livecode
Hello Klaus, What you see is the expected result. In fact, this is the reason one has to use adaptive icons. You can use adaptive icons for non Google Play Store apps as well. So, when you use a legacy icon, which is a square png, this does not guarantee that the app icon in the Home screen will

Re: TSNet cache error

2022-10-11 Thread panagiotis m via use-livecode
Hello Jacque, Have you tried doing: do "location.reload()" in widget "myBrowser" just after setting the browser widget url property. Kind regards, Panos -- On Tue, 11 Oct 2022 at 02:30, J. Landman Gay via use-livecode < use-livecode@lists.runrev.com> wrote: > I have a browser widget in an

Re: Images in Push Messages

2022-09-27 Thread panagiotis m via use-livecode
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:46 AM, "use-livecode on behalf of panagiotis m vi

Re: Images in Push Messages

2022-09-27 Thread panagiotis m via use-livecode
Hello Dan, Have you provided a "Status Bar Icon" in the Android standalone settings? If yes, what icons have you tried? I think colored icons are no longer allowed, in recent Android versions. The icons have to be png images, and they need to be white on black or transparent only, otherwise they

Re: lc 9.8 with xc 13.2.1

2022-09-21 Thread panagiotis m via use-livecode
Also, what does this return (in the Terminal): xcode-select -p Cheers, Panos On Wed, 21 Sept 2022 at 10:24, panagiotis m wrote: > Hello Mike, > > Yes, 13.2.1 should work too. > > Where have you stored Xcode? Did you by any chance rename the Xcode.app > bundle? > > Kind regards, > Panos > -- >

Re: lc 9.8 with xc 13.2.1

2022-09-21 Thread panagiotis m via use-livecode
Hello Mike, Yes, 13.2.1 should work too. Where have you stored Xcode? Did you by any chance rename the Xcode.app bundle? Kind regards, Panos -- On Wed, 21 Sept 2022 at 00:04, Mike Kerner via use-livecode < use-livecode@lists.runrev.com> wrote: > The notes for 9.8 says it supports xc 13.2, and

Re: LC converts phone number to scientific notation

2022-09-09 Thread panagiotis m via use-livecode
Hello Klaus, I guess what happens here is that if you fetch item X of line Y and use it directly, LC treats it as a number and displays it in scientific notation. On the contrary, if you first put item X of line Y into a variable, then the variable is treated as text, so it is not converted.

Re: Text to speech

2022-09-02 Thread panagiotis m via use-livecode
Hello all, Yes, we discussed this topic in August's Problem Solving session. The stack presented supports text-to-speech in all platforms (including Linux and Web). Kind regards, Panos -- On Fri, 2 Sept 2022 at 00:36, Paul Dupuis via use-livecode < use-livecode@lists.runrev.com> wrote: > I

Re: A few issues with web apps

2022-08-19 Thread panagiotis m via use-livecode
Hello all, BTW, I just wrote a lesson on how to scroll a LC text field on Web using : https://lessons.livecode.com/m/2592/l/1595736-scrolling-a-livecode-text-field-on-web-using-javascript Cheers, Panos -- On Fri, 19 Aug 2022 at 16:22, Andreas Bergendal via use-livecode <

Re: A few issues with web apps

2022-08-19 Thread panagiotis m via use-livecode
Hello Andreas, To use Kangaroo's sample stack as is ( https://forums.livecode.com/viewtopic.php?f=120=36957) you have to tweak the custom standalone.html that is included in the Copy Files section and replace "" at line 213 with the correct version of LC 10 you're using, I guess in this case ""

Re: polylist toys

2022-08-19 Thread panagiotis m via use-livecode
Hello, Thank you all for the useful comments. I *think* the LCB feature in LC 10 Steven mentioned is the "is valid" operator, that returns a boolean value indicating whether or not the image data is valid. Also, note that in the upcoming releases of LC 10 we will add syntax for checking if a

Re: Separate app for iPad and iPhone?

2022-08-16 Thread panagiotis m via use-livecode
Hello Klaus, There is also an option for both ("iPod, iPhone and iPad") Cheers, Panos -- On Tue, 16 Aug 2022 at 14:34, Klaus major-k via use-livecode < use-livecode@lists.runrev.com> wrote: > Hi all, > > after wondering why on earth my former Android stack did not scale > to fit an iPad

Re: iPhone simulators

2022-08-10 Thread panagiotis m via use-livecode
Hello Klaus, The suggested approach is to make sure the desired simulator device is already up and running. And then, in the Test Target menu, choose "iPhone Simulator 15.2" or ""iPad Simulator 15.2", and click Test. PS: To change a device, click on the Simulator app menu Hardware -> Device ->

Re: Android API Level 31

2022-08-09 Thread panagiotis m via use-livecode
Hello Dan, This is a new requirement of the Google Play Store, i.e. new apps should target Android API 31. We are preparing a build of LC 9.6.9 RC-1 that among other bugfixes includes support for API31 too, it is currently in testing and should be good for release very soon. If you are urgently

Re: remoteDebugger error

2022-07-13 Thread panagiotis m via use-livecode
Hello all, @Bob Sneidar Are there any modal windows involved in the recipe? I think it is this bug: https://quality.livecode.com/show_bug.cgi?id=23758 Cheers, Panos -- On Thu, 14 Jul 2022 at 03:15, Bob Sneidar via use-livecode < use-livecode@lists.runrev.com> wrote: > Monte, I'll do that in

Re: Audio in Background

2022-06-27 Thread panagiotis m via use-livecode
lic/field/image/2017/10/ios-11-control-center-view-now-playing-screens-01.jpeg > > Is this possible? > > > -Dan > > > On 6/27/22, 8:49 AM, "use-livecode on behalf of panagiotis m via > use-livecode" use-livecode@lists.runrev.com> wrote: > > Hello

Re: Audio in Background

2022-06-27 Thread panagiotis m via use-livecode
Hello Dan, And probably you need to check "Background Audio" in the iOS standalone settings (in Requirements tab) Cheers, Panos -- On Mon, 27 Jun 2022 at 18:47, panagiotis m wrote: > Hello Dan, > > On iOS, I think you have to add this line in your openStack handler (or > elsewhere): > >

Re: Audio in Background

2022-06-27 Thread panagiotis m via use-livecode
Hello Dan, On iOS, I think you have to add this line in your openStack 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> wrote: > Happy Monday! I am using the native

Re: {OT} Are there any ffmpeg "experts" on this list?

2022-06-24 Thread panagiotis m via use-livecode
Hello Paul Not a ffmpeg expert, but have you seen the mediaFoundation library? See the dictionary entry for "mediaFoundationTranscode" - it has a detailed example for concatenating 2 media files. Hope this helps Kind regards, Panos -- On Fri, 24 Jun 2022 at 18:08, Paul Dupuis via use-livecode

Re: LC 9.6.7 and Applescript

2022-06-09 Thread panagiotis m via use-livecode
Hello jbv, This sounds like bug https://quality.livecode.com/show_bug.cgi?id=23576, which is fixed in LiveCode 9.6.8 rc1. Cheers, Panos -- On Thu, 9 Jun 2022 at 10:38, jbv via use-livecode < use-livecode@lists.runrev.com> wrote: > Hi list, > > I am trying to use an old stack made with LC 8.1

Re: Xcode

2022-05-24 Thread panagiotis m via use-livecode
Hello Klaus, You do not have to use the latest version of Xcode if your goal is to be able to deploy to the latest version of iOS. This is the reason we have not moved (yet) to a newer Xcode version - you can still use Xcode 13.2 to build apps that will run not only on devices running the

Re: Where is the pdf external in LC 9.6 and 10?

2022-05-19 Thread panagiotis m via use-livecode
Hello all, We will bring back XPDF, since it has some functionality that the PDF widget does not have, at least as of now :) https://quality.livecode.com/show_bug.cgi?id=23578 Kind regards, Panos -- On Thu, 19 May 2022 at 10:56, Klaus major-k via use-livecode < use-livecode@lists.runrev.com>

Re: LC subscription and special characters

2022-05-12 Thread panagiotis m via use-livecode
Hello Paul, Does Alt+A9 work for you? Cheers, Panos -- On Thu, 12 May 2022 at 10:04, jbv via use-livecode < use-livecode@lists.runrev.com> wrote: > Thank you all for your answers. > I am going to contact tech support to see if there is any solution to be > expected in the near future. > > FYI,

Re: Error: Unable to install app - Mac OS 11.5.2 , Xcode 13.2 (13C90), LC 9.6.7 en iOS 15.2

2022-05-08 Thread panagiotis m via use-livecode
Hello William, Could it be the case you have checked the "beta version" checkbox in the iOS standalone settings? Cheers, Panos On Sun, 8 May 2022, 17:12 Mark Smith via use-livecode, < use-livecode@lists.runrev.com> wrote: > Hi William, > > In the Standalone Application setting for iOS there

Re: Zip file problem on Mac

2022-05-05 Thread panagiotis m via use-livecode
Hello all, This sounds like this enhancement request https://quality.livecode.com/show_bug.cgi?id=9642 Kind regards, Panos -- On Thu, 5 May 2022 at 18:08, Bob Sneidar via use-livecode < use-livecode@lists.runrev.com> wrote: > Open a bug report and I will +1 it. > > Bob S > > > > On May 4,

Re: Quick Windows 11 test...

2022-04-13 Thread panagiotis m via use-livecode
Hello all, The function systemversion() returns 10.16.0 on MacOS Big Sur and above. This is something we should fix. As a workaround, until this is fixed, you can use this to get the system version on MacOS: function mySystemVersion get shell("sw_vers -productVersion") return it end

Re: Can't get jsonToArray in standalones ?

2022-04-04 Thread panagiotis m via use-livecode
the dictionary anymore in > LC 9.6.6,9.6.7, 10DDP2, 10DP3? > > Matthias > > > Am 04.04.2022 um 16:08 schrieb panagiotis m via use-livecode < > use-livecode@lists.runrev.com>: > > > > Hello Ben, > > > > You need to check megJSON. > > > > The JS

Re: Can't get jsonToArray in standalones ?

2022-04-04 Thread panagiotis m via use-livecode
I mean mergJSON, not megJSON :) Cheers, Panos On Mon, 4 Apr 2022, 17:08 panagiotis m, wrote: > Hello Ben, > > You need to check megJSON. > > The JSON Library inclusion is for JSONImport and JSONExport handlers. > > Cheers, > Panos > > On Mon, 4 Apr 2022, 16:28 Ben Rubinstein via use-livecode,

  1   2   >