OsakaWebbie
Programmer
Is there a way one can construct a text file such that it can be input into Powerpoint and certain text becomes the title and text blocks of a new slide?
I want to have a database (Internet-based) of information, and using dynamic queries (in my case, in PHP) pull info from it and put it together in a way that it can make new slides in a Powerpoint file that already has the master slides the way I want things to look. Is there something I can do like this (total random idea, just to help you understand what I am imagining):
If instead of plain text like above, it's something like control characters, that's fine, but binary code (like actually making a real .ppt file) would be a bit too difficult for me to do in code. So I'm hoping there's some method with a text file.
If this kind of thing is possible, then I have two questions:
(1) what should the formatting of the text file be (or point me to a resource that tells me)?
(2) how do I get Powerpoint to read my file into a presentation at a specified point (e.g. before or after the current slide)?
Thanks for any guidance you can give.
I want to have a database (Internet-based) of information, and using dynamic queries (in my case, in PHP) pull info from it and put it together in a way that it can make new slides in a Powerpoint file that already has the master slides the way I want things to look. Is there something I can do like this (total random idea, just to help you understand what I am imagining):
Code:
[new slide]
[title]
My Title
[text]
Text line 1
Text line 2
[new slide]...
If instead of plain text like above, it's something like control characters, that's fine, but binary code (like actually making a real .ppt file) would be a bit too difficult for me to do in code. So I'm hoping there's some method with a text file.
If this kind of thing is possible, then I have two questions:
(1) what should the formatting of the text file be (or point me to a resource that tells me)?
(2) how do I get Powerpoint to read my file into a presentation at a specified point (e.g. before or after the current slide)?
Thanks for any guidance you can give.