Re: [Nuke-users] Undo function in 9.0v3 not working

2015-01-29 Thread Justin GD
Hi all, Same for us on Linux boxes. Cheers, Justin 2015-01-29 9:15 GMT+00:00 Mads Lund madshl...@gmail.com: We have issue with this aswell. However this only affects Roto, Rotopaint and Splinewarp for us. On Thu, Jan 29, 2015 at 9:47 AM, Charles Bedwell charles.bedw...@encorepost.com

Re: [Nuke-users] Nukepedia - nuBridge coming soon

2016-01-27 Thread Justin GD
Thank you so much Frank ! Can't wait to try it ! Cheers, J 2016-01-27 7:25 GMT+00:00 Mike Wong | ax.gmail : > Amazing work, Frank ! > > On Wed, Jan 27, 2016 at 4:23 AM, Frank Rueter|OHUfx > wrote: > >> With over 1000 tool in the database it's time for

Re: [Nuke-users] user knob arguments (colour, size….)

2016-03-18 Thread Justin GD
Hi Adam, If there is nothing you can do directly with the Nuke python API, I suppose you can do it in Qt with Pyside (or PyQt). Usually, when I want to customize the appearance of panels; Dialog, I directly do it in Pyside. Remember Pyside is included in Nuke, so no need to install libraries or

Re: [Nuke-users] little experiment: tool wishlist on Nukepedia

2016-03-25 Thread Justin GD
Hi Frank, That sounds cool ! I'm quite interested to help if some people want to connect and work together to code & solve some problems other users have. I had a look at the vote section on Nukepedia; I have a question : - Are the ideas submitted "one sentence" only ? Or will we be able to

[Nuke-users] BBox after stabilisation

2016-04-25 Thread Justin GD
Hi all, Is there a way to scale up a plate to the optimal scale after stabilisation ? What I want is the bbox to always be bigger than my format. I can scale up by hand but I was just wondering if there was an automatic way of doing this (expressions?). Cheers, Justin

Re: [Nuke-users] BBox after stabilisation

2016-04-30 Thread Justin GD
name BlackOutside1 > selected true > xpos 155 > ypos -164 > } > Transform { > translate {{curve x2 -70 x11 -5.555648804 x21 -20 0 x36 -190} 0} > center {1440 1080} > name Transform1 > selected true > xpos 155 > ypos -138 > > } > > > > &g

Re: [Nuke-users] BBox after stabilisation

2016-04-29 Thread Justin GD
reformat by 0.1 until the summed bbox fits into the reformat's width & > height. I'm using a 2nd reformat expression linked to the 1st to return to > the original format size. > > let me know if this is what you we're thinking of, or if you have any > suggestions! > > htt

Re: [Nuke-users] BBox after stabilisation

2016-04-26 Thread Justin GD
look into this for ever and never had the time. >> I reckon it should be totally possible with a bit of math magic. >> >> On 04/26/2016 01:42 AM, Justin GD wrote: >> >> Hi all, >> >> Is there a way to scale up a plate to the optimal scale after >> s

Re: [Nuke-users] nuke studio scan for new version on sequence

2016-07-01 Thread Justin GD
Hi Joerg, I remember doing something similar, but can't find my script anymore (should be on a hard drive at home). As you said, you need to list first all versions before performing a versioning operation (up, down, max etc). Have you had a look directly at the VersionScanner.py from Nuke ?

Re: [Nuke-users] nuke studio scan for new version on sequence

2016-07-02 Thread Justin GD
Hi Justin, > thanks for your suggestions! I will have another look at VersionScanner. > Was playing around with it yesterday , but did not get the wanted result. > If you can find your script that would be awesome! Will do further > investigations on Monday. > Cheers, > Joerg &

Re: [Nuke-users] topmost node

2017-02-21 Thread Justin GD
Hi guys, For the topnode you could use something like : [value [topnode this.parent.input].file] >From the thread : http://community.foundry.com/discuss/topic/100427 Cheers, J 2017-02-21 9:05 GMT+00:00 adam jones : > Dear Darren > > was going to shoot that though but your

Re: [Nuke-users] Roto bush branches & transforms

2017-01-20 Thread Justin GD
aint node and then under "Shape"-Tab > set the source to foreground and under "Clone"-Tab apply the same > expression for the branches. > > hope that help! > > cheers, > Vincent > > 2017-01-20 12:17 GMT+01:00 Justin GD <j.grosde...@gmail.com>: > >>

Re: [Nuke-users] Roto bush branches & transforms

2017-01-20 Thread Justin GD
Yes thanks ! 2017-01-20 12:03 GMT+00:00 Vincent Langer <m...@vincentlanger.com>: > If you set the rotoPaint node "premultiply" to rgba you only need one Node. > > cheers, > Vincent > > 2017-01-20 12:52 GMT+01:00 Justin GD <j.grosde...@gmail.com>: >

Re: [Nuke-users] Importing functions for menu.py

2016-10-22 Thread Justin GD
; I commented out every line in dh_pycode.py, but still i get the same error. > > > Am 22.10.2016 um 13:28 schrieb Justin GD <j.grosde...@gmail.com>: > > Hi Daniel, > > Can you send the full error message ? In your terminal, you should have > the error line / file indica

Re: [Nuke-users] Importing functions for menu.py

2016-10-22 Thread Justin GD
Hi Daniel, Can you send the full error message ? In your terminal, you should have the error line / file indicated. This is most likely an error in your dh_pycode file. Cheers, Justin 2016-10-22 12:08 GMT+01:00 Daniel Hartlehnert : > Hi, > > in my .nuke folder i have a text file

Re: [Nuke-users] Importing functions for menu.py

2016-10-22 Thread Justin GD
You need to put it as a string when you have arguments in the function; So it doesn't execute when Nuke starts, but only when the user click on the menu. nuke.menu("Nodes").addCommand("User/FiletypeConverter", 'dh_pycode.fileconverter(my_args)', '‘) No need to put it as a string when there is no

Re: [Nuke-users] Unwanted UI Resize handle with group/gizmo

2017-03-24 Thread Justin GD
Could the reason be that the Text Node's Panel is open when you export the Gizmo ? Cheers, J 2017-03-24 17:46 GMT+00:00 Gabor Hovanyi : > Try setting the NO_HANDLES flag on the 'box' knob: > text_node['box'].setFlag(0x8000) > > http://www.nukepedia.com/python/some-flags >