in Education by
I'm basically trying to build a game board. For simplicity's sake, imagine a Jeopardy! board. I'd like to be able to click on a square (imagine it says $200) and go to the question set for that square. Then, when I return to the main board, I'd like that square that I clicked on ($200) to be blank, so I know I've already clicked it. I want to be able to do this in a full screen presentation, without having to reload the slideshow at all. I'm thinking, hoping, I could do a script that would just straight-up replace the image of a screen with text on it, to an image of a blank screen, but I'd also be okay with building the slide with two layers of images - one with text above one without - and deleting the top layer when it's clicked. Click on and it becomes this: JavaScript questions and answers, JavaScript questions pdf, JavaScript question bank, JavaScript questions and answers pdf, mcq on JavaScript pdf, JavaScript questions and solutions, JavaScript mcq Test , Interview JavaScript questions, JavaScript Questions for Interview, JavaScript MCQ (Multiple Choice Questions)

1 Answer

0 votes
by
Replacing the image via script can be easily done by using the following script: function myFunction() { var image = SlidesApp.getActivePresentation().getSlides()[0].getImages()[0]; // Get the Drive image file with the given ID. var driveImage = DriveApp.getFileById('File ID of the new image'); image.replace(driveImage); } But unfortunately, assigning an image to act as a button to run script is only available on Google Spreadsheet. And by further checking it seems somebody already submitted a Feature Request for such a feature to be implemented on Google Slides as well. References: https://developers.google.com/apps-script/reference/slides/image#replace(BlobSource)

Related questions

0 votes
    what are the two methods to navigate through slides in a presentation Select the correct answer from above options...
asked Dec 15, 2021 in Education by JackTerrance
0 votes
    You can see miniature slides of the presentation in the ________ view. Select the correct answer from above options...
asked Nov 27, 2021 in Education by JackTerrance
0 votes
    The benefit of the _____ function is that it is the only way to perfectly repressed an R object in an ... Operations of R Programming Select the correct answer from above options...
asked Feb 13, 2022 in Education by JackTerrance
0 votes
    _________ is an online office suite, in which you can create, edit and share document, spreadsheet and ... YouTube Google Drive Select the correct answer from above options...
asked Dec 23, 2021 in Education by JackTerrance
0 votes
    _________ is an online office suite, in which you can create, edit and share document, spreadsheet and ... YouTube Google Drive Select the correct answer from above options...
asked Dec 23, 2021 in Education by JackTerrance
0 votes
    In Google Analytics session time is 30 minutes andhow to change it to 45 minutes?...
asked Oct 3, 2020 in Technology by JackTerrance
0 votes
    Is there an 'official' way to get all input elements of a form including those outside of the form ... Questions for Interview, JavaScript MCQ (Multiple Choice Questions)...
asked Feb 13, 2022 in Education by JackTerrance
0 votes
    I'm currently working on a project converting some training materials from one e-learning system to another, ... Questions for Interview, JavaScript MCQ (Multiple Choice Questions)...
asked Apr 20, 2022 in Education by JackTerrance
0 votes
    In _________ model, the configuration server automatically sends the updated configuration file if there is any change. 1. Both the options 2. Push 3. Pull...
asked Sep 18, 2021 in Technology by JackTerrance
0 votes
    Which plugin notifies whenever there is any change in file? a) gulp-notify b) gulp-watch c) ... Answers 🔗Source: Continuous Integration Interview Questions and Answers...
asked Dec 20, 2020 in Technology by Editorial Staff
0 votes
    Let's say I have the following simple table variable: declare @databases table ( DatabaseID int, Name ... Questions for Interview, JavaScript MCQ (Multiple Choice Questions)...
asked Mar 25, 2022 in Education by JackTerrance
0 votes
    I'm using google street view , i want to make users look around the street when they enter my ... JavaScript Questions for Interview, JavaScript MCQ (Multiple Choice Questions)...
asked Feb 9, 2022 in Education by JackTerrance
0 votes
    I'm using google street view , i want to make users look around the street when they enter my ... JavaScript Questions for Interview, JavaScript MCQ (Multiple Choice Questions)...
asked Feb 5, 2022 in Education by JackTerrance
0 votes
    Am trying to create a proxy for my hana db which will be called from a lamda function to write to ... JavaScript Questions for Interview, JavaScript MCQ (Multiple Choice Questions)...
asked Apr 7, 2022 in Education by JackTerrance
...