Exemplo n.º 1
0
def LaunchWebPage(url):
    """
    Launches the given URL in an external web browser (note - may not work on Linux platforms).
    
    :param url: string - the URL of some website.
    """
    pm.launch(web=url)
Exemplo n.º 2
0
def imitateCrash(mode="frank"):
    showMessageDialog()
    if mode == "frank":
        gifUI = QGifDialog(parent=mayaMainWindow())
        gifUI.exec_()
    if mode == "rick":
        pm.launch(web=RICKROLD)
Exemplo n.º 3
0
 def _go_to_wiki(self):
     """
     Opens the browser link and direct it to the help page for this tool
     :return: Node
     """
     link_page = 'http://alijafargholi.com/2015/11/' \
                 'prman-camera-projection-setup-for-maya'
     # link_page = "https://www.google.com/"
     pm.launch(web=link_page)
Exemplo n.º 4
0
def author():
    pm.launch(web='https://www.facebook.com/sidmehraajm/') 
Exemplo n.º 5
0
 def helpMenuCmd(self, *args):
     pm.launch(web='https://github.com/nrtkbb/')
Exemplo n.º 6
0
 def helpMenuCmd(self, *args):
     """Open a browser to the online doc"""
     cmds.launch(webPage="http://www.google.com")
Exemplo n.º 7
0
 def helpMenuCmd(self, *args):
     """Open a browser to the online doc"""
     cmds.launch(webPage="http://www.google.com")
Exemplo n.º 8
0
 def goBugLink(self, *args):
     """let user report bug"""
     pm.launch(web='https://github.com/styzhu/FA_maya_tools/issues')
Exemplo n.º 9
0
 def goDocLink(self, *args):
     """go to document/help"""
     pm.launch(web='https://github.com/styzhu/FA_maya_tools/wiki/Voxel-Maker-Tool')