Re: HTML font size in percentages

2022-05-20 Thread J. Landman Gay via use-livecode
Thanks for verifying it Paul, that's what I was thinking too. I'm looking at replacing the 
sizes via the style runs, I have a handler Mark Waddingham gave me/us on the list last year 
that I think I can modify.


But I'd be grateful to see yours too. No big hurry, I just need to get an idea of how to 
estimate my time at this point. Thank you very much.



On 5/20/22 2:08 PM, Paul Dupuis via use-livecode wrote:

You have to do replacement of the size value in the field's htmlText (or 
perhaps styledText)

I have code that does this. I can provide it to you if you like. I don't claim it is the bets 
or most effiecent. Unfortunately, I am gone for the rest of today, s tomorrow is the earliest I 
could send code to you.




On 5/20/2022 12:32 PM, J. Landman Gay via use-livecode wrote:
I have a field whose HTMLtext is set to a heavily tagged HTML file that changes the font size 
repeatedly. We want to allow the user to adjust the size of the text. The easiest way would 
be to use percentages for the font sizes so that changing the field's textsize would change 
the markup proportionally, but LC fields don't seem to support that. Is there a trick or do I 
need to do a series of replacements? I'm afraid that will be too slow, there's a lot of text.


--
Jacqueline Landman Gay | jac...@hyperactivesw.com
HyperActive Software | http://www.hyperactivesw.com




--
Jacqueline Landman Gay | jac...@hyperactivesw.com
HyperActive Software   | http://www.hyperactivesw.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


Re: HTML font size in percentages

2022-05-20 Thread J. Landman Gay via use-livecode

On 5/20/22 11:45 AM, Devin Asay via use-livecode wrote:

It sounds like the HTML tags are setting the size for runs of text in the 
field, so you can’t just set the textSize of the field?


I did try setting the text size of the field, and all untagged chunks reflect the new size as 
expected (default field text is 20 points.) But there are exceptions embedded in the text that 
require superscripts and/or other sizes for chapter headings and other things. It looks like this:


TEXT HERE shift="-6">TEXT HERETEXT HERETEXT 
HERETEXT HERE, ETC ETC


The text is too long for a single field so I'm using Trevor's dataView (thank you so much 
Trevor!) The text sizes and superscripts are footnotes, references, and other supplementary 
info. They are scattered liberally around in the text.


Untagged text responds well to the field text size, which I can easily change in the dataView 
template. But the superscripts text size and offset, and other changes do not because they are 
specifically indicated with integers. If I could use percentages, then changing the field text 
size would proportionally change everything else. But percentages don't work in my tests.


I wish we could use CSS in LC fields, but it isn't supported. I can't use any type of browser 
because we need features that a browser doesn't support.




Are there varying sizes of text runs in the field? Could you set the textSize 
of the char 1 to -1 of the field to empty, then set it for the whole field? In 
one project I’ve implemented a feature similar to what Bob was talking about 
where I increment the textSize of the field by 1 point using Cmd/Cntl + or -.


This is a mobile app, so no keyboard is available. It's been in the app stores for about a year 
but our main complaint from users is that the text is too small on a phone. We'd like to fix 
that. The choice of font size would be a setting in user prefs and the text would accomodate 
that whenever the app runs.



--
Jacqueline Landman Gay | jac...@hyperactivesw.com
HyperActive Software   | http://www.hyperactivesw.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


Re: HTML font size in percentages

2022-05-20 Thread Paul Dupuis via use-livecode
You have to do replacement of the size value in the field's htmlText (or 
perhaps styledText)


I have code that does this. I can provide it to you if you like. I don't 
claim it is the bets or most effiecent. Unfortunately, I am gone for the 
rest of today, s tomorrow is the earliest I could send code to you.




On 5/20/2022 12:32 PM, J. Landman Gay via use-livecode wrote:
I have a field whose HTMLtext is set to a heavily tagged HTML file 
that changes the font size repeatedly. We want to allow the user to 
adjust the size of the text. The easiest way would be to use 
percentages for the font sizes so that changing the field's textsize 
would change the markup proportionally, but LC fields don't seem to 
support that. Is there a trick or do I need to do a series of 
replacements? I'm afraid that will be too slow, there's a lot of text.


--
Jacqueline Landman Gay | jac...@hyperactivesw.com
HyperActive Software | http://www.hyperactivesw.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


Re: HTML font size in percentages

2022-05-20 Thread J. Landman Gay via use-livecode
The text has to be in a field for lots of reasons. Browsers and widgets are 
too limited.

--
Jacqueline Landman Gay | jac...@hyperactivesw.com
HyperActive Software | http://www.hyperactivesw.com
On May 20, 2022 11:40:12 AM Bob Sneidar via use-livecode 
 wrote:


I know that typically cmd +/- (or ctrl for Win) will increase or decrease 
the zoom of a web page. You can try that, or else use a browser widget. (I 
wonder if that trick would work in a widget?? It should...)


Bob S


On May 20, 2022, at 09:32 , J. Landman Gay via use-livecode 
 wrote:


I have a field whose HTMLtext is set to a heavily tagged HTML file that 
changes the font size repeatedly. We want to allow the user to adjust the 
size of the text. The easiest way would be to use percentages for the font 
sizes so that changing the field's textsize would change the markup 
proportionally, but LC fields don't seem to support that. Is there a trick 
or do I need to do a series of replacements? I'm afraid that will be too 
slow, there's a lot of text.


--
Jacqueline Landman Gay | jac...@hyperactivesw.com
HyperActive Software | http://www.hyperactivesw.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





___
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: HTML font size in percentages

2022-05-20 Thread Keith Clarke via use-livecode
Hi Jaque,
A lot will depend:
1) Whether the changes in font size within the nested HTML tags have been set 
locally or ‘more properly' as relative to the root font size of the page in 
‘rem’, where 1 rem = 100% of the root font-size).
2) you want a global font-size adjustment or more granular.

If you can set CSS in the page (via the browser widget of by inserting text 
into the HTML), you could try experimenting with setting the body or other 
outermost element font-size to 5rem to see if that affected sizing throughout?

For example, if the page it has a body tag, you could insert the following 
style block into the HTML header tag.


body {font-size: 5rem;}

  
Best,
Keith

> On 20 May 2022, at 17:32, J. Landman Gay via use-livecode 
>  wrote:
> 
> I have a field whose HTMLtext is set to a heavily tagged HTML file that 
> changes the font size repeatedly. We want to allow the user to adjust the 
> size of the text. The easiest way would be to use percentages for the font 
> sizes so that changing the field's textsize would change the markup 
> proportionally, but LC fields don't seem to support that. Is there a trick or 
> do I need to do a series of replacements? I'm afraid that will be too slow, 
> there's a lot of text.
> 
> --
> Jacqueline Landman Gay | jac...@hyperactivesw.com
> HyperActive Software | http://www.hyperactivesw.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


Re: HTML font size in percentages

2022-05-20 Thread Devin Asay via use-livecode
Jacque,

It sounds like the HTML tags are setting the size for runs of text in the 
field, so you can’t just set the textSize of the field?

Are there varying sizes of text runs in the field? Could you set the textSize 
of the char 1 to -1 of the field to empty, then set it for the whole field? In 
one project I’ve implemented a feature similar to what Bob was talking about 
where I increment the textSize of the field by 1 point using Cmd/Cntl + or -.

- Devin


On May 20, 2022, at 10:32 AM, J. Landman Gay via use-livecode 
mailto:use-livecode@lists.runrev.com>> wrote:

I have a field whose HTMLtext is set to a heavily tagged HTML file that changes 
the font size repeatedly. We want to allow the user to adjust the size of the 
text. The easiest way would be to use percentages for the font sizes so that 
changing the field's textsize would change the markup proportionally, but LC 
fields don't seem to support that. Is there a trick or do I need to do a series 
of replacements? I'm afraid that will be too slow, there's a lot of text.

--
Jacqueline Landman Gay | 
jac...@hyperactivesw.com
HyperActive Software | http://www.hyperactivesw.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

Devin Asay
Office of Digital Humanities
Brigham Young University

___
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: Maximum length of mySQL request ?

2022-05-20 Thread Bob Sneidar via use-livecode
OIC you are searching arrays to obtain your IDs. That would make sense because 
arrays are memory based. SQL is file based as in sqLite, or else accessed 
(typically) over a network which would account for the speed disparity. Of 
course, to be fail, you will have to add the time to search the arrays, THEN 
the time to query your SQL database with the IDs to make that comparison equal. 

Bob S


> On May 20, 2022, at 08:56 , jbv via use-livecode 
>  wrote:
> 
> Le 2022-05-20 11:24, Bob Sneidar via use-livecode a écrit :
>> I googled around a bit and there doesn't seem to be a limit on
>> statement length. I will say though that the nature of the query
>> indicates a possible design issue with the database. I suspect however
>> that you are at the mercy of someone else's schema. That there is no
>> common denominator you can query on is to me remarkable. How are you
>> obtaining your IDs then?
> 
> Thank you for your reply.
> I also did some google search before asking the question, but didn't
> find anything, only about the size of the data returned by mySQL.
> 
> What makes you think of a possible design issue ?
> The ids are auto-incremented every time a new entry is added to the
> table, and the ids in the request are obtained by intersecting various
> multi-dimensional arrays that make very complex searches very fast
> (less than 1 sec, when it takes 5 to 10 sec with regular SQL queries).
> 
> ___
> 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: HTML font size in percentages

2022-05-20 Thread Bob Sneidar via use-livecode
I know that typically cmd +/- (or ctrl for Win) will increase or decrease the 
zoom of a web page. You can try that, or else use a browser widget. (I wonder 
if that trick would work in a widget?? It should...)

Bob S


> On May 20, 2022, at 09:32 , J. Landman Gay via use-livecode 
>  wrote:
> 
> I have a field whose HTMLtext is set to a heavily tagged HTML file that 
> changes the font size repeatedly. We want to allow the user to adjust the 
> size of the text. The easiest way would be to use percentages for the font 
> sizes so that changing the field's textsize would change the markup 
> proportionally, but LC fields don't seem to support that. Is there a trick or 
> do I need to do a series of replacements? I'm afraid that will be too slow, 
> there's a lot of text.
> 
> --
> Jacqueline Landman Gay | jac...@hyperactivesw.com
> HyperActive Software | http://www.hyperactivesw.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


HTML font size in percentages

2022-05-20 Thread J. Landman Gay via use-livecode
I have a field whose HTMLtext is set to a heavily tagged HTML file that 
changes the font size repeatedly. We want to allow the user to adjust the 
size of the text. The easiest way would be to use percentages for the font 
sizes so that changing the field's textsize would change the markup 
proportionally, but LC fields don't seem to support that. Is there a trick 
or do I need to do a series of replacements? I'm afraid that will be too 
slow, there's a lot of text.


--
Jacqueline Landman Gay | jac...@hyperactivesw.com
HyperActive Software | http://www.hyperactivesw.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


Re: Maximum length of mySQL request ?

2022-05-20 Thread jbv via use-livecode

Le 2022-05-20 11:24, Bob Sneidar via use-livecode a écrit :

I googled around a bit and there doesn't seem to be a limit on
statement length. I will say though that the nature of the query
indicates a possible design issue with the database. I suspect however
that you are at the mercy of someone else's schema. That there is no
common denominator you can query on is to me remarkable. How are you
obtaining your IDs then?



Thank you for your reply.
I also did some google search before asking the question, but didn't
find anything, only about the size of the data returned by mySQL.

What makes you think of a possible design issue ?
The ids are auto-incremented every time a new entry is added to the
table, and the ids in the request are obtained by intersecting various
multi-dimensional arrays that make very complex searches very fast
(less than 1 sec, when it takes 5 to 10 sec with regular SQL queries).

___
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: Maximum length of mySQL request ?

2022-05-20 Thread jbv via use-livecode

Le 2022-05-20 08:00, Paul Dupuis via use-livecode a écrit :

You can save some characters by the following:

SELECT ... FROM myTable WHERE id IN (5523,7831,162814,34895,...)

which is the same as using multiple OR equals in your example.



Thank you. Yes I will try that.
And I have no idea why it didn't cross my mind... Perhaps because it's 
friday... :)


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: Maximum length of mySQL request ?

2022-05-20 Thread Bob Sneidar via use-livecode
I googled around a bit and there doesn't seem to be a limit on statement 
length. I will say though that the nature of the query indicates a possible 
design issue with the database. I suspect however that you are at the mercy of 
someone else's schema. That there is no common denominator you can query on is 
to me remarkable. How are you obtaining your IDs then? 

Bob S


> On May 20, 2022, at 03:34 , jbv via use-livecode 
>  wrote:
> 
> Hi list,
> 
> Is there a maximum length limit for mySQL requests ?
> I don't mean the results returned by mySQL, but the request itself.
> 
> For instance, I have a table with 18 entries and counting, and
> I will need to send requests such as :
> SELECT FROM myTable WHERE id = 5523 OR id = 7831 OR id = 162814 OR id = 
> 34895...
> and at times the request might concern 100 ids or even more.
> 
> I am not too concerned about execution speed, as id is a unique key,
> but rather for the request itself : I wonder if it might be truncated
> if too long...
> Or perhaps a better and safer practice would be to break it into a serie of
> shorter successive requests when it exceeds a certain threshold ?
> 
> 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


___
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: Maximum length of mySQL request ?

2022-05-20 Thread Paul Dupuis via use-livecode

You can save some characters by the following:

SELECT ... FROM myTable WHERE id IN (5523,7831,162814,34895,...)

which is the same as using multiple OR equals in your example.

If you need to break this up further, you can UNION the results of 
multiple queries, such as:


SELECT ... FROM myTable WHERE id IN (5523,7831,162814,34895,...) -- i.e. 
the first 100 or 1000 ids

UNION
SELECT ... FROM myTable WHERE id IN (100,512,,16545,...) -- the next 
100 or 1000 ids

UNION
... repeat as needed

On 5/20/2022 6:34 AM, jbv via use-livecode wrote:

Hi list,

Is there a maximum length limit for mySQL requests ?
I don't mean the results returned by mySQL, but the request itself.

For instance, I have a table with 18 entries and counting, and
I will need to send requests such as :
SELECT FROM myTable WHERE id = 5523 OR id = 7831 OR id = 162814 OR id 
= 34895...

and at times the request might concern 100 ids or even more.

I am not too concerned about execution speed, as id is a unique key,
but rather for the request itself : I wonder if it might be truncated
if too long...
Or perhaps a better and safer practice would be to break it into a 
serie of

shorter successive requests when it exceeds a certain threshold ?

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



___
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


Potential third party products

2022-05-20 Thread Heather Laine via use-livecode
Dear List Members,

We're conducting a general review of our vendor program and I was wondering if 
there are any lurking potential vendors on this list? Anyone with an addon for 
LiveCode they'd like to sell via our Extensions store? Or is there something 
you know of or find particularly useful, made by someone else, that you think 
would be a good candidate for a wider audience?

Probably best to reply to supp...@livecode.com  
rather than cluttering up the list.

Best Regards,

Heather

Heather Laine
Customer Services Manager
LiveCode Ltd
www.livecode.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


Maximum length of mySQL request ?

2022-05-20 Thread jbv via use-livecode

Hi list,

Is there a maximum length limit for mySQL requests ?
I don't mean the results returned by mySQL, but the request itself.

For instance, I have a table with 18 entries and counting, and
I will need to send requests such as :
SELECT FROM myTable WHERE id = 5523 OR id = 7831 OR id = 162814 OR id = 
34895...

and at times the request might concern 100 ids or even more.

I am not too concerned about execution speed, as id is a unique key,
but rather for the request itself : I wonder if it might be truncated
if too long...
Or perhaps a better and safer practice would be to break it into a serie 
of

shorter successive requests when it exceeds a certain threshold ?

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: Curved text possible?

2022-05-20 Thread Richmond Mathewson via use-livecode
If that is over your head, use my method, which you can find over on the
forums.

All 'pure' LiveCode.

Best, Richmond.

On Wed, 18 May 2022, 18:26 William de Smet via use-livecode, <
use-livecode@lists.runrev.com> wrote:

> Hi Sean,
>
> Incredible to see what HH did.
> That is way over my head.
> And so is LCB.
>
>
>
>
> groeten,
>
> William
>
>
>
>
> Op wo 18 mei 2022 om 14:16 schreef Sean Cole via use-livecode <
> use-livecode@lists.runrev.com>:
>
> > Actually, HH had put up this on his site and kept open for us kindly.
> > https://hh.on-rev.com/widgets/svgtext.html
> >
> > At the bottom he describes that it is possible to use SVG to define paths
> > for the text. How good are you at LCB in being able to manipulate what he
> > had achieved here?
> >
> > Sean
> >
> >
> > On Wed, 18 May 2022 at 12:57, William de Smet via use-livecode <
> > use-livecode@lists.runrev.com> wrote:
> >
> > > @Sean: Yes, a widget would be the best thing of course.
> > > Much appreciated!
> > >
> > > groeten,
> > >
> > > William
> > >
> > >
> > >
> > >
> > > Op wo 18 mei 2022 om 11:41 schreef Pi Digital via use-livecode <
> > > use-livecode@lists.runrev.com>:
> > >
> > > > There is a better way to do this using LCB. If you don’t mind
> waiting I
> > > > can pull something up. I’m out of office at the moment so can’t get
> to
> > my
> > > > files.
> > > >
> > > > Sean Cole
> > > > Pi Digital Productions Ltd
> > > >
> > > > eMail Ts & Cs
> > > >
> > > >
> > > > > On 18 May 2022, at 09:40, William de Smet via use-livecode <
> > > > use-livecode@lists.runrev.com> wrote:
> > > > >
> > > > > Hi there,
> > > > >
> > > > > I posted a curved text example (with use of the browser widget) on
> > the
> > > > > forum:
> > > > > https://forums.livecode.com/viewtopic.php?f=120&t=37027
> > > > >
> > > > > It works ok but still not satisfied with transparency.
> > > > > Maybe someone has a better idea on how to do that?
> > > > >
> > > > >
> > > > >
> > > > > groeten,
> > > > >
> > > > > William
> > > > >
> > > > >
> > > > >
> > > > >
> > > > > Op do 28 apr. 2022 om 17:42 schreef William de Smet <
> > > > williamdes...@gmail.com
> > > > >> :
> > > > >
> > > > >> Thanks!
> > > > >>
> > > > >> I came up with sort of the same idea yesterday evening and I am
> > > > >> tetsting it now.
> > > > >> I load a local html file within the browser widget with
> > circletype.js
> > > > >> added to the html file.
> > > > >>
> > > > >> A native textfield (and some extra code) writes back into the html
> > > file
> > > > >> and then I refresh the card.
> > > > >> A snapshot gives me the curved text.
> > > > >>
> > > > >> There is also Arctext,js that I want to test.
> > > > >>
> > > > >> I will come back later with my result.
> > > > >>
> > > > >> groeten,
> > > > >>
> > > > >> William
> > > > >>
> > > > >>
> > > > >>
> > > > >>
> > > > >> Op do 28 apr. 2022 om 17:24 schreef Ralph DiMola via use-livecode
> <
> > > > >> use-livecode@lists.runrev.com>:
> > > > >>
> > > > >>> +1
> > > > >>>
> > > > >>> Ralph DiMola
> > > > >>> IT Director
> > > > >>> Evergreen Information Services
> > > > >>> rdim...@evergreeninfo.net
> > > > >>>
> > > > >>> -Original Message-
> > > > >>> From: use-livecode [mailto:use-livecode-boun...@lists.runrev.com
> ]
> > On
> > > > >>> Behalf
> > > > >>> Of Bob Sneidar via use-livecode
> > > > >>> Sent: Thursday, April 28, 2022 11:18 AM
> > > > >>> To: How to use LiveCode
> > > > >>> Cc: Bob Sneidar
> > > > >>> Subject: Re: Curved text possible?
> > > > >>>
> > > > >>> Great ideas Martin. I'm going to grant you an honorary doctorate
> > from
> > > > the
> > > > >>> institute of Sly Laboratories.
> > > > >>>
> > > > >>> Bob S
> > > > >>>
> > > > >>>
> > > >  On Apr 28, 2022, at 08:10 , Martin Koob via use-livecode
> > > > >>>  wrote:
> > > > 
> > > >  I was thinking that SVG might work as someone else has said.
> > > > 
> > > >  At first I thought you could create individual files for each
> > letter
> > > > and
> > > > >>> number and put the path for a letter into a svg widget which you
> > > could
> > > > >>> rotate or scale.
> > > >  you would then have to calculate the angle of rotation and
> > location
> > > of
> > > > >>> each svg widget on a path.   But then when I tried rotating the
> svg
> > > > widget
> > > > >>> its scale would change as it rotated because the bounds of the
> rect
> > > > were
> > > > >>> changing. Then you would have to calculate the scale depending on
> > the
> > > > >>> rotation angle and that seemed a bit much.
> > > > 
> > > >  I also thought you could import the svg file as an image and
> > perhaps
> > > > >>> that
> > > > >>> would not have the odd behaviour when rotating.  I did not try
> that
> > > > >>> though.
> > > > 
> > > >  Then I found this.
> > > > 
> > > >  https://css-tricks.com/snippets/svg/curved-text-along-path/
> > > > >>> 
> > > > 
> > > >  it shows how to use css to