Re: PDF Widget

2021-04-23 Thread Klaus major-k via use-livecode
> Am 22.04.2021 um 15:17 schrieb Klaus major-k via use-livecode > : > > Hi all, > > as far as I know the "PDF widget" is only available in the > BUSINESS Version of Livecode. > > I already asked this in the past, but I would like to be > able to buy this widget separately. > > Any idea if

cameracontrol, knowing the physical resolution of the camera

2021-04-23 Thread Klaus major-k via use-livecode
Hi all, we have this wonderful "cameracontrol" in LC. :-) Is there a way to get the physical resolution of the devices camera BEFORE we do -> cameracontrollset "el camera", tRect Or at least its aspect ratio? Know what I mean? We definitively need this info to be able to set up a correct RECT f

Failed to get the keychain item

2021-04-23 Thread Tiemo via use-livecode
Hello, I am trying to notarize an app the first time. I followed Matthias exquisite LiveCode guideline for codesigning and notarizing and am using his nice helper tool. I created an app specific password online in my Apple-ID account and put it into the preferences of the notarize tool of Mat

Re: PDF Widget

2021-04-23 Thread Brian Milby via use-livecode
Either that or everyone that wants it has business edition? Sent from my iPhone > On Apr 23, 2021, at 7:09 AM, Klaus major-k via use-livecode > wrote: > >  > >> Am 22.04.2021 um 15:17 schrieb Klaus major-k via use-livecode >> : >> >> Hi all, >> >> as far as I know the "PDF widget" is only

Re: PDF Widget

2021-04-23 Thread Klaus major-k via use-livecode
> Am 23.04.2021 um 13:20 schrieb Brian Milby via use-livecode > : > > Either that or everyone that wants it has business edition? EVERYONE needs and wants it, but not everyone has the business edition! :-D > Sent from my iPhone > >> On Apr 23, 2021, at 7:09 AM, Klaus major-k via use-livecod

Re: PDF Widget

2021-04-23 Thread Tore Nilsen via use-livecode
Not everyone needs it. I had the business edition for a year and for what it is worth, the pdf-widget did not offer anything I needed. I had hoped I could use it for mark up and annotations but did not find a way to do that. I do however think that it would be a good thing if it was possible to

Re: Failed to get the keychain item

2021-04-23 Thread matthias rebbe via use-livecode
Tiemo Did you follow Step 7 Addendum 1 which describes how to add your password to the keychain. If you want to, you can call me by phone. It's easier to explain in German. ;) Regards Matthias Von meinem iPhone gesendet > Am 23.04.2021 um 13:14 schrieb Tiemo via use-livecode > : > > Hel

Re: PDF Widget

2021-04-23 Thread Klaus major-k via use-livecode
Hi Tore, > Am 23.04.2021 um 13:28 schrieb Tore Nilsen via use-livecode > : > > Not everyone needs it. that was just a little joke. :-) > I had the business edition for a year and for what it is worth, the > pdf-widget did not offer anything > I needed. I had hoped I could use it for mark up a

iOS push notifications on Windows

2021-04-23 Thread Andrew at MidWest Coast Media via use-livecode
The updated push notification lesson works great on macOS! https://lessons.livecode.com/m/4069/l/1380237-how-to-send-http-2-based-push-notifications-in-ios Can this be done from any other platform? I receive the following error when running the same codebase from a Windows standalone: 'sh' is n

Re: iOS push notifications on Windows

2021-04-23 Thread panagiotis merakos via use-livecode
Hello Andrew, The lesson was written and tested on a Mac. But yeah, on Windows, when trying to execute "sh /path/to/send.sh" either directly from the terminal or via the shell command using LC, it is expected to throw an error. You _might_ be able to work around this by changing the .sh extension

Re: Failed to get the keychain item

2021-04-23 Thread Bob Sneidar via use-livecode
That's because Germans use bigger words. :-) Bob S > On Apr 23, 2021, at 04:35 , matthias rebbe via use-livecode > wrote: > > If you want to, you can call me by phone. It's easier to explain in German. > ;) > > Regards > > Matthias > > Von meinem iPhone gesendet __

Re: iOS push notifications on Windows

2021-04-23 Thread Mark Waddingham via use-livecode
On 2021-04-23 16:11, panagiotis merakos via use-livecode wrote: Hello Andrew, The lesson was written and tested on a Mac. But yeah, on Windows, when trying to execute "sh /path/to/send.sh" either directly from the terminal or via the shell command using LC, it is expected to throw an error. You

Re: iOS push notifications on Windows

2021-04-23 Thread matthias rebbe via use-livecode
Hi, i see that among openssl also curl is used in the shell script. So shouldn't Livecode be able to do the curl stuff with tsNet instead? Matthias - Matthias Rebbe Life Is Too Short For Boring Code > Am 23.04.2021 um 17:54 schrieb Mark Waddingham via use-livecode > : > > On 2021-04-23 16

Show Tree widget row contents on hover?

2021-04-23 Thread Keith Clarke via use-livecode
Hi folks, I’m experimenting with a tree widget and indentation means that row content gets truncated, so I’m wondering if there is any simple way to show the current row’s content in a tooltip on hover? The dictionary doesn’t mention any mouse-related messages and the highlightedElement propert

Re: Show Tree widget row contents on hover?

2021-04-23 Thread HENRY LOWE via use-livecode
Keith, Take a look at the widget’s ActionInspect message. The actionInspect message is sent to the widget's script object when the inspect icon is clicked on. The inspect icon appears when the value string of a particular array element contains a newline character, OR if it is too large to fit

Re: Show Tree widget row contents on hover?

2021-04-23 Thread Keith Clarke via use-livecode
Thanks for responding Henry. I did try that property when I found no hover capability on the Tree widget. I set the widget to read-only and scripted... on actionInspect pPath put the arrayData of widget "Tree" into aContent replace comma with "][" in pPath answer aCont

Re: Show Tree widget row contents on hover?

2021-04-23 Thread Bob Sneidar via use-livecode
Is this what you are looking for? on mouseUp put the arrayData of widget "Tree View" into tDataA put tDataA [1] into tValue1 put tDataA [2] into tValue2 -- etc... end mouseUp I am unsure of what you are trying to do. Are you trying to put the items of a list into a tree view widget?

Re: Show Tree widget row contents on hover?

2021-04-23 Thread Bob Sneidar via use-livecode
Okay I see you are setting the tooltip. set the tooltip of widget "Tree View" to tDataA [1] or whatever the element is. Bob S > On Apr 23, 2021, at 11:13 , Bob Sneidar via use-livecode > wrote: > > Is this what you are looking for? > > on mouseUp > put the arrayData of widget "Tree Vi

Re: Show Tree widget row contents on hover?

2021-04-23 Thread Keith Clarke via use-livecode
Thanks Bob for the syntax for setting the widget’s tooltip. That’ll help once I have some sensible data appearing in the answer dialogue box that I can use in the tooltip. My key problem now is how to translate the comma-delimited path returned by the actionInspect function - pPath - of the for

Re: Show Tree widget row contents on hover?

2021-04-23 Thread J. Landman Gay via use-livecode
On 4/23/21 2:33 PM, Keith Clarke via use-livecode wrote: Thanks Bob for the syntax for setting the widget’s tooltip. That’ll help once I have some sensible data appearing in the answer dialogue box that I can use in the tooltip. My key problem now is how to translate the comma-delimited path r

IOS required SDK

2021-04-23 Thread J. Landman Gay via use-livecode
Apple will require SDK 14 for new or updated iOS apps. Due to incompatible 32-bit software, I'm still on Mojave. Does this mean I need to update to Big Sur or Catalina before I can build for iOS? I don't suppose there's any way to do it on Mojave? I've been dreading this... -- Jacqueline Landma

Re: IOS required SDK

2021-04-23 Thread Paul Dupuis via use-livecode
On 4/23/2021 5:02 PM, J. Landman Gay via use-livecode wrote: Apple will require SDK 14 for new or updated iOS apps. Due to incompatible 32-bit software, I'm still on Mojave. Does this mean I need to update to Big Sur or Catalina before I can build for iOS? I don't suppose there's any way to do

Re: IOS required SDK

2021-04-23 Thread J. Landman Gay via use-livecode
Thanks Paul, I was wondering about a VM. I've scanned Oracle's docs for all of 10 minutes but it looks a bit complicated. Did you need to partition your hard drive? It also says to put the OS intaller on a DVD but of course we don't have DVD drives any more. Does the mounted OS install image wor

Re: IOS required SDK

2021-04-23 Thread scott--- via use-livecode
I did it the other way around (just last month!) I set up a VM (Parallels) for running Catalina for older 32 bit apps. I was primarily trying to get my older Adobe CS6 apps to work… though even with all the original disks (and a drive), reinstalling ancient apps turned out to be more problematic

Re: IOS required SDK

2021-04-23 Thread Paul Dupuis via use-livecode
No need to partition drives with VMs. You *do* need a good chunk of free disk space, for example for Catalina, you probably want a minimum of a 50GB "drive" (a VM file on disk) and for Big Sur, I went to 100GB, but I have a 1TB hard disk. We also have a MacMini here with a bunch of external US