Re: [Nuke-users] Arri zeiss ultra prime grids

2016-11-07 Thread Misho Ristov
Check the 3DE website, I’ve uploaded the UP profiles couple of years ago m. Misho Ristov FX3X Macedonia Tel: +389 70385680 www.fx3x.com > On Nov 7, 2016, at 4:52 PM, Randy Little wrote: > > Does anyone have distortion models or grids for

Re: [Nuke-users] HTML Link in Menu

2016-11-07 Thread Erik Johansson
Just a quick suggestion. I don’t really see the need for so many functions. import webbrowser urls = [] urls.append(("Weblinks/VFX Camera Database", "http://vfxcamdb.com/;)) urls.append(("Weblinks/DP Review", "http://dpreview.com/;)) urls.append(("Weblinks/Nukepedia", "http://nukepedia.com/;))

Re: [Nuke-users] HTML Link in Menu

2016-11-07 Thread Darren Coombes
Thanks Howard, I got it to work. Changed a few things.. Menu Py… import www_links nuke.menu("Nuke").addCommand("Weblinks/VFX Camera Database", "www_links.openVfxcamdb()") nuke.menu("Nuke").addCommand("Weblinks/DP Review", "www_links.openDpreview()")

[Nuke-users] Arri zeiss ultra prime grids

2016-11-07 Thread Randy Little
Does anyone have distortion models or grids for zeiss ultra primes on alexa. Randy S. Little ___ Nuke-users mailing list Nuke-users@support.thefoundry.co.uk, http://forums.thefoundry.co.uk/

Re: [Nuke-users] HTML Link in Menu

2016-11-07 Thread Howard Jones
I think I'm right in saying lose the last line in > www_vfxcamdb Howard > On 7 Nov 2016, at 9:11 am, Darren Coombes wrote: > > How would i Add a menu, and in that, have a link to a website listed, so when > you select the webpage in the menu, it opens. > > Ive kind

[Nuke-users] HTML Link in Menu

2016-11-07 Thread Darren Coombes
How would i Add a menu, and in that, have a link to a website listed, so when you select the webpage in the menu, it opens. Ive kind of got it working.. in my Menu.py…. import www_vfxcamdb nuke.menu("Nuke").addCommand("Utilities/VFX Camera Database", "www_vfxcamdb.www_vfxcamdb()”) My Python