Re: Powerpoint to LiveCode

2020-03-02 Thread Terry Judd via use-livecode
Hi Paul - I haven't done it although I have gone the other way, creating 
content/media with LiveCode and merging it (text, images, audio files) into a 
PPT template file (which is then converted to Keynote and exported as a video). 
Anyway, getting access to the screen content/media for each PPT screen is like 
you say relatively straightforward, not sure about parsing the slideX.xml files 
once you get it into an LC array though, like most MS generated files that 
structure looks very messy.

Terry...

On 3/3/20, 12:29 pm, "use-livecode on behalf of Paul Dupuis via use-livecode" 
 wrote:

Hi Rick,

Powerpoint can export to HTML, and while I have not looked at Keynote's 
HTML export, I think you would be just trading one problem at file 
parsing for another. Tools like PowerPoint and Keynote export to HTML 
with CSS, so you can't just:

set the htmlText of field x to URL tPresentationFile

You'd still have to parse the HTML/CSS into something LiveCode can 
understand.

Again, I know how to do this. My questions is: Has someone already done 
it or even part of it?


On 3/2/2020 7:39 PM, Rick Harrison via use-livecode wrote:
> Hi Paul,
>
> If you had access to a Mac you could import
> your Powerpoint presentation to Keynote, make
> whatever changes you want and then Export it
> as HTML. It’s really cool how it works.
>
> Keynote can also Export to Powerpoint too, as
> well as PDFs.
>
> Then import into LiveCode?
>
> Just my 2 cents.
>
> Rick
>
>> On Mar 2, 2020, at 4:04 PM, Paul Dupuis via use-livecode 
 wrote:
>>
>> Out of curiosity, has anyone created a library that will import  - the 
parts of a Powerpoint presentation that can be recreated in Livecode -  into a 
LiveCode stack?
>>
>> Of course .pptx files are actuall just ZIP archives with assorted XML 
files inside, while there is a path to importing .pptx files, it is not simple. 
Use revZIP to open the .pptx file, use revXML (or your howm grown xml parser) 
to extract the XML for each slide (each a separate file in the archive) and 
rectreate those slide elements support in LiveCode.
>>
>> So, I know HOW to do it.
>>
>> I am asking if any one has already built such a library (or even started 
it)?
>>
>> ___
>> 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



___
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: Powerpoint to LiveCode

2020-03-02 Thread Richard Gaskin via use-livecode

Bob Sneidar wrote:

> The XML parser is going to be the pig.

Would it?  I've found the revXML external to be pretty nice.

I was able to use it with the revZip external to transform Word/odoc 
into an LC styledText array in an afternoon (at least the basics I 
needed at the time).


--
 Richard Gaskin
 Fourth World Systems
 Software Design and Development for the Desktop, Mobile, and the Web
 
 ambassa...@fourthworld.comhttp://www.FourthWorld.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: Powerpoint to LiveCode

2020-03-02 Thread Paul Dupuis via use-livecode

Hi Rick,

Powerpoint can export to HTML, and while I have not looked at Keynote's 
HTML export, I think you would be just trading one problem at file 
parsing for another. Tools like PowerPoint and Keynote export to HTML 
with CSS, so you can't just:


set the htmlText of field x to URL tPresentationFile

You'd still have to parse the HTML/CSS into something LiveCode can 
understand.


Again, I know how to do this. My questions is: Has someone already done 
it or even part of it?



On 3/2/2020 7:39 PM, Rick Harrison via use-livecode wrote:

Hi Paul,

If you had access to a Mac you could import
your Powerpoint presentation to Keynote, make
whatever changes you want and then Export it
as HTML. It’s really cool how it works.

Keynote can also Export to Powerpoint too, as
well as PDFs.

Then import into LiveCode?

Just my 2 cents.

Rick


On Mar 2, 2020, at 4:04 PM, Paul Dupuis via use-livecode 
 wrote:

Out of curiosity, has anyone created a library that will import  - the parts of 
a Powerpoint presentation that can be recreated in Livecode -  into a LiveCode 
stack?

Of course .pptx files are actuall just ZIP archives with assorted XML files 
inside, while there is a path to importing .pptx files, it is not simple. Use 
revZIP to open the .pptx file, use revXML (or your howm grown xml parser) to 
extract the XML for each slide (each a separate file in the archive) and 
rectreate those slide elements support in LiveCode.

So, I know HOW to do it.

I am asking if any one has already built such a library (or even started it)?

___
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: Powerpoint to LiveCode

2020-03-02 Thread Rick Harrison via use-livecode
Hi Paul,

If you had access to a Mac you could import
your Powerpoint presentation to Keynote, make 
whatever changes you want and then Export it 
as HTML. It’s really cool how it works.  

Keynote can also Export to Powerpoint too, as 
well as PDFs.

Then import into LiveCode?

Just my 2 cents.

Rick

> On Mar 2, 2020, at 4:04 PM, Paul Dupuis via use-livecode 
>  wrote:
> 
> Out of curiosity, has anyone created a library that will import  - the parts 
> of a Powerpoint presentation that can be recreated in Livecode -  into a 
> LiveCode stack?
> 
> Of course .pptx files are actuall just ZIP archives with assorted XML files 
> inside, while there is a path to importing .pptx files, it is not simple. Use 
> revZIP to open the .pptx file, use revXML (or your howm grown xml parser) to 
> extract the XML for each slide (each a separate file in the archive) and 
> rectreate those slide elements support in LiveCode.
> 
> So, I know HOW to do it.
> 
> I am asking if any one has already built such a library (or even started it)?
> 
> ___
> 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: Powerpoint to LiveCode

2020-03-02 Thread Bob Sneidar via use-livecode
The XML parser is going to be the pig. 

Bob S


> On Mar 2, 2020, at 13:04 , Paul Dupuis via use-livecode 
>  wrote:
> 
> Out of curiosity, has anyone created a library that will import  - the parts 
> of a Powerpoint presentation that can be recreated in Livecode -  into a 
> LiveCode stack?
> 
> Of course .pptx files are actuall just ZIP archives with assorted XML files 
> inside, while there is a path to importing .pptx files, it is not simple. Use 
> revZIP to open the .pptx file, use revXML (or your howm grown xml parser) to 
> extract the XML for each slide (each a separate file in the archive) and 
> rectreate those slide elements support in LiveCode.
> 
> So, I know HOW to do it.
> 
> I am asking if any one has already built such a library (or even started it)?


___
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


Powerpoint to LiveCode

2020-03-02 Thread Paul Dupuis via use-livecode
Out of curiosity, has anyone created a library that will import  - the 
parts of a Powerpoint presentation that can be recreated in Livecode -  
into a LiveCode stack?


Of course .pptx files are actuall just ZIP archives with assorted XML 
files inside, while there is a path to importing .pptx files, it is not 
simple. Use revZIP to open the .pptx file, use revXML (or your howm 
grown xml parser) to extract the XML for each slide (each a separate 
file in the archive) and rectreate those slide elements support in LiveCode.


So, I know HOW to do it.

I am asking if any one has already built such a library (or even started 
it)?


___
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


[ANN] This Week in LiveCode 215

2020-03-02 Thread panagiotis merakos via use-livecode
Hi all,

Read about new developments in LiveCode open source and the open source
community in today's edition of the "This Week in LiveCode" newsletter!

Read issue #215 here: http://bit.ly/39hb2JJ

This is a weekly newsletter about LiveCode, focussing on what's been
going on in and around the open source project. New issues will be
released weekly on Mondays. We have a dedicated mailing list that will
deliver each issue directly to you e-mail, so you don't miss any!

If you have anything you'd like mentioned (a project, a discussion
somewhere, an upcoming event) then please get in touch.


-- 
Panagiotis Merakos 
LiveCode Software Developer

Everyone Can Create Apps 
___
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: Mysql library

2020-03-02 Thread Ludovic THEBAULT via use-livecode


> Le 2 mars 2020 à 17:44, matthias rebbe via use-livecode 
>  a écrit :
> 
> Hi,
> 
> the people at HostM  created a free API solution which allows  a LC Desktop 
> or Mobile app to communicate over https with a Maria DB (compatible with 
> MySQL) using Livecode Server.
> 
> You can download their api solution here 
> 



Thanks !



___
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: Mysql library

2020-03-02 Thread matthias rebbe via use-livecode
Hi,

the people at HostM  created a free API solution which allows  a LC Desktop or 
Mobile app to communicate over https with a Maria DB (compatible with MySQL) 
using Livecode Server.

You can download their api solution here 


Regards,

Matthias

-
Matthias Rebbe
Life Is Too Short For Boring Code

> Am 02.03.2020 um 14:22 schrieb Ludovic THEBAULT via use-livecode 
> :
> 
> Hello,
> 
> I need to connect to a remote mysql database which need a client that support 
> authentication protocol. I cannot tell the server to use the older password 
> hashing algorithm.
> 
> How do it ? (I’ve Livecode 9.6 indy).
> 
> Thanks !
> 
> Ludovic
> ___
> 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: test - ignore

2020-03-02 Thread Bob Sneidar via use-livecode
Jes.

Bob S


> On Mar 2, 2020, at 02:04 , Heather Laine via use-livecode 
>  wrote:
> 
> List restored again?
> 
> 
> 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


___
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


Demo of bending a polygon

2020-03-02 Thread Michael Kristensen via use-livecode
Hi there

I have put a demo of bending a polygon here

https://forums.livecode.com/viewtopic.php?f=8&t=33750 


Michael
___
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


Mysql library

2020-03-02 Thread Ludovic THEBAULT via use-livecode
Hello,

I need to connect to a remote mysql database which need a client that support 
authentication protocol. I cannot tell the server to use the older password 
hashing algorithm.

How do it ? (I’ve Livecode 9.6 indy).

Thanks !

Ludovic
___
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


test - ignore

2020-03-02 Thread Heather Laine via use-livecode
List restored again?


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