Introduction
Introduction
Finding your way around
Things I care about
Will you get rich?
Content Planning
Who are you teaching?
Researching your topic
Stair-stepping knowledge
Your audience wants your style
Addressing viewer objections
The ideal video length
Do it wrong on purpose!
Should you use a script?
Using a teleprompter
Recording at the same time
Dictating your content
Post-it note management
Equipment
Introduction to equipment
Picking a microphone
Deciding if you want to be on camera
Picking lights
Picking a camera
Considerations for your monitor
Recording
Ensuring consistency in your videos
Preparing yourself to record
Preparing your space for recording
Preparing your desktop for recording
Preparing your monitor for recording
Preparing your applications for recording
Screenflow for recording
Workflow process
QuickTime for recording
How to do your intros and outros
Recording in chunks
Example chunks from this course
Handling mistakes
Maximizing the longevity of your videos
For when you mess up
Editing
Editing introduction
A tour of the editor
The first pass: rough cutting
Fine tuning: covering camera cuts
Editing talking head videos
Punch head: another option to cover cut
Saving time with presets
Cropping mistakes out of your videos
Freeze frames: your secret weapon
Freeze frames: even more power
How to draw on screen
Publishing
Export settings
Exporting workflows
Hosting your videos
A few marketing ideas
Goodbye, for now (maybe!)
Locked video

Please purchase the course to watch this video.

Video thumbnail
Recording
Preparing your desktop for recording

Full Course

$
199
$249
USD, one-time fee
Can highly recommend the screencasting.com course by Aaron Francis. He recommends ScreenFlow, but has alternatives for Windows too.
Silvan Hagen
Silvan Hagen

Summary

Creating a distraction-free screen is essential for professional screencasting. This course covers how to hide desktop icons, the dock, and the status bar using simple automation on Mac. You'll also learn how to enable "Do Not Disturb" mode to prevent interruptions and maintain viewer focus on your content.

Video Transcript

Preparing your screen for screencasting

When it comes to screencasting, preparing your screen is crucial. The goal is to maintain viewer focus on your content, not on the clutter or distractions on your desktop. Whether using a Mac or Windows machine, the principle remains the same: keep your screen as clean as possible.

Hiding unnecessary distractions

Imagine this: you're watching a screencast, but instead of focusing on the content, your eyes are drawn to the clutter of desktop icons. It's distracting. Here are three elements that should definitely be hidden:

  1. Desktop icons: These can become a distraction during the screencast.
  2. The dock: If visible, it can pull focus away from your content.
  3. The status bar: This should be hidden for a more professional look.

Thankfully, automation can help with this. I've devised a script that hides all these elements, making the process seamless and saving time. This script is for Mac users, but you can achieve similar results on Windows with different methods.

Here is my "hide everything" script. (This is an AppleScript, so it will only work on Mac).

tell application "System Events"
    -- Hide the menu bar
	tell dock preferences to set autohide menu bar to true
	-- Hide the dock
	tell dock preferences to set autohide to true
	-- Hide the icons
	do shell script "defaults write com.apple.finder CreateDesktop -bool FALSE; killall Finder"
	-- Don't let the dock pop up when you mouse down
	do shell script "defaults write com.apple.dock autohide-delay -float 100 && killall Dock"
end tell

Thanks to another script I’ve prepared, you can now set your wallpaper for recording too!

tell application "System Events"
	tell desktop 1
	    -- Set the desktop to my "recording" desktop image
		set picture to "/Users/aaron/Documents/Screencasting.com/desktop.png"
	end tell
end tell

When it's time to get back to not recording, here's a script to return your desktop to normal:

tell application "System Events"
    -- Show the menu bar
	tell dock preferences to set autohide menu bar to false
	-- Show the dock
	tell dock preferences to set autohide to false
	-- Show the icons
	do shell script "defaults delete com.apple.finder CreateDesktop; killall Finder"
end tell

Setting a neutral background

When recording, it's crucial to use a simple and neutral background. Avoid family photos, anime characters, or any other busy images that can distract from the material you're presenting. An abstract or branded background works well. You can set your wallpaper using tools like a stream deck to switch easily between different backgrounds.

Enabling Do Not Disturb mode

Before hitting "record," it's essential to activate "Do Not Disturb" mode. This prevents unwanted notifications from interrupting your screencast, allowing you to maintain focus and momentum. Interruptions not only disturb the flow but can also be challenging to edit out later.

Enhancing the viewer experience

Taking steps to hide distractions, choosing a simple background, and minimizing interruptions will enhance your screencasting quality. By optimizing your screen setup, you ensure your audience stays engaged with your content and not your desktop.

Ready to focus on content

Setting up your screencasting environment correctly is key to delivering high-quality recordings. By following these guidelines, you'll prevent distractions and interruptions, ensuring a smoother recording process and a better viewing experience for your audience.