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)
def imitateCrash(mode="frank"): showMessageDialog() if mode == "frank": gifUI = QGifDialog(parent=mayaMainWindow()) gifUI.exec_() if mode == "rick": pm.launch(web=RICKROLD)
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)
def author(): pm.launch(web='https://www.facebook.com/sidmehraajm/')
def helpMenuCmd(self, *args): pm.launch(web='https://github.com/nrtkbb/')
def helpMenuCmd(self, *args): """Open a browser to the online doc""" cmds.launch(webPage="http://www.google.com")
def goBugLink(self, *args): """let user report bug""" pm.launch(web='https://github.com/styzhu/FA_maya_tools/issues')
def goDocLink(self, *args): """go to document/help""" pm.launch(web='https://github.com/styzhu/FA_maya_tools/wiki/Voxel-Maker-Tool')