Notes is a simple notepad tool within Maya. Notes are saved within the Maya scene. Useful for logging feedback notes, or passing information between team members with the Maya scene.

1. Download Notes.zip and extract it to:

C:\Users\YOURNAME\Documents\Maya\Scripts

2. Assign the following Python code to a shelf button (Maya 2022 and later):

import importlib
import Notes
importlib.reload(Notes)
Notes.CreateUI()

Or use this code for earlier versions of Maya:

import Notes
reload(Notes)
Notes.CreateUI()