cycloneslider
domain was triggered too early. This is usually an indicator for some code in the plugin or theme running too early. Translations should be loaded at the init
action or later. Please see Debugging in WordPress for more information. (This message was added in version 6.7.0.) in /home2/wacggq0abkde/public_html/wp-includes/functions.php on line 6114cartel
domain was triggered too early. This is usually an indicator for some code in the plugin or theme running too early. Translations should be loaded at the init
action or later. Please see Debugging in WordPress for more information. (This message was added in version 6.7.0.) in /home2/wacggq0abkde/public_html/wp-includes/functions.php on line 6114tl;dr:\u00a0\u00a0<\/strong>save some of your precious time when using the Backdrop Node.<\/p>\n<\/div><\/div>\n Typically, when you use a Backdrop node to group a bunch of nodes, you want to set up a nice, descriptive label, a font size, and probably also a cool, elegant color.<\/strong> The problem is that usually, those tasks are done after the Backdrop node is created, one after the other, and that gets somewhat repetitive, boring and time-consuming in the long run.<\/strong><\/p>\n If you want to save the burden and get those three things done at the same time, here I share with you a little Python snippet that will let you deal with your backdrops the easy way, and just at once.<\/p>\n 1 - How to use it<\/strong><\/p>\n So first things first, let\u00b4s place the code where it can be reached, create a new Nuke Menu and set up a Hotkey. Let\u00b4s see how this works.<\/p>\n Distribute the code<\/strong><\/p>\n Copy the script and save it as a Python file called \"b_custom_bckdrp<\/span>.py\"\u00a0<\/span>where Nuke can find it. In other words, place it within the nuke.pluginPath() file structure. For more info, read my previous posts.<\/p>\n Edit the menu.py file<\/strong><\/p>\n Now we have the Python module where Nuke can find it, we\u00b4re gonna add the following lines to our fantastic menu.py so that we can effectively use it:<\/p>\n n_menu = nuke.menu('Nuke') <\/span> Save the menu.py and restart Nuke.<\/p>\n 2 - Try it<\/strong><\/p>\n You'll notice that there is a new menu in your upper menu bar, listing the new 'b_custom_bckdrp' <\/span>command and its Hotkey. Just select a bunch of nodes and press 'alt+a '(it\u00b4s the hotkey we set up earlier, obviously you can change this to any other of your convenience). A Nuke Panel like this one should appear:
\nb_menu = n_menu.addMenu('MenuName')<\/span>
\nb_menu.addCommand('b_custom_bckdrp', 'b_custom_bckdrp.main_function()', 'ctrl+a')<\/span><\/p>\n
\n