Re: Align baselines of 2 fields

2018-06-20 Thread dunbarxx via use-livecode
So I played around just a little. Make a new field and set its Textheight property. For the first line, this will be a certain number of pixels below the top of the field. Each subsequent line will be a multiple of that value. So if you know the baseLine of any line of text, and you know the

Re: Align baselines of 2 fields

2018-06-20 Thread dunbarxx via use-livecode
Right. I do not think there is a "baseLine" property. But again, if you play around with the properties I mentioned above, all of which are in pixels, I bet you can create a handler that will determine the "baseLineV" of any text in a field, and you can then match two fields together. This would

Re: WordPress REST API's

2018-06-20 Thread Simon Smith via use-livecode
Hi Stephen Depending on what you are wanting to do, the WordPress API also supports Application Passwords (https://wordpress.org/plugins/application-passwords/) Basic Authentication (https://github.com/WP-API/Basic-Auth) and JSON web tokens

Re: Align baselines of 2 fields

2018-06-20 Thread Bob Sneidar via use-livecode
I checked the dictionary. There is no entry for the baseline of anything. Bob S > On Jun 20, 2018, at 14:34 , Knapp Martin via use-livecode > wrote: > > The baseline of the text. > > Marty > >> On Jun 20, 2018, at 2:32 PM, dunbarxx via use-livecode >> wrote: >> >> Hi. >> >> Do you

Re: Align baselines of 2 fields

2018-06-20 Thread dunbarxx via use-livecode
I am sure that with the margins, textHeight and textSize properties you can calculate how to set the text baseline of one field to that of another. A small textSize will require a smaller third margin, for example, and that must take into account the textHeight as a further component. Craig --

Re: Align baselines of 2 fields

2018-06-20 Thread Knapp Martin via use-livecode
The baseline of the text. Marty > On Jun 20, 2018, at 2:32 PM, dunbarxx via use-livecode > wrote: > > Hi. > > Do you mean the bottom of the field control, or the baseline of the text? > All are doable. > > Craig Newman > > > > -- > Sent from: >

Re: Align baselines of 2 fields

2018-06-20 Thread dunbarxx via use-livecode
Hi. Do you mean the bottom of the field control, or the baseline of the text? All are doable. Craig Newman -- Sent from: http://runtime-revolution.278305.n4.nabble.com/Revolution-User-f278306.html ___ use-livecode mailing list

Re: WordPress REST API's

2018-06-20 Thread Stephen MacLean via use-livecode
Thanks Tom, appreciate the input! Best, Steve > On Jun 20, 2018, at 4:51 PM, Tom Glod via use-livecode > wrote: > > Hmmm...maybe Todd can chime in on this I asked him a a few months back > if it was good and safe to use in production...he said absolutely...so i > kinda passed that on. >

Re: WordPress REST API's

2018-06-20 Thread Tom Glod via use-livecode
Hmmm...maybe Todd can chime in on this I asked him a a few months back if it was good and safe to use in production...he said absolutely...so i kinda passed that on. Todd reads the mailing list, but he is super busy. if its critical. then maybe try to reach out directly and ask. He

Re: WordPress REST API's

2018-06-20 Thread Stephen MacLean via use-livecode
HI Todd, Thanks, I have it and am trying to use it. Looks like I need an oAuth plug-in for wordpress that allows user credentials as I am running a self hosted site. The one I’ve found so far that finally is giving me results is WP OAuth Server… but to get the user credentials, you need the

Re: Sparkle macOS App Updater extension for LC 9 [First Pass]

2018-06-20 Thread Knapp Martin via use-livecode
Great to hear Trevor! Looking forward to diving into Levure and the Sparkle updater is very needed. Marty > On Jun 19, 2018, at 7:06 PM, Trevor DeVore via use-livecode > wrote: > > Hi all, > > I've been doing quite a bit of work with the Foreign Function Interface > (FFI) in LiveCode

unicode & umlauts

2018-06-20 Thread Eric A. Engle via use-livecode
I am working on a stack using Chinese characters and German umlauts. On windows, pasting the clipboard into Metacard (yes) works fine; Pasting into Livecode 9 on Linux fails (it may be my own machine's fonts' fault?) Pasting unicode into livecode 9 on windows also works. So I guess this is my

Re: WordPress REST API's

2018-06-20 Thread Tom Glod via use-livecode
Hey. You can find it on github. DP use it for their work. So it worksI was planning on using it on a project, but it fell through so I haven't needed it yet. https://github.com/digitalpomegranate/livecode-wp-restapi This is a well written library. On Wed, Jun 20, 2018 at 3:56 PM, Stephen

Re: Navbar widget limitations

2018-06-20 Thread Klaus major-k via use-livecode
Hi Andrew, > Am 20.06.2018 um 21:31 schrieb Andrew Bell via use-livecode > : > > I've had growing frustration with adding items and changing itemNames of new > items in the Navigation Bar widget. Today I finally took the time to attempt > and recreate/troubleshoot the issue which led me to

Re: (somewhat) OT: Bill Atkinson on HC - but rather Vannevar Bush in July 1945

2018-06-20 Thread sanke--- via use-livecode
On Tue, 19 Jun 2018 14:42:49 + Bob Sneidar wrote: So we are all just a part of Bill's acid trip eh? Nice. Bob S On Jun 18, 2018, at 19:01 , Mark Wieder via use-livecode wrote: http://www.mondo2000.com/2018/06/18/the-inspiration-for-hypercard/ -- Mark Wieder ahsoftw...@gmail.com I

WordPress REST API's

2018-06-20 Thread Stephen MacLean via use-livecode
Hi All, Trying to get an update on the WordPress REST API’s… Was this coming in with LiveCode Connect? or something else? Also, does anyone have any experience successfully using Digital Pomegranates’s WPRestAPI? I am unsure of the authentication used and nothing seems to work. Any help is

Re: Navbar widget limitations

2018-06-20 Thread Klaus major-k via use-livecode
Hi Andrew, > Am 20.06.2018 um 21:44 schrieb Klaus major-k via use-livecode > : > > Hi Andrew, > >> Am 20.06.2018 um 21:31 schrieb Andrew Bell via use-livecode >> : >> >> I've had growing frustration with adding items and changing itemNames of new >> items in the Navigation Bar widget. Today

Re: Navbar widget limitations

2018-06-20 Thread Klaus major-k via use-livecode
Hi Andrew, > Am 20.06.2018 um 21:31 schrieb Andrew Bell via use-livecode > : > > I've had growing frustration with adding items and changing itemNames of new > items in the Navigation Bar widget. Today I finally took the time to attempt > and recreate/troubleshoot the issue which led me to

Navbar widget limitations

2018-06-20 Thread Andrew Bell via use-livecode
I've had growing frustration with adding items and changing itemNames of new items in the Navigation Bar widget. Today I finally took the time to attempt and recreate/troubleshoot the issue which led me to filing two bug reports. One major limitation I discovered was that the widget only

Align baselines of 2 fields

2018-06-20 Thread Knapp Martin via use-livecode
I have a user customizable stack that has a label field, then just to the right of that a field with user content. The user is able to customize the font and size of both the label field and the content field individually. Both fields are just 1 line. Is there a way to calculate where the

Re: Is anyone using tsNet external with LCserver?

2018-06-20 Thread Matthias Rebbe via use-livecode
For those who are interested. I´ve sent a pro support request for my problem to get tsNet working with Livecode Server. It seems its not so easy to get it working. Support team has now created a bug report for the problem. bug 21377