Put in sync two different viewers. Nice to constantly monitor the alpha of the currently viewed tool.
viewerSync
Updated: 10 December 2012
Author: philhub
Compatible Nuke versions: 6.0 or later
Compatibility: Linux, Mac, Windows
in your menu.py add the following lines.
import viewerSync
menubar = nuke.menu('Nuke')
m = menubar.addMenu('Nukepedia')
m.addCommand("viewerSync_ON", "viewerSync.viewerSyncCBs()",'j')
m.addCommand("viewerSync_OFF", "viewerSync.viewerSyncOFF()",'Shift+j')
It's a multi-purpose script. I use it to constantly have an eye on my alphas, (it can of course be used for all other channel like depth, forward ...) It can also be used to have a closeup on a part of the image while displaying the full scope of the viewed image.
It's still in beta because it hasn't been used quite a lot. So feel free to post any comment, suggest, improvement, bug report.
philhub