QuickView

QuickView is a python script for Nuke that allow you to create visual marker in the nodes view. You can then position thoose marker wherever you want and recall them by shortcut.

Updated: 9 July 2011

Author: blempereur

Compatible Nuke versions: 6.0 or later

Compatibility: Linux, Mac, Windows

QuickView is a python script for Nuke that allow you to create visual marker in the nodes view. You can then position thoose marker wherever you want and recall them by shortcut.
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/

You can find more informations and others of my scripts on my website:

http://www.z-way.org/

For 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')

Sign in or register to download or rate.