Reading mode = Browsed by an individual (window)
If you don't see the developer tab:
Options
Customize Ribbon
Tick the checkbox next to the Developer tab in the right list.
For detailed instructions:
Insert ->Module
Paste the code from below
Sub ShowHideStatusBar()
If CommandBars("Status Bar").Visible = False Then
CommandBars("Status Bar").Visible = True
ElseIf CommandBars("Status Bar").Visible = True Then
CommandBars("Status Bar").Visible = False
End If
End Sub
To access this code, I suggest to export the module
Import the *Status-bar-removal.bas*
file
Click on the Play button or hit F5 to run the code
On the pop-up window click Run
Close the Visal Basic editor window
<aside> 🔗 Tip from: https://superuser.com/questions/1262225/how-to-remove-hide-title-bar-in-windows-10
</aside>
In Explorer, right-click in empty space in the folder where you want to save the script, then select New and AutoHotkey Script. You can then type a name for the script (taking care not to erase the .ahk extension if it is visible).
Right click on the .ahk file and choose Edit Script
This will open a Notepad or some kind of text editor.
The code will check if the PowerPoint app is open, if not then it will open PowerPoint and make it Activ. After the Style of the window will be changed to make the title bar hidden.
if WinExist("ahk_exe POWERPNT.EXE")
WinActivate, ahk_exe POWERPNT.EXE
else
Run, POWERPNT.EXE
WinSet, Style, -0x00C00000L, A
More about WinSet function: https://www.autohotkey.com/docs/commands/WinSet.htm
More about the WinTitle function: https://www.autohotkey.com/docs/misc/WinTitle.htm
At this point I suggest to open your presentation so see the change.