Camera Bookmark Maker improves on Maya's in-built bookmark system by making it more intuitive, allowing you to swap with one click between both bookmarks and their associated cameras, as well as providing a nice easy method of managing bookmarks.

1. Download CameraBookmarkMaker.zip and extract it to:

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

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

import importlib
import CameraBookmarkMaker as book
importlib.reload(book)
maker = book.CameraBookmarkMaker()
maker.CreateUI()

Or use this code for earlier versions of Maya:

import CameraBookmarkMaker as book
reload(book)
maker = book.CameraBookmarkMaker()
maker.CreateUI()

Optional: Assign the following code to a hotkey to use it to load a specific bookmark in the list. Just change the number in brackets to the number of the bookmark in the list (Maya 2022 and later):

import importlib
import CameraBookmarkMaker as book
importlib.reload(book)
maker = book.CameraBookmarkMaker()
maker.LoadBookmarkByNumber(1)

Or for earlier versions of Maya use this:

import CameraBookmarkMaker as book
reload(book)
maker = book.CameraBookmarkMaker()
maker.LoadBookmarkByNumber(1)