By default, shortcut are Ctrl+number from numpad.
You can create until 10 marker from 0 to 9.
The QuickView menu is by default in the Menu/Layout/QuickView/.
Others of my scripts are available to my site:
https://www.z-way.org/
Enter this code in your menu.py:
from QuickView import *
quick = nuke.menu('Nuke')
quick.addCommand('Layout/-', '', '')
quick.addCommand('Layout/QuickView/Create Marker 0', 'quickViewMarker(0);', '')
quick.addCommand('Layout/QuickView/Create Marker 1', 'quickViewMarker(1);', '')
quick.addCommand('Layout/QuickView/Create Marker 2', 'quickViewMarker(2);', '')
quick.addCommand('Layout/QuickView/Create Marker 3', 'quickViewMarker(3);', '')
quick.addCommand('Layout/QuickView/Create Marker 4', 'quickViewMarker(4);', '')
quick.addCommand('Layout/QuickView/Create Marker 5', 'quickViewMarker(5);', '')
quick.addCommand('Layout/QuickView/Create Marker 6', 'quickViewMarker(6);', '')
quick.addCommand('Layout/QuickView/Create Marker 7', 'quickViewMarker(7);', '')
quick.addCommand('Layout/QuickView/Create Marker 8', 'quickViewMarker(8);', '')
quick.addCommand('Layout/QuickView/Create Marker 9', 'quickViewMarker(9);', '')
quick.addCommand('Layout/QuickView/-', '', '')
quick.addCommand('Layout/QuickView/Find Marker 0', 'quickViewShow(0);', '^0')
quick.addCommand('Layout/QuickView/Find Marker 1', 'quickViewShow(1);', '^1')
quick.addCommand('Layout/QuickView/Find Marker 2', 'quickViewShow(2);', '^2')
quick.addCommand('Layout/QuickView/Find Marker 3', 'quickViewShow(3);', '^3')
quick.addCommand('Layout/QuickView/Find Marker 4', 'quickViewShow(4);', '^4')
quick.addCommand('Layout/QuickView/Find Marker 5', 'quickViewShow(5);', '^5')
quick.addCommand('Layout/QuickView/Find Marker 6', 'quickViewShow(6);', '^6')
quick.addCommand('Layout/QuickView/Find Marker 7', 'quickViewShow(7);', '^7')
quick.addCommand('Layout/QuickView/Find Marker 8', 'quickViewShow(8);', '^8')
quick.addCommand('Layout/QuickView/Find Marker 9', 'quickViewShow(9);', '^9')
Please use the Feature Requests to give me ideas.
Please use the Support Forum if you have any questions or problems.
Please rate and review in the Review section.