A few weeks ago, I shared a post about putting Drawings in Google Docs that are assigned in Google Classroom. After seeing some of the reactions, I realized that some educators either weren’t aware of the powers of Google Drawings or had never thought of using them in assignments with Google Classroom. I was all “whaaaaat!?” So, now I’m here to dial it back a notch… Let’s talk about assigning Google Drawings (not Drawings in Docs, just Drawings) in Google Classroom. First up: an animated GIF for your viewing pleasure; and then: a quick step-by-step of how to use Drawings in Classroom.
Tag: EduGIF
Creating & Locking Google Slides Backgrounds
If you’ve ever created assignments in Google Docs, Slides or Drawings for students to complete, you’re all too familiar with this struggle: students accidentally deleting, moving or modifying elements of the assignment.
Well, in Google Slides, there are 2 ways to prevent this from happening and here’s the easier of the two: put the content of the assignment in as a background. Then, the only way a student can delete, move or modify it would be to actually go into the background settings and change it…. which can’t be done by accident.
Let me show you how, first with an animated GIF and then with step-by-step instructions.
- Set up your slide with any text, images, etc.
- File > Download as > PNG Image (JPEG will work too)
- Clear off the slide.
- Click Background, then, next to Image, click Choose.
- Click the downloaded image file from Step 2.
- Voila! Send your assignment out in Classroom (or share it with students or have them make a copy).
Insert Drawings into Docs Being Assigned in Classroom
When given the chance, I’m always going to pick an assignment where students are creating their own representations of their mastery of learning standards. However, I know that it’s not realistic to expect this all the time. So, I can see the value in annotating images rather than just typing. Google Drawings and Google Slides are great platforms for this . . . but what if it’s part of a bigger activity that does involve typing? Well, insert a drawing into a document, put the picture in, and tell the students to annotate it! Check it out in the animated GIF below (typed instructions follow the GIF).
- In the Google Docs menu, click Insert > Drawing.
- In the Drawing that pops up, copy and paste in an image (or drag it in from a separate tab as I did in the GIF).
- Add instructions within the Drawing as needed.
- Click Save and Close to finish preparing the drawing.
- Assign the document in Google Classroom as Make a Copy for Each Student.
- When students open the document, instruct them to double-click on the image that they see to open up the drawing and annotate it.
Dropdown List in Google Sheets
Did you know that you could add a dropdown list of options to a cell (or cells, plural) in Google Sheets? This is nice for creating something like a “multiple-choice option,” but is also nice when you want to force your collaborators (or yourself!) to select from a specific list of choices.
It can be especially useful if you have formulas acting on that cell. For example, if you were keeping track of a budget and wanted different things (i.e., adding versus subtracting) to happen if a row was marked as a deposit, purchase or interest.
Here’s an animated GIF about how to do it followed, as usual, by a list of the steps.
Step 1: Click on the cell or cells that you plan to add the dropdown list to
Step 2: Right-click & select Data Validation
Step 3: In the dropdown by Criteria, select List of Items
Step 4: Type your options into the box, separating them with commas (I tend to alphabetize them)
Step 5: Click Save.
Updates to my GIF Creation Options Post
I made an update to my Comparing GIF Creation Options blog post to include some options that I’ve discovered over the last 9 months as well as a conclusion where I make recommendations based on your needs and situation. Check it out at the link below!
Add a Popup Message to your Google Docs
Ever wish that you could tell people something when they open up your Google Docs? Maybe “Make a copy of this document, answer the questions and share it with your teacher!” or “This is a draft!”
Well, it’s possible. Some simple coding in the script editor and you can make it happen. I know that some of you are thinking “Simple . . . . coding. . . !?” while making this face, but it’s true. Just follow the steps below and you’ll make it happen.
Before we jump into the how, or what it looks like, a few notes:
- Only Editors will be able to see the popup. In my testing, someone who is “can view” or “can comment” does not see the popup. Also, they have to be explicitly shared as editors, not just “anyone with the link can edit.”
- If you copy the document within your own account, the popup will appear on the copy as well.
- If someone shared on the document makes a copy, the popup will NOT appear on their copy.
- If you send the document out on Google Classroom as “Make a Copy for Each Student” it will NOT include the popup in those copies. I was bummed when I discovered this, because it would have been huge for teachers.
Now that you know those notes and limitations, let’s dive into it. First, an animated GIF of how to do it and then, below the GIF, the step by step with code that you can just copy and paste.
Step-by-Step Instructions:
- From within your Google Doc, click on Tools > Script Editor.
- Click on Untitled Project and rename the project.
- Replace the words myFunction with onOpen. (This is what tells it to run automatically)
- After the { type DocumentApp. (include the period)
- From the menu that pops up select getUi : Ui
- After {DocumentApp.getUi() type a period.
- From the menu that pops up select alert(String prompt) : Button
- In place of the word prompt type your popup message.
- Add quotation marks around your message (and inside of the parentheses).
- Click the save icon.
- Go back to your Doc, refresh and check it out!
Another note: You can actually edit the appearance of the popup with some HTML and CSS coding, but that would take me longer to explain that 1 GIF can handle!
Credits: I learned this from one of Google’s Applied Digital Skills Courses in the “Code Welcome Screen” Activity. You can learn about adding some formatting to your popup in that course.