in reply to Re: Adding Slide to Powerpoint
in thread Adding Slide to Powerpoint
sub addMyFile{ my $file = shift; my $fullpath = "$edmdir\\$file"; my $addpres = $ppt->Presentations->Open( $fullpath ) or die "Can't + open PowerPoint file '$fullpath': $!\n"; my $j = 1; my $slide; my $newslide; while ($j < 10){ # this is hard coded while i figure out the bug +s, but it will be length of the file $newslide = $pres -> Slides->Add($slideIndex,$addpres->Slides( +$j)->Layout); $newslide = $addpres->Slides($j); $j++; $slideIndex++; } };
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: Adding Slide to Powerpoint
by traveler (Parson) on Feb 16, 2007 at 23:43 UTC | |
by ~~David~~ (Hermit) on Feb 17, 2007 at 00:00 UTC | |
by traveler (Parson) on Feb 17, 2007 at 00:14 UTC | |
by ~~David~~ (Hermit) on Feb 19, 2007 at 23:59 UTC | |
by traveler (Parson) on Feb 20, 2007 at 15:23 UTC |