More on ChatGPT and code stuff -- but with WordPress

2023-02-14 Thread Mark Rauterkus via use-livecode
Hi, Interesting video, IMHO. Love this guy. Plus, he just purchased my favorite WordPress page builder too, ThriveThemes. https://youtu.be/jVWNzXy8kUo Mark Rauterkus m...@rauterkus.com ___ use-livecode mailing list use-livecode@lists.runrev.com Please

Chat and textarea formatting

2023-02-14 Thread harrison--- via use-livecode
Greetings LC List Members, I have to create a little chat program with LiveCode on a LiveCode server. Currently I have a textarea text box to accept the user’s input, but it won’t keep any formatting at all, not even carriage returns, line feeds, or bold faced text. I also have to put that inform

Re: Chat and textarea formatting

2023-02-14 Thread Craig Newman via use-livecode
Hi. Not sure I understand. You have an editable field that you cannot type into? Do you get a blinking cursor in that field if you click inside it? Perhaps some properties for that field are such that LC is preventing access? Craig > On Feb 14, 2023, at 3:35 PM, harrison--- via use-livecode

Re: Chat and textarea formatting

2023-02-14 Thread harrison--- via use-livecode
Hi Craig, No. I have an HTML5 Here’s an example from W3Schools: textarea { resize: none; } The textarea element - Disable default resize option Review of W3Schools: At w3schools.com you will learn how to make a website. They offer free tutorials in all web development technologie

Re: Chat and textarea formatting

2023-02-14 Thread Alex Tweedly via use-livecode
It's not really a LC question, it's an HTML thing :-) textarea etc. only handle plain (unformatted) text. Googling for suggestions I can only find two common answers: 1. horribly complicated ways to add Javascript to your script to handle formatting 2. "use TinyMCE" I'd go for the second al

Re: Chat and textarea formatting

2023-02-14 Thread harrison--- via use-livecode
Hi Alex, Once the HTML is sent, then it becomes an LC thing, because I have to put the information into an LC variable, and then after doing a little work on it, put it into the database using LC database stuff. If LC had a way to provide direct inputs fields into webpages it would be a totally L