Node Spreadsheet Not visible in Right-Click menu

Issue #7 resolved
Former user created an issue

I don't see node spreadsheet as an option, when I right-click on the pane/tab area under windows>custom>

There are no errors in nuke or the terminal.

Linux Nuke 10.5

Comments (7)

  1. Mitja Müller-Jend repo owner

    I assume you added these lines to your menu.py (and you're using the version from nukepedia):

    from nukescripts import panels
    def get_node_table_widget():
        from NodeTable import node_table
        return node_table.NodeTableWidget(nuke.selectedNodes())
    panels.registerWidgetAsPanel('get_node_table_widget', 'Node Spreadsheet',
                                 'de.filmkorn.NodeSpreadsheet', False)]
    

    You can also try running this in the script editor to verify the installation is correct:

    from NodeTable import node_table
    table = node_table.NodeTableWidget(nuke.selectedNodes())
    table.show()
    
  2. nitant karnik

    We are using PyQt4 here. By the way thank you so much for your help - I'm really excited to use the spreadsheet.

    I ran the verification script and I got this error: Traceback (most recent call last): File "<string>", line 1, in <module> File "/home/ad/user/.nuke/NodeTable/node_table.py", line 14, in <module> from Qt import QtCore, QtGui, QtWidgets, binding ImportError: No module named Qt

  3. nitant karnik

    I double checked the Qt.py and I had deprecated it for debugging. Now I can see Node Spreadsheet in the menu, however I'm getting this error:

    Traceback (most recent call last): File "/usr/local/Nuke10.0v5/plugins/nukescripts/panels.py", line 153, in makeUI self.widget = self.widgetClass() File "/home/ad/user/.nuke/menu.py", line 71, in get_node_table_widget from NodeTable import node_table File "/home/ad/user/.nuke/NodeTable/node_table.py", line 14, in <module> from Qt import QtCore, QtGui, QtWidgets, binding File "/home/ad/user/.nuke/Qt.py", line 7 <!DOCTYPE html> ^ Thanks for the heads up, I'm working on a individual knob editing scripts however this one is very nice because it's super intuitive and so much more flexible.

  4. Mitja Müller-Jend repo owner

    I believe the Traceback is incomplete. I'm sorry but I can't figure out whats wrong.

  5. Mitja Müller-Jend repo owner

    I need a full error log as I cannot reproduce the issue. Closing the issue for now. Feel free to reopen it.

  6. Log in to comment