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?

-Dan
___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode


Re: LCB development (LCB CLM module)

2023-03-15 Thread Ben Rubinstein via use-livecode

Thanks Mike, if I can contribute anything useful I will.

Ben

On 15/03/2023 12:22, Mike Kerner via use-livecode wrote:

We have the beginnings of a missing manual for LCB, so it might be helpful,
and as you learn things, it would be great if you would throw issues at the
the repo:
https://github.com/macMikey/LCB-missing-manual

On Wed, Mar 15, 2023 at 6:43 AM Ben Rubinstein via use-livecode <
use-livecode@lists.runrev.com> wrote:


I didn't even know (had forgotten) that there was an extension builder!
That's
great.

Searching the archives to find out where this special thing could be
obtained
from (hint for my future self, it's in the IDE under the Tools menu) I
found
references to the Extending LiveCode guide... which is obviously what I
should
have read in the first place.

Thanks all!

Ben

On 14/03/2023 18:02, Mark Wieder via use-livecode wrote:

On 3/14/23 10:08, Ben Rubinstein via use-livecode wrote:

I last dabbled with LCB about five years ago - but now I have a need to

get

in there again.

Are there any tips that you-all can share?

In particular:

- what if anything is available for debugging LCB widgets?

- I've found a reference to a LiveCode Builder CLM module developed by

James

Hale - where might I find this?

- a really basic question - if I make a change to an LCB widget,

defined in

~/Documents/LiveCode/Extensions; what's the quickest route to testing

it?

Can I delete and re-add the widget? Or do close+remove-from-memory the
stack, and then reopen it? Or do I need to quit and relaunch LiveCode

in

order to see the change?

- any other pointers or suggestions gratefully received.


Use the extension builder to test the widget. I keep a text editor open

to

edit the code and press the test button after editing. No need to

relaunch

either the builder or the IDE. Debugging is minimal.

I've found very little documentaion on LCB, and much of what I've found

is

either out of date or partial or wrong.



___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your
subscription preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode






___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode


Re: BBEdit/Textwrangler LCM for livescript

2023-03-15 Thread Ben Rubinstein via use-livecode

The links below, alas, are no longer live (well it has been seven+ years).

Are these CLMs or later versions available anywhere?

Many thanks,

Ben


On 10/09/2015 15:35, jameshale wrote:

Updated livecodeBuilder CLM to adjust function regex so that function names
appear in BBEdit's function popup

https://dl.dropboxusercontent.com/u/8212901/LiveCodeBuilder.plist


James



--
View this message in context: 
http://runtime-revolution.278305.n4.nabble.com/BBEdit-Textwrangler-LCM-for-livescript-tp4696091p4696217.html
Sent from the Revolution - User mailing list archive at Nabble.com.

___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode



___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode


Livecode / MariaDB UTF8 charset

2023-03-15 Thread jbv via use-livecode

Hi list,

I am struggling to configure the charset of a mySQL/MariaDB table
on my Livecode Hosting account.
I have a huge number of utf8 files containing names in various
alphabets (european, cyrillic, japanese, chinese, arabic...) and
I need to insert each name as a separate entry in the table.
When I run a LC script on my Mac to build a large number of
"INSERT INTO..." requests (1 for each name) and then copy/paste
these requests in phpMyAdmin, with the table charset as the default
one : utf8mb3_unicode_ci, it works : each name shows in its own 
alphabet.

But if I run the same script on the server, every character beyond
ascii 256 shows up as "?"...
I have tried other charsets, but to no avail.

My script is rather simple : a main loop that opens successively each
file (open file tfile for UTF8 read), builds the request and then runs
the sql request.

What am I doing wrong ?
Thank you in advance.

jbv

___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode


Re: LCB development

2023-03-15 Thread Mike Kerner via use-livecode
We have the beginnings of a missing manual for LCB, so it might be helpful,
and as you learn things, it would be great if you would throw issues at the
the repo:
https://github.com/macMikey/LCB-missing-manual

On Wed, Mar 15, 2023 at 6:43 AM Ben Rubinstein via use-livecode <
use-livecode@lists.runrev.com> wrote:

> I didn't even know (had forgotten) that there was an extension builder!
> That's
> great.
>
> Searching the archives to find out where this special thing could be
> obtained
> from (hint for my future self, it's in the IDE under the Tools menu) I
> found
> references to the Extending LiveCode guide... which is obviously what I
> should
> have read in the first place.
>
> Thanks all!
>
> Ben
>
> On 14/03/2023 18:02, Mark Wieder via use-livecode wrote:
> > On 3/14/23 10:08, Ben Rubinstein via use-livecode wrote:
> >> I last dabbled with LCB about five years ago - but now I have a need to
> get
> >> in there again.
> >>
> >> Are there any tips that you-all can share?
> >>
> >> In particular:
> >>
> >> - what if anything is available for debugging LCB widgets?
> >>
> >> - I've found a reference to a LiveCode Builder CLM module developed by
> James
> >> Hale - where might I find this?
> >>
> >> - a really basic question - if I make a change to an LCB widget,
> defined in
> >> ~/Documents/LiveCode/Extensions; what's the quickest route to testing
> it?
> >> Can I delete and re-add the widget? Or do close+remove-from-memory the
> >> stack, and then reopen it? Or do I need to quit and relaunch LiveCode
> in
> >> order to see the change?
> >>
> >> - any other pointers or suggestions gratefully received.
> >
> > Use the extension builder to test the widget. I keep a text editor open
> to
> > edit the code and press the test button after editing. No need to
> relaunch
> > either the builder or the IDE. Debugging is minimal.
> >
> > I've found very little documentaion on LCB, and much of what I've found
> is
> > either out of date or partial or wrong.
> >
>
> ___
> use-livecode mailing list
> use-livecode@lists.runrev.com
> Please visit this url to subscribe, unsubscribe and manage your
> subscription preferences:
> http://lists.runrev.com/mailman/listinfo/use-livecode
>


-- 
On the first day, God created the heavens and the Earth
On the second day, God created the oceans.
On the third day, God put the animals on hold for a few hours,
   and did a little diving.
And God said, "This is good."
___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode


Re: LCB development

2023-03-15 Thread Ben Rubinstein via use-livecode
I didn't even know (had forgotten) that there was an extension builder! That's 
great.


Searching the archives to find out where this special thing could be obtained 
from (hint for my future self, it's in the IDE under the Tools menu) I found 
references to the Extending LiveCode guide... which is obviously what I should 
have read in the first place.


Thanks all!

Ben

On 14/03/2023 18:02, Mark Wieder via use-livecode wrote:

On 3/14/23 10:08, Ben Rubinstein via use-livecode wrote:
I last dabbled with LCB about five years ago - but now I have a need to get 
in there again.


Are there any tips that you-all can share?

In particular:

- what if anything is available for debugging LCB widgets?

- I've found a reference to a LiveCode Builder CLM module developed by James 
Hale - where might I find this?


- a really basic question - if I make a change to an LCB widget, defined in 
~/Documents/LiveCode/Extensions; what's the quickest route to testing it? 
Can I delete and re-add the widget? Or do close+remove-from-memory the 
stack, and then reopen it? Or do I need to quit and relaunch LiveCode in 
order to see the change?


- any other pointers or suggestions gratefully received.


Use the extension builder to test the widget. I keep a text editor open to 
edit the code and press the test button after editing. No need to relaunch 
either the builder or the IDE. Debugging is minimal.


I've found very little documentaion on LCB, and much of what I've found is 
either out of date or partial or wrong.




___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode