QuickView v1.0
This location is for Registered Users Only.
Perhaps you need to login or register.
Contributor: Bertrand Lempereur
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.
Requirements:
6.0, 6.1, 6.2, 6.3 or later
6.0, 6.1, 6.2, 6.3 or later


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:
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')
Please login in order to download these files.