SitePoint Sponsor |
|
User Tag List
Results 1 to 2 of 2
-
May 21, 2009, 03:06 #1
How to copy ppt slide backgrounds
Hey guys
I'm developing an application that creates ppt files on the fly by copying slides from chosen presentation(s) into their own custom presentation, so far so good
This is the code that currently copies the slide from the source to the target
PHP Code:$source->Slides((int)$slideNumber)->Copy;
$target->Slides->Paste($counter);
//Copy slide design
$target->Slides((int)$counter)->Design = $source->Slides((int)$slideNumber)->Design;
//Need to copy slide background
Could anybody advise on how to do this, or does anybody know a good reference guide?
Any help would be much appreciated
Thanks in advance
Crabby
-
May 21, 2009, 03:52 #2
Bookmarks