Re: Where is the pdf external in LC 9.6 and 10?

2022-05-18 Thread Paul Dupuis via use-livecode
On 5/18/2022 4:55 PM, Klaus major-k via use-livecode wrote: Hi Paul, Am 18.05.2022 um 22:44 schrieb Paul Dupuis via use-livecode : It got removed from LC 9.6.6 and 9.6.7 and 10.0.0 dp 1 to 3. They (Livecode Support) said it would be back in LC 10.0.0 dp 4 and presumable and further

Re: Where is the pdf external in LC 9.6 and 10?

2022-05-18 Thread Matthias Rebbe via use-livecode
Ah thanks, Paul. I copied already the xpdf from an older LC version to LC 10DP3. But good to know that it will be back. XPDF allows me to get the imagedata of the currently rendered page and 'export' that as image. Matthias > Am 18.05.2022 um 22:44 schrieb Paul Dupuis via use-livecode > : >

Re: Where is the pdf external in LC 9.6 and 10?

2022-05-18 Thread Klaus major-k via use-livecode
Hi Paul, > Am 18.05.2022 um 22:44 schrieb Paul Dupuis via use-livecode > : > > It got removed from LC 9.6.6 and 9.6.7 and 10.0.0 dp 1 to 3. They (Livecode > Support) said it would be back in LC 10.0.0 dp 4 and presumable and further > releases in the 9.6.x series. I thought this has been

IDE Property Editor for Custom Properties error

2022-05-18 Thread Paul Dupuis via use-livecode
This bug probably won't impact many people, but I just reported bug https://quality.livecode.com/show_bug.cgi?id=23712 In older versions of LC you could have custom property keys that had commas in them, such as a key like "topic,subtopic" for a online help system. The current (and recent)

Re: Movie text tracks

2022-05-18 Thread Devin Asay via use-livecode
Sorry, I left out the punch line. My original need was simply to extract the text tracks from the old .mov files. It turns out you can do that, after a fashion, with QT Pro, but it comes out with lots of binary cruft. I found out you can also do this with ffmpeg, the Swiss Army Knife of video

Re: Where is the pdf external in LC 9.6 and 10?

2022-05-18 Thread Paul Dupuis via use-livecode
It got removed from LC 9.6.6 and 9.6.7 and 10.0.0 dp 1 to 3. They (Livecode Support) said it would be back in LC 10.0.0 dp 4 and presumable and further releases in the 9.6.x series. You can copy it from the 9.6.5 of earlier to the ccorresponding folder for LC 9.6.7. For example, on Windows it

Re: Movie text tracks

2022-05-18 Thread Devin Asay via use-livecode
Hi all, Thanks for the advice. I wanted to follow up with what I eventually ended up doing. So, both Jacque’s and Richmond’s suggestions were good, but too much work for just peeking at some text tracks. But they got me thinking: Hey, Windows 10 actually still runs QT 7, and I have an old QT

Re: Movie text tracks

2022-05-18 Thread Richard Gaskin via use-livecode
Good to see you here, Devin. If your app can handle the RAM hit of embedding a browser app instance with the Browser Widget, and if you can extract the text track info from QT's proprietary format, HTML supports text tracks nicely via the WebVTT standard:

Where is the pdf external in LC 9.6 and 10?

2022-05-18 Thread Matthias Rebbe via use-livecode
Hi all. I just wanted to update an older stack in LC10 that uses the xpdf external, but it seems that XPDF is not available anymore in LC. Further testing shows that at least also LC 9.6 and up does not have XPDF included anymore? Am i am missing something? I do not remember that XPDF was

Re: Set HTMLText and Get Effective HTMLText

2022-05-18 Thread Bob Sneidar via use-livecode
Haha! I forget sometimes that everything is just some bit of memory. I keep thinking for example that if I store values I want in a script local that it will somehow be much faster than a custom property of an object, but of course that can only be true if the code for accessing custom

Re: Set HTMLText and Get Effective HTMLText

2022-05-18 Thread Rick Harrison via use-livecode
Hi Paul, Thanks for this. I’ll keep this in mind for the future. I found that Bob’s simple suggestion of: put URL VarURL into VarHTMLText to work the best for me. Thanks again! Rick > On May 18, 2022, at 1:38 PM, Paul Dupuis via use-livecode > wrote: > > Instead of: > > set the

Re: Set HTMLText and Get Effective HTMLText

2022-05-18 Thread Paul Dupuis via use-livecode
Instead of: set the HTMLText of VarHTMLText to URL VarURL Use: set the HTMLText of the templateField to URL VarURL And instead of: get the effective HTMLText of VarHTMLText2 Use: get the effective HTMLText of the templateField ___ use-livecode

Re: Set HTMLText and Get Effective HTMLText

2022-05-18 Thread Rick Harrison via use-livecode
Hi Bob, That might be what I need, but I’ll have to look at the resulting code to see if that will work. Thanks, Rick > On May 18, 2022, at 12:43 PM, Bob Sneidar via use-livecode > wrote: > > put URL VarURL into VarHTMLText ___ use-livecode

Re: Movie text tracks

2022-05-18 Thread Richard Gaskin via use-livecode
Good to see you here, Devin. If your app can handle the RAM hit of embedding a browser app instance with the Browser Widget, and if you can extract the text track info from QT's proprietary format, HTML supports text tracks nicely via the WebVTT standard:

Re: Set HTMLText and Get Effective HTMLText

2022-05-18 Thread Mark Waddingham via use-livecode
On 2022-05-18 17:43, Rick Harrison via use-livecode wrote: I wish it worked with variables though because execution would be faster. If variables could manipulate styled text (aka htmlText) then they wouldn't be any faster than fields ;) Warmest Regards, Mark. -- Mark Waddingham ~

Re: Set HTMLText and Get Effective HTMLText

2022-05-18 Thread Bob Sneidar via use-livecode
Can't you just put URL VarURL into VarHTMLText ? Bob S > On May 18, 2022, at 09:40 , Rick Harrison via use-livecode > wrote: > > Thanks! It’s a bummer though, > because variables are much faster. > > Rick > >> On May 18, 2022, at 12:28 PM, Tore Nilsen via use-livecode >> wrote: >>

Re: Set HTMLText and Get Effective HTMLText

2022-05-18 Thread Rick Harrison via use-livecode
Hi Klaus, Thanks for getting back to me on this. That explains the problem. I wish it worked with variables though because execution would be faster. Oh well, at least it will do for now until we have the LC 10 compiler which will make it all faster! Rick > On May 18, 2022, at 12:29 PM,

Re: Set HTMLText and Get Effective HTMLText

2022-05-18 Thread Rick Harrison via use-livecode
Thanks! It’s a bummer though, because variables are much faster. Rick > On May 18, 2022, at 12:28 PM, Tore Nilsen via use-livecode > wrote: > > I would think it is because the htmlText is a property of a field. It is one > of the properties that it inherited by any field. The variable does

Re: Set HTMLText and Get Effective HTMLText

2022-05-18 Thread Bob Sneidar via use-livecode
If I may add something to this, the reason why the syntax did not throw an error at compile time is because the compiler does not know whether or not VarHTMLText is a variable that contains the value "field HTMLTextField1" or the name of any object to be precise. If it did then it would be

Re: Set HTMLText and Get Effective HTMLText

2022-05-18 Thread Klaus major-k via use-livecode
Hi Rick, > Am 18.05.2022 um 18:23 schrieb Rick Harrison via use-livecode > : > > This works: > set the HTMLText of field "HTMLTextField1" of this card to URL VarURL > > This doesn’t work: > set the HTMLText of VarHTMLText to URL VarURL > (The syntax is accepted fine, but it throws the

Re: Set HTMLText and Get Effective HTMLText

2022-05-18 Thread Tore Nilsen via use-livecode
I would think it is because the htmlText is a property of a field. It is one of the properties that it inherited by any field. The variable does not have this property. Best regards Tore Nilsen > 18. mai 2022 kl. 18:23 skrev Rick Harrison via use-livecode > : > > This works: > > set the

Set HTMLText and Get Effective HTMLText

2022-05-18 Thread Rick Harrison via use-livecode
This works: set the HTMLText of field "HTMLTextField1" of this card to URL VarURL This doesn’t work: set the HTMLText of VarHTMLText to URL VarURL (The syntax is accepted fine, but it throws the following error at execution time.) Chunk: error in object expression This works: get the

Re: Curved text possible?

2022-05-18 Thread William de Smet via use-livecode
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. >

Re: Curved text possible?

2022-05-18 Thread Sean Cole via use-livecode
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,

Re: Curved text possible?

2022-05-18 Thread William de Smet via use-livecode
@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

Re: Curved text possible?

2022-05-18 Thread Pi Digital via use-livecode
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 > wrote: > > Hi there,

Re: Curved text possible?

2022-05-18 Thread William de Smet via use-livecode
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=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