How to Copy/Insert All Elements of A Slide Within the Same Presentation
I am trying to write code that will take a slide and all of the elements on that slide, and duplicate it in another location in the same Slides presentation.
With my current code, I am able to get it to copy the slide over, but not the individual elements.
function summaryslide() {
var doc = SlidesApp.getActivePresentation();
var docId = doc.getId();
var copysrcSlideIndex = 1;
var copydstSlideIndex = 6;
var srcSlide = SlidesApp.getFileById(docId).getSlides[copysrcSlideIndex];
SlidesApp.getFileById(docId).insertSlide(copydstSlideIndex);
}
I need to 2 things to happen. I need to be able to copy over the entire slide to the next to last slide. There are 2 caveats to doing it though that I hope are solvable. The elements will likely not be the same each time, as this slide will be modified each time it's used. The number of slides in the presentation will likely be changing each time it's used. (The current code is based on a fixed number of slides.)
google-apps-script
add a comment |
I am trying to write code that will take a slide and all of the elements on that slide, and duplicate it in another location in the same Slides presentation.
With my current code, I am able to get it to copy the slide over, but not the individual elements.
function summaryslide() {
var doc = SlidesApp.getActivePresentation();
var docId = doc.getId();
var copysrcSlideIndex = 1;
var copydstSlideIndex = 6;
var srcSlide = SlidesApp.getFileById(docId).getSlides[copysrcSlideIndex];
SlidesApp.getFileById(docId).insertSlide(copydstSlideIndex);
}
I need to 2 things to happen. I need to be able to copy over the entire slide to the next to last slide. There are 2 caveats to doing it though that I hope are solvable. The elements will likely not be the same each time, as this slide will be modified each time it's used. The number of slides in the presentation will likely be changing each time it's used. (The current code is based on a fixed number of slides.)
google-apps-script
add a comment |
I am trying to write code that will take a slide and all of the elements on that slide, and duplicate it in another location in the same Slides presentation.
With my current code, I am able to get it to copy the slide over, but not the individual elements.
function summaryslide() {
var doc = SlidesApp.getActivePresentation();
var docId = doc.getId();
var copysrcSlideIndex = 1;
var copydstSlideIndex = 6;
var srcSlide = SlidesApp.getFileById(docId).getSlides[copysrcSlideIndex];
SlidesApp.getFileById(docId).insertSlide(copydstSlideIndex);
}
I need to 2 things to happen. I need to be able to copy over the entire slide to the next to last slide. There are 2 caveats to doing it though that I hope are solvable. The elements will likely not be the same each time, as this slide will be modified each time it's used. The number of slides in the presentation will likely be changing each time it's used. (The current code is based on a fixed number of slides.)
google-apps-script
I am trying to write code that will take a slide and all of the elements on that slide, and duplicate it in another location in the same Slides presentation.
With my current code, I am able to get it to copy the slide over, but not the individual elements.
function summaryslide() {
var doc = SlidesApp.getActivePresentation();
var docId = doc.getId();
var copysrcSlideIndex = 1;
var copydstSlideIndex = 6;
var srcSlide = SlidesApp.getFileById(docId).getSlides[copysrcSlideIndex];
SlidesApp.getFileById(docId).insertSlide(copydstSlideIndex);
}
I need to 2 things to happen. I need to be able to copy over the entire slide to the next to last slide. There are 2 caveats to doing it though that I hope are solvable. The elements will likely not be the same each time, as this slide will be modified each time it's used. The number of slides in the presentation will likely be changing each time it's used. (The current code is based on a fixed number of slides.)
google-apps-script
google-apps-script
asked Dec 31 '18 at 3:46
John K.John K.
63
63
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
You can use Slide.duplicate() and Slide.move() methods as shown below:
// Argument index starts with 0 for the first slide
// This is a source slide for duplicating
function duplicateSlideByIndex(index) {
var p = SlidesApp.getActivePresentation();
var slide = p.getSlides()[index].duplicate(); // duplicated slide
slide.move(p.getSlides().length);
}
add a comment |
Your Answer
StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53983404%2fhow-to-copy-insert-all-elements-of-a-slide-within-the-same-presentation%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
You can use Slide.duplicate() and Slide.move() methods as shown below:
// Argument index starts with 0 for the first slide
// This is a source slide for duplicating
function duplicateSlideByIndex(index) {
var p = SlidesApp.getActivePresentation();
var slide = p.getSlides()[index].duplicate(); // duplicated slide
slide.move(p.getSlides().length);
}
add a comment |
You can use Slide.duplicate() and Slide.move() methods as shown below:
// Argument index starts with 0 for the first slide
// This is a source slide for duplicating
function duplicateSlideByIndex(index) {
var p = SlidesApp.getActivePresentation();
var slide = p.getSlides()[index].duplicate(); // duplicated slide
slide.move(p.getSlides().length);
}
add a comment |
You can use Slide.duplicate() and Slide.move() methods as shown below:
// Argument index starts with 0 for the first slide
// This is a source slide for duplicating
function duplicateSlideByIndex(index) {
var p = SlidesApp.getActivePresentation();
var slide = p.getSlides()[index].duplicate(); // duplicated slide
slide.move(p.getSlides().length);
}
You can use Slide.duplicate() and Slide.move() methods as shown below:
// Argument index starts with 0 for the first slide
// This is a source slide for duplicating
function duplicateSlideByIndex(index) {
var p = SlidesApp.getActivePresentation();
var slide = p.getSlides()[index].duplicate(); // duplicated slide
slide.move(p.getSlides().length);
}
answered Jan 1 at 11:01
Александр ЕрмолинАлександр Ермолин
3815
3815
add a comment |
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53983404%2fhow-to-copy-insert-all-elements-of-a-slide-within-the-same-presentation%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown