Thats supercool! perfect for drag and drop element libraries! Has anyone had any luck adding proxy support to the webkit view? I've tried, but I keep breaking it...
On Fri, Feb 17, 2012 at 8:24 AM, Frank Rueter <[email protected]> wrote: > you can also embed a browser in your nuke panels now (with the latest > version). This is a snippet from the nukescripts package altered by Jason > at the Foundry to make it work with PySide (which now ships with Nuke): > > http://pastebin.com/CC0CJ2Qu > > Just execute in the script editor and open the new "Web Browser" panel > found in the panel menu's "pane" sub menu. > > > > > > On 2/17/12 7:37 AM, Josh Imbruglia wrote: > >> ahhh, the nuke.setMessage() definitely worked and launched the webpage >> for my, i'm trying to add it to the ProgressTask but doesn't seem to >> be working, here's what i'm doing: >> >> pt = nuke.ProgressTask("<a href='http://www.google.com/'>**Google!</a>") >> pt.setMessage("<a href='http://www.google.com/'>**Google!</a>") >> >> neither of the google links seem to launch the web browser but it at >> least makes it copy/pasteable from the ProgressTask :) >> >> On Wed, Feb 15, 2012 at 1:43 PM, Howard Jones<[email protected]> >> wrote: >> >>> This was modified from a very old thread (formatting probably screwed) >>> >>> Howard >>> >>> def googleSearch(): >>> >>> whichGoogle = "Images Web Maps" >>> >>> panel = nuke.Panel ( "GOOGLE",400) >>> panel.addSingleLineInput('**search Google:','') >>> panel.addEnumerationPulldown('**for what', whichGoogle) >>> result=panel.show() >>> >>> searchString = panel.value('search Google:') >>> forWhat= panel.value('for what') >>> searchString=searchString.**replace(' ','+') >>> >>> if searchString: >>> if forWhat == 'Images': >>> >>> nukescripts.start('http://**images.google.com/images?hl=** >>> en&lr=&q=%s&btnG=Search' >>> \ >>> % (searchString)) >>> if forWhat == 'Web': >>> >>> nukescripts.start('http://www.**google.com/search?hl=en&lr=&q=** >>> %s&btnG=Search' >>> \ >>> % (searchString)) >>> if forWhat == 'Maps': >>> >>> nukescripts.start('http://**maps.google.com/maps?hl=en&lr=** >>> &q=%s&btnG=Search' \ >>> % (searchString)) >>> >>> ______________________________**__ >>> From: Hugo Léveillé<[email protected]> >>> To: Nuke Python >>> discussion<nuke-python@**support.thefoundry.co.uk<[email protected]> >>> > >>> Sent: Wednesday, 15 February 2012, 12:50 >>> Subject: Re: [Nuke-python] html test links >>> >>> something like this ? >>> >>> nukescripts.start('http://www.**google.com <http://www.google.com>') >>> >>> or this ? >>> >>> nuke.message("<a href='http://www.google.com/'>**Google!</a>") >>> >>> >>> >>> >>> On Wed, Feb 15, 2012, at 09:51, Josh Imbruglia wrote: >>> >>>> hi everybody, >>>> >>>> is there any way to have an html 'a href' link launch a web browser >>>> from nuke? is there an environment variable or something hidden i can >>>> set such that this is the case? would be really handy. >>>> >>>> thanks, >>>> josh >>>> ______________________________**_________________ >>>> Nuke-python mailing list >>>> Nuke-python@support.**thefoundry.co.uk<[email protected]>, >>>> http://forums.thefoundry.co.**uk/ <http://forums.thefoundry.co.uk/> >>>> http://support.thefoundry.co.**uk/cgi-bin/mailman/listinfo/** >>>> nuke-python<http://support.thefoundry.co.uk/cgi-bin/mailman/listinfo/nuke-python> >>>> >>>> >>> -- >>> Hugo Léveillé >>> TD Compositing, Vision Globale >>> [email protected] >>> >>> ______________________________**_________________ >>> Nuke-python mailing list >>> Nuke-python@support.**thefoundry.co.uk<[email protected]>, >>> http://forums.thefoundry.co.**uk/ <http://forums.thefoundry.co.uk/> >>> http://support.thefoundry.co.**uk/cgi-bin/mailman/listinfo/**nuke-python<http://support.thefoundry.co.uk/cgi-bin/mailman/listinfo/nuke-python> >>> >>> >>> >>> ______________________________**_________________ >>> Nuke-python mailing list >>> Nuke-python@support.**thefoundry.co.uk<[email protected]>, >>> http://forums.thefoundry.co.**uk/ <http://forums.thefoundry.co.uk/> >>> http://support.thefoundry.co.**uk/cgi-bin/mailman/listinfo/**nuke-python<http://support.thefoundry.co.uk/cgi-bin/mailman/listinfo/nuke-python> >>> >>> ______________________________**_________________ >> Nuke-python mailing list >> Nuke-python@support.**thefoundry.co.uk<[email protected]>, >> http://forums.thefoundry.co.**uk/ <http://forums.thefoundry.co.uk/> >> http://support.thefoundry.co.**uk/cgi-bin/mailman/listinfo/**nuke-python<http://support.thefoundry.co.uk/cgi-bin/mailman/listinfo/nuke-python> >> >> ______________________________**_________________ > Nuke-python mailing list > Nuke-python@support.**thefoundry.co.uk<[email protected]>, > http://forums.thefoundry.co.**uk/ <http://forums.thefoundry.co.uk/> > http://support.thefoundry.co.**uk/cgi-bin/mailman/listinfo/**nuke-python<http://support.thefoundry.co.uk/cgi-bin/mailman/listinfo/nuke-python> >
_______________________________________________ Nuke-python mailing list [email protected], http://forums.thefoundry.co.uk/ http://support.thefoundry.co.uk/cgi-bin/mailman/listinfo/nuke-python
