Playing part of a YouTube clip in Google Slides

Google Slides is one of my favourite educational technology solutions and recently I discovered another extremely useful feature. As an educator, I often want to show my classes just part of YouTube clip. That might be because only part of it is relevant, there is not enough time to show the full clip or it may contain content that might be confronting and I would rather give students the choice to view it if it is not essential for the lesson.

So I’ve messed around with a number of different solutions – none of which seemed to work effectively, much to my frustration. And then, quite by accident, I found out I could set start and end times for YouTube clips embedded in a Google Slides presentation. What a revelation!

See below for full instructions.

Set YouTube clip start & end times using Google Slides video tutorial

Instructions

  • Open your Google Slides presentation and insert your selected YouTube clip.
  • Right click the YouTube clip in your presentation.
  • From the pop-up menu, select “Video options…”
  • You will see 2 fields where you can enter where you would like the clip to start and finish.

And that’s it! Below is a short video tutorial showing you how it all works.

QR code fun with Google Chrome

What are QR codes & why should you care?

QR code is short for ‘quick response’ code. It is a type of bar code that can be scanned by a smartphone or Scanning QR codes using Google Chrome on iOStablet that has the required app installed needed to interpret the QR code. QR codes are being used for:

  • manufacturing
  • tracking items
  • promotions and advertising
  • product labelling

QR codes in education have been on the fringes of ’emerging’ technology for a while. There are some educators who swear by them and use them in interesting ways to create engaging and effective learning experiences. Now, Google have added a feature to the Chrome app on iOS allowing users to scan QR codes without needing an extra app! This is great for users of G Suite for Education and educators operating in a locked down tech environment that does not allow you to add apps to iPads or iPods.

The great news is QR code technology and ideas are not hard to understand and there are plenty of resources and ideas to have you up and running today. All you need is an iPad, iPod or iPhone and an updated version of Chrome (plus a teeny pit of prep/printing).

Note: other operating systems can also scan QR codes but you will need a separate app that will scan the code.

Using QR codes in the classroom

The good news is many educators have shared their ideas and resources on using QR codes in the classroom so you don’t have to reinvent the wheel. Below is a Pinterest board of resources to get you started.

One of my favourite QR code activities is the scavenger hunt. It can be used across many subject areas and gets students up and moving.

https://au.pinterest.com/eeeveedee/using-qr-codes-in-the-classroom/

Scanning QR codes using Google Chrome (iOS)

If you have an up-to-date version of the Chrome app on your iOS device (iPad, iPod or iPhone) you have everything you need to start scanning QR codes – no separate apps needed.

There are 2 ways of accessing the QR code scanning feature in Chrome:

  • 3D touch of the Chrome icon (newer devices)
  • Using spotlight search and searching for ‘QR’

The short video below takes you through step-by-step on using both of these methods.

Gamify your classroom with Google Forms

Gamification and badges in education have been ideas floating around for a few years now. Some educators have jumped on the band wagon only to abandon the concept soon after. Often, one of the obstacles to effective implementation is proper technological support (1). The good news is Google Forms is a relatively simple (and free!) tool to help implement gamification elements into education.

What are “badges” & “gamificationGamification and badges in education using Google Forms“?

Badges in education and the idea of gamification is one way teachers can help motivate students in the classroom and help students keep track of effort and achievement.

Gamification can be defined as:

the concept of applying game mechanics and game design techniques to engage and motivate people to achieve their goals.

Source: https://badgeville.com/wiki/Gamification

The idea is much like the concept behind the Scouts movement – achieve something, earn a badge. Many popular video games also use a badge system, and many of our students enjoy and understand this way of measuring achievement. So it makes sense to use a badges systems in the classroom.

To find out more about using badges in the classroom, have a look at this article:

http://www.edudemic.com/guides/the-teachers-guide-to-badges-in-education/

Automating gamification & badges in education on a (very!) limited budget

Gamification and badges in the learning environment has been of interest to me for sometime. However, within the learning environment I have been working with, the concept would be very labour intensive to implement and track. While playing around with Google Forms, an idea came to me – surely Google Apps script could be used in a self-marking quiz to send a badge to a supplied email address if a certain score was achieved in the quiz?

So I wrote an algorithm and found some potential providers on Fiverr.com. I contacted them to outline what I wanted. Within hours I had settled with the wonderful Riyafaahf who provided me exactly what I wanted in less than a day.

And below you’ll be able to grab the code and instructions for yourself.

Automating badges in Google Forms

How it works

The student completes a self-marking quiz in Google forms and provides an email address. If the student achieves a certain mark, they will receive a badge via email.

Here is a simple, sample quiz for you to try out and see how it works (don’t worry, I won’t ever use your email address for anything else):

https://goo.gl/forms/9CPFp5Kc4VJFQlV92

What you will need

  • Access to Google Forms (either through Google Drive or G Suite for Education)
  • Student email addresses (they do not have to be Gmail)
  • An image for your badge (this will be emailed to the student should they achieve a certain score) saved to your Google Drive
  • The code on this page
  • The file ID for your Google Sheet where quiz responses will be collected and the file ID of the badge file  (don’t worry, getting these is easy – see the video if you’re not sure)
  • Devices for students to respond to the form (works well across most platforms including smart phones and tablets)

Planning

It might be a good idea to start off with a smaller topic area with a few quizzes (and badges). This allows you to test the waters and the technology. Your badges with be based on the required student outcomes.

It might also be a good idea to think about what you would like students to do with the badges they collect. One simple idea is having each student create a simple eportfolio in Google Slides to save their badges in.

Tips for setting up your quiz in Google Form

Watch video tutorial for visual step-by-step instructions.

You need to save your Google Form as a self-marking quiz and make sure the responses are being collected into a Google Sheet.

  • Make sure you are collecting email addresses. This can be done by asking for an email address in the quiz (use data validation to ensure the address provided appears valid) or selecting the option to collect email addresses in a  G Suite for Education school.
  • Mark all questions as “required”.
  • Select “Make this a quiz” in the form settings.
  • Go through each question and add your points and select the correct answer.

Adding the “Send badge” code

Watch video tutorial for visual step-by-step instructions.

This adds the badge ‘magic’ – sending the badge to the student’s email once they submit their responses.

Below is the code, ready for you to insert your information. You will need to copy it, paste it into your Google Form Script Editor and replace the variable information with your information.

If your browser does not select the code automatically, select all the code from line 1 to line 21 and copy it.

 function onSubmit(e) {
  var sheet = SpreadsheetApp.openById(e.source.getDestinationId()).getSheets()[0];
  //var sheet = SpreadsheetApp.openById("REPLACEwithGoogleSheetsFileID").getSheets()[0];
  var lastRow = sheet.getLastRow();
  var score = sheet.getRange(lastRow, 3).getValue();
  var email = sheet.getRange(lastRow, 2).getValue();
  var subject = "REPLACE with Email Subject";
  if(score>7){
    var body = "REPLACE with Your Email Message.";
    var id ="REPLACEwithYourBadgeFileID";
    var fileBlob = DriveApp.getFileById(id).getBlob();
    GmailApp.sendEmail(email, subject, body, {
      attachments: [fileBlob]
    });
  }else{
    var url = "https://goo.gl/forms/REPLACEwithYourFormURL"
    var body = "Good try at the quiz. Have another try to improve your score and earn your solar system expert badge. You can access the quiz at "+ url;
    GmailApp.sendEmail(email, subject, body);
    
  }
}

 

To paste the code into your form:

  • Go to your Google Form
  • Click on the 3 dots at the top right of the screen
  • Select select <> Script Editor…
  • File > New > Project
  • Paste the code
  • Give your project a name
  • Replace variable information as required (see table below)
  • Click on Resources > Current Project’s Triggers
  • Click to add a new trigger. The triggers should look as follows (should be the default):
    Google Apps Script triggers screen shot
  • Review and authorise permissions

You will need to change all or some of the following information for the variables (depending on how your form and spreadsheet are set up). The table below should help you work out what you need to replace.

[table id=3 /]

Test your form

Watch video tutorial for visual step-by-step instructions.

Make sure you test your form before you unleash it on your students. Use the preview button to respond to the form. Check to make sure you get the badge when you answer the right number of questions correctly and you DON’T get the badge when don’t get enough questions right.

Sharing your form

Watch video tutorial for visual step-by-step instructions.

Once you’ve tested your quiz and everything is working okay, you are ready to share! You can email a link or provide a written link. I find the Google Forms URL shortener pretty clunky so I usually use bit.ly and create a custom, easy to understand URL.

Video tutorial: Automating gamification in education with Google Forms

Other helpful resources

12 free badge images:

https://www.teacherspayteachers.com/Product/12-Free-Badge-Images-for-Classroom-Gamification-2954231

Over 120 editable badge images (paid resource):

https://www.teacherspayteachers.com/Product/120-badges-and-images-for-gamification-in-the-classroom-2954139

 

Digital student workbooks with Google Slides

There are lots of different ways to use Google Create digital student workbooks with Google SlidesDrive apps in the classroom. Google Slides offers many possibilities. One way of using Google Slides in the classroom is developing digital student workbooks that include different types of activities. You can take a static, paper based, black and white worksheet or workbook and make it interactive and colourful, incorporating different ways of engaging with information and demonstrating understanding.

Items you can include in your digital workbook include:

  • words and images (I know, obvious)
  • multimedia including YouTube videos
  • links to other resources
  • short answer activities
  • drag and drop activities
  • extended response activities
  • links to a quiz in Google Forms
  • links to a Google Classroom
  • collaborative activities
  • student portfolio

The ability to create drag and drop activities is particularly appealing. Below is a short video tutorial showing you how to create drag and drop activities in your workbook that prevent student from accidentally moving the wrong elements on the page. This is done by using the “Slide > Background image” feature of Google Slides.

Advantages of digital workbooks with Google Slides

  • Free!
  • Reduce paper.
  • Easy to distribute via your preferred method. For example, email, Google Drive sharing, Google Classroom.
  • Does not require G Suite for Education (just Google Drive).
  • Can differentiate by developing different versions for students aiming to achieve at different levels.
  • Ability to incorporate different learning activities.

Free sample digital workbook

Below is a link to the sample workbook shown in the video. Feel free to make a copy for yourself and use it as you like:

https://drive.google.com/open?id=1z9sfkNXCYxebr1Fe8U1A7dtuGIDzuD7RATBXnixgXuw

Annotating documents in Google Classroom

As of August, 2016, in the mobile versions of the Google Classroom app (iOS and Android):

Teachers and students can draw on, highlight, and write notes on documents and PDFs in the Classroom mobile app

https://support.google.com/edu/classroom/answer/6149237?hl=en

This is a terrific feature that adds to the flexibility and usefulness of GoogleLearn how to annotate files in Google Classroom Classroom. Users can now annotate PDFs and Google Drive documents distributed via Google Classroom. How might this be used in your classroom?

  • Students can highlight and annotate their work for study purposes without the need to print it out, saving money and avoiding lost work.
  • Students can take photos and annotate them for the assignments.
  • Distribute digital interactive notebooks and worksheets.
  • For students with poor fine motor skills and difficulty hand writing, the annotation feature in Google Classroom allows them to zoom in and write in a big space rather than having to cram writing into smaller spaces which can sometimes happen with paper based activities.
  • Annotate with or without a stylus.

As other ideas come up, I will add them to the list. Feel free to share your own!

Below is a video tutorial outlining the features of annotations in Google Classroom from the student’s perspective. The document used is a Google Slides presentation.

Creating mini-lessons using Google Slides in 6 easy steps

Google Slides is one of my everyday go-to tools in Google Apps for Education (GAfE) and Create interactive mini lessons using Google Slides Google Drive. It is so versatile and easy to use. As an educator, it makes it easy to put together and distribute information and content. It is also a great app for students to show evidence of learning or to curate a portfolio.

One way to use Google Slides is to create mini-lessons that students can go through at their own pace. They are also useful in ‘flipped classrooms’ and other blended learning approaches.

Mini-lessons are presentations that contain content that students need to know and include some sort of navigation, like a menu, and, ideally, some sort of activity, like a quiz, for students to complete to check for understanding.

Below is a sample mini-lesson designed for illustrative purposes and below that are the 6 easy steps to creating your very own mini-lesson as well as a video tutorial. The content in this mini-lesson has been copied from Wikipedia (not recommended!)

6 Easy steps to create a mini-lesson

1. Create your Google Slides presentation

Login to Google Drive and create a new Google Slides presentation.

2. Write your content

Don’t forget to leave a menu slide so you can go back and create your menu links when you have completed your content.

As well as text, you can include images, videos and links to external content.

As this is intended as a mini-lesson designed to be consumed by an individual rather than a presentation, you can include a lot more text than you normally would in a presentation but be careful about making it look too crowded.

3. Create your menu

Once you have completed your content, go back to your blank menu page and add buttons for links to the different topics in your mini-lesson.

To make your buttons clickable go to:

Insert > Link… > Slides in this presentation > Select the slide to link to

See the video tutorial for a demonstration.

4. Add your “return to menu” button

Create your return to menu button using shapes or inserting an image into one of your content slides. Insert the link to your menu slide:

Insert > Link… > Slides in this presentation > Select the slide to link to

Copy your button to the other content slides

Note: ideally, you would add the return to menu button in the slide layout in slide master view. Unfortunately, at the time of writing, when you view the presentation normally, the link is not clickable.

See the video tutorial for a demonstration.

5. (optional) Add a link to the student activity

For example, this could be a link to a quiz created in a Google Form.

See the video tutorial for a demonstration.

6. Distribute your mini-lesson

Test your mini-lesson first to make sure all the links are doing the right thing.

There are different ways you can distribute your mini-lesson. These include:

  • Use the “Share” option to email a link recipients
  • Use the “Publish to the web” options to embed the presentation in, for example, a blog or Google Site

See the video tutorial for a demonstration.

Video tutorial: Creating interactive mini-lessons in Google Slides

 

6 tips for creating student made ebooks in Google Apps

I have long been a fan of the ebook and have often created and distributed them to support my training and teachingLearning how to self-publish ebooks in Google Slides - googleappsaction.com activities. I have also at different times published and sold ebooks (look me up on the iBooks store!). Google Apps for Education makes it easy for both students and teachers to create attractive ebooks that can be shared in a number of formats.

Here are 6 tips to help you (or your class) create your first ebook using Google Apps for Education. These techniques are just as useful to anyone looking to self-publish an ebook, including general users of the free Google Drive and Google Apps for Work users.

1. Why create ebooks, anyway?

Ebooks can fulfil a number of purposes including:

  1. Creating an eportfolio of a student’s work (or a number of students’ work).
  2. Using students to ‘crowd source’ the creation of resources and text books, created for the target audience by the target audience.
  3. Can be used by students of all ability levels.
  4. Developing relevant 21st century skills.
  5. Easily show evidence of learning to a wide audience (including parents) in an environmentally friendly way.
  6. Create your own text books and resources that you can easily update and distribute.

2. What app should I use?

The app that will provide you with maximum flexibility in terms of presentation and layout is Google Slides, particularly if you are combining text and images.

This is not the perfect book publishing solution but allows for a lot of flexibility and creativity without a steep learning curve.

3. What size should my ebook be?

There is no ‘standard’ ebook size. It’s probably a good idea, though, to set-up the pages in portrait orientation and in you standard printer size, i.e., A4 or Letter depending on what part of the world you are in.

[table id=1 /]

Here is a short tutorial showing you how to change the page size in Google Slides.

4. How can I make sure my ebook looks good?

Do your homework. Investigate websites, books, ebooks, posters, etc, that you like the look of and use them as inspiration for your style, fonts and layouts.

There are also lots of online tools to help you select colour schemes that look good together and even give you the hexadecimal colour code to be able to put in your colour choosers in Google Slides.

Whilst you can have multiple page layouts within your ebook (for example, 1 large picture, 1 large column text, 2 smaller pictures with 2 even columns of text, 1 smaller picture with 2 uneven columns of text, etc) use the same basic elements throughout:

  • 1 font style for page headings
  • 1 font style for subheadings
  • 1 font style for your body text
  • 3 to 5 colours for your colour scheme
  • Make sure your inside covers are blank and you have the ‘half page title‘ to make your book look authentic.

Below is a video on how to easily create page layouts for your ebook in Google Slides (note: all images used are either my own photos or public domain imaged from Pixabay):

5. What platform should I use to create my ebook?

Although you can create your ebook on mobile versions of Google Slides (e.g., iPads or Android tablets) you will get the most flexibility and creativity using the full version through Google Chrome (e.g., Windows, Linux, Mac and Chromebook).

That doesn’t mean you can’t ‘mix and match’ devices. For example, do most of your editing using a Windows computer but use the iPad version to take photos and add them straight into the pages of your ebook.

Click here to access a free ebook template I created in Google Slides. To use it, from the FILE menu select MAKE A COPY...

6. In what format should I distribute my ebook?

The great thing is, you don’t have to stick to just one format!

  • Share the actual Google Slides file (view only)
  • Embed the Google Slides file into a website or blog (File > Publish to the web… > Embed)
  • Save the file as a PDF to easily view on most devices and platforms (File > Download as > PDF document)

PDF results in the most attractive ebook (I don’t know why, try it for yourself and see!) and, depending on the size, can be emailed or made available to download from a website or blog.

More resources

Student-Made E-Books: A Beautiful Way to Demonstrate Learning:

http://www.cultofpedagogy.com/student-e-books/

How to Create an Ebook with Google Slides:

http://www.shakeuplearning.com/blog/how-to-create-an-ebook-with-google-slides/

Free, high quality public domain images:

https://pixabay.com/

 

5 tips for using Google+ Collections at school

Google+ Collections was added to the Google Apps family in May last year.  Google+ CollectioUsing Google+ Collections at school. Curate, collaborate and discuss using #GAFE. Find out more: http://googleappsaction.com/?p=263ns is a bit like Pinterest, and allows you to group posts together and share them publicly, with your circles, particular users, only yourself or, if you are using Google Apps for Education (GAfE) of Google
Apps for Business, just within your domain. As well as the browser based version, you can access Google+ Collections on your Android and iOS devices using the Google+ app.

I’ve kind of played around with it but this school year I plan to use it as an integral tool in my Community and Family Studies (CaFS) class. I’ve already started setting up boards for some topic areas and am planning how I will have students collaborate and contribute using Google+ Collections.

Here is an introductory tutorial on using Google+ Collections:

And now for some tips on using Google+ Collections within an educational environment.

1. Google+ Collections is only for ages 13+

Because it is part of the Google+ suite of products, the Google terms of service means it can only be used by students 13 years and over (unlike many of the other GAfE apps used by schools). Also, Google+ might not automatically be enabled within your GAfE environment – check with your administrator if you are not sure.

2. Think about privacy settings when you are creating Collections

Note: you cannot change the privacy settings once you create a Collection.

Be very cautious when setting privacy to ‘Public’. For example, would it be appropriate for the content to be published in the local paper? If the answer is ‘No’, think about setting the privacy to within the domain or to a particular group of users only.

Also, it’s a great opportunity to teach students about digital citizenship and responsible online behaviour by assisting them with the appropriate privacy levels.

3. Encourage communication using the comments feature

Users with access to a collection can add and respond to comments. This is a great way to encourage a dialogue about a particular topic or issue. For many students, it will have a bit of a ‘Facebook’ feel which would be familiar.

For example, in my CaFS Collection, I have added a link to the article You told us what it’s like being 15 in 2015. I love the black and white image with the article that now appears in the collection. I will ask students to discuss what they feel is similar and different in their experiences and why they think this is.

4. Using Collections as a research tool

When conducting research, students can use a private or shared collection to ‘park’ links of interest for a project. They could also reflect on the quality of the sources curated using comments and share the Collection with the teacher. Or, the assessment of the quality of sources could be crowd-sourced, with other students being able to provide comments.

5. Encourage small group collaboration

Currently, you cannot have multiple contributors to a collection the way you can in Pinterest. However, students can still collaborate on a Collection in small groups by working together on the same computer, iPad or Android tablet. One student account would need to be the owner of the Collection but other contributors could be acknowledged in the Collection tagline or even in a post in the collection (selfie time!)

Interested in exploring Collections? Here is a link to a Google Drawing template I created that you can use to create size optimised Google+ Collection covers:

https://drive.google.com/previewtemplate?id=17_WBfHZqvOkH9q2lurfN5vbAvzJp7yPkZFK4l1J5RrQ&mode=public

Google My Maps & Sites unite!

Google Sites and Google My Maps unite!
Google Sites make it simple to create a website. Yes, Google Sites may be a little limited but that also means it makes it easy to use. One plus is how easily Google Sites integrates with Google Drive. Google My Maps, one of the newer members of the Google Apps and Google Apps for Education (GAFE) family, is no exception.

Below is a short video tutorial showing how to embed a Google My Map from Google Drive into a Google Site.

Applications for education

Google Sites allow you to draw from different types of media and documents as well as interactive elements. Schools are using it for:

  • flipping classrooms by putting content online
  • student portfolios
  • collaboration
  • student projects
  • communication with the wider school community

Google My Maps is another way of developing the richness of Google Sites.

Google Classroom goodies!!

I have dabbled with Google Classroom and am keen to do more witGoogle Classroom goodies: hints, tips, how-tos and tutorial for using Google Classroomh it, especially will the on-going feature improvements. There is a lot of information out there about how to use Google Classroom, from basics to more advanced management, and I thought it may be useful to bring some of this information together in one post. Whether you’re thinking about using Classroom for the first time, introducing it to others or have been using it regularly, you should find something useful in this collection.

So here you will find tutorials on the basics, updates on features and tips on how to make the most of Google Classroom, especially as new features are added.

This particular post will be evolving as I discover new resources and information. These are all resources I have found personally useful. Please note: Google Classroom is regularly being updated. There may be some information that is slightly out-of-date at times.

First things first – Why Google Classroom?

Quick overview of Google Classroom

https://youtu.be/K26iyyQMp_g

Detailed “how-tos” and tutorials

Getting started with Google Classroom: teacher and student perspective

This excellent presentation takes you step-by-step through the basics and also gives you a glimpse of what your students will see:

https://docs.google.com/presentation/d/1NhdSF5n0EP8mxM3kicnVrxbUNjt-vNy273ltuxXl2_U/edit#slide=id.g6596e445c_70_102

Everything You Need To Know In Google Classroom

This series by The Gooroo will sure to prove an excellent resource. I will add the links as each part comes out.

Everything You Need To Know In Google Classroom Part 1:

https://www.thegooru.com/everything-you-need-to-know-in-google-classroom-part-1/

Everything You Need To Know In Google Classroom Part 2:

https://www.thegooru.com/everything-you-need-to-know-in-google-classroom-part-2/

Everything You Need To Know In Google Classroom Part 3:

https://www.thegooru.com/everything-you-need-to-know-in-google-classroom-part-3/

Tips, tricks and updates

Google’s official Classroom feature update list:

https://support.google.com/edu/classroom/answer/6149237?hl=en&ref_topic=6020277

Attach Forms and view responses in Google Classroom:

https://www.synergyse.com/blog/attach-forms-and-view-responses-in-google-classroom/

Moodle vs Google Classroom:

http://wazmac.com/discussion/moodle-v-google-classroom/

Google Classroom – Reuse a previous post:

(15/04/2016) 23 awesome apps that integrate with Google Classroom:

http://www.shakeuplearning.com/blog/20-awesome-apps-that-integrate-with-google-classroom/?utm_content=buffer767b2&utm_medium=social&utm_source=pinterest.com&utm_campaign=buffer

(18/12/2016) How to create a custom header for your Google Classroom using Google Drawing:

Create a Google Classroom Custom Header with Google Drawings

(2/3/2017) Google Classroom: 10 things students should know

10 Things That Students Want To Know about Google Classroom