At the end of 2022 I saw a note somewhere about someone who wrote down the first bird they saw every day. I decided to note one natural thing I saw everyday. Baring a few days here and there I managed it.
Tag: notes
Notes & Airdrop are great pieces of tech in class. I particularly like the lack of features in notes allows pupils to concentrate on writing. I encourage pupils to start in notes even if writing that will end up in more complicated app.
Printing Multiple Notes
As I’ve mentioned before we use Apple Notes a lot in our class. If the class are writing, unless there is a need for formatting or layout, I often ask the pupils just to stick to notes.
Notes are easily AirDropped to me when I need to collect work and both pupils and myself can organise them in a fairly simple manner.
Occasionally I want to print the pupils work. Notes, reasonably enough, only lets you to print one note at a time. I wondered if there was AppleScript that would help. I found Export Apple Notes via AppleScript which exported a folder of notes to a new TextEdit document. I altered it to:
- Allow you to choose a folder from Notes.
- Export to an html file on disk.
- Provided page breaks so that the notes would each print on their own page.
Not particularly pretty, I guess I could work on the styles a little.
You need to be in my lucky position of having a mac in your classroom. Mine uses the same account as my iPad which helps me organise thing a lot.
Here is the code, I suspect it could be improved. Even if you don’t use AppleScript is easy enough to run. Open the AppleScript editor, create a new script, paste the code below in and hit run. You will be asked to choose a folder and then name an html file. The file will be created and opened with your default browser.
You then can print.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
set htmltop to "<!doctype html> | |
<html lang=\"en\"> | |
<head> | |
<meta charset=\"utf-8\"> | |
<title>Notes Export</title> | |
<style> | |
@media print { | |
hr { | |
page-break-after: always; | |
} | |
} | |
</style> | |
</head> | |
<body>" | |
set htmlbottom to "</body> | |
</html>" | |
tell application "Notes" | |
activate | |
set x to (name of every folder whose name is not "Notes") | |
set foldertoexport to (choose from list x) as string | |
if folder foldertoexport exists then | |
set output to "" | |
repeat with aNote in notes in folder foldertoexport | |
set noteText to "<!– ### Start Note ### –> | |
" | |
set noteText to noteText & ("<h1>" & name of aNote as string) & "</h1> | |
" | |
— set noteText to noteText & ("<p>Creation Date: " & creation date of aNote as string) & "</p>" | |
— set noteText to noteText & ("<p>Modification Date: " & modification date of aNote as string) & "</p>" | |
set noteText to (noteText & body of aNote as string) & "<hr> | |
" | |
set output to output & noteText | |
end repeat | |
set thehtml to htmltop & output & htmlbottom | |
set theNewFile to choose file name default name foldertoexport & "-notes.html" | |
set myFile to open for access theNewFile with write permission | |
write thehtml to myFile as «class utf8» | |
close access myFile | |
else | |
display dialog "not likly to happen" | |
end if | |
end tell | |
tell application "Finder" to open theNewFile | |
Notes and Airdrop to the rescue
My class have been writing short descriptive passages about soldiers in the WW1 trenches.
At the weekend I planned for them to record these over a background of sound effects. I had spent some time at freesound.org and downloaded 20 or so effects and sounds. I had converted these to MP3 files, to reduce file size and placed these in a folder in OneDrive which I then shared. I have also made a list of credits for the files, all are Creative Commons.
The plan was to get the class to listen to the files in OneDrive then ‘open’ the ones they wanted to use in bossjock jr. These could then be loaded into ‘carts’ alongside the voice recordings. The pupils then played the different sounds and record that for their final mix.
To make sure everything went smoothly I got the whole class to open OneDrive and make sure they were logged in. That first step worked fine. The problem was OneDrive reported that there was not an internet connection and showed no files or folders. Since the class had logged into Glow this was obviously wrong.
I ended using most of the morning interval and lunchtime trying to see where the problem was. Strangely when I opened the iOS Files app when also allows you to see OneDrive files, I started slowly seeing files on the pupils iPads. And when I switched back to OneDrive the appeared there. To give the pupils access to the shared folder I needed to send a url. This opens OneDrive, and that told me I needed to open the browser, doing this, and signing on to Glow again (in the browser this time) eventually gave pupils iPads a view of the shared folder. Unfortunately I couldn’t get these to open and then open in bossjock in a timely fashion. It just was taking too long.
Time for a rethink.
On my iPad I had earlier made the files available off line in OneDrive. This took a while. I did manage to see the files in the Files app, from there I copied the MP3 files to the Notes app. 2 notes with about 10 files each. I quickly tested sharing these notes via Airdrop, it was pretty quick.
I suspected that airdropping notes with 10 audio attachments might be a bit slow, especially without Apple Classroom. I was wrong. In the afternoon I just dropped the notes to the pupils in groups of 4 or 5 at a time and in 10 minutes had distributed 20 audio files to all of the class. From there they could listen to the files in notes and copy the ones they liked to bossjock.
The rest of the afternoon when well, the children recorded their voices and mixed in the sound effects. For a first try the results were good. Next time I think we will record the audio live over the backgrounds that would allow us to duck the effects and make sure all of the words were clear. I think once the logistics of moving audio onto the iPads was sorted it becomes an interesting and valuable lesson. Fortunately the class missed all of the boring bits and no one asked why we had opened OneDrive earlier in the day.
lessons learned (again)
- My home WiFi is faster than school.
- Moving files locally is quicker than the cloud.
- We can have a lot of fun with bossjock.
- Notes and Airdrop are marvellous.
featured image, screenshot of sending audio from Notes to bossjock jr.