Exemplo n.º 1
0
def red9_help(*args):
    '''
    open up the Red9 help docs
    '''
    import Red9.core.Red9_General as r9General  # lazy load
    helpFile=os.path.join(red9ModulePath(),'docs',r'Red9-StudioTools Help.pdf')
    r9General.os_OpenFile(helpFile)
Exemplo n.º 2
0
def red9_facebook(*args):
    """
    open up the Red9 Facebook Page
    """
    import Red9.core.Red9_General as r9General  # lazy load

    r9General.os_OpenFile("http://www.facebook.com/Red9StudioPack/")
Exemplo n.º 3
0
def red9_apidocs(*args):
    '''
    open up the Red9 Vimeo Channel
    '''
    import Red9.core.Red9_General as r9General  # lazy load
    apidocs=os.path.join(red9ModulePath(),'docs', 'html', 'index.html')
    r9General.os_OpenFile(apidocs)
Exemplo n.º 4
0
def red9_vimeo(*args):
    """
    open up the Red9 Vimeo Channel
    """
    import Red9.core.Red9_General as r9General  # lazy load

    r9General.os_OpenFile("https://vimeo.com/user9491246")
Exemplo n.º 5
0
def red9_website_home(*args):
    """
    open up the Red9 Consultancy homepage
    """
    import Red9.core.Red9_General as r9General  # lazy load

    r9General.os_OpenFile("http://red9consultancy.com/")
Exemplo n.º 6
0
def red9_blog(*args):
    """
    open up the Red9 Blog
    """
    import Red9.core.Red9_General as r9General  # lazy load

    r9General.os_OpenFile("http://red9-consultancy.blogspot.com/")
Exemplo n.º 7
0
def red9_help(*args):
    '''
    open up the Red9 help docs
    '''
    import Red9.core.Red9_General as r9General  # lazy load
    helpFile=os.path.join(red9ModulePath(),'docs',r'Red9-StudioTools Help.pdf')
    r9General.os_OpenFile(helpFile)
Exemplo n.º 8
0
def red9_apidocs(*args):
    '''
    open up the Red9 Vimeo Channel
    '''
    import Red9.core.Red9_General as r9General  # lazy load
    apidocs = os.path.join(red9ModulePath(), 'docs', 'html', 'index.html')
    r9General.os_OpenFile(apidocs)
Exemplo n.º 9
0
def red9_apidocs(*args):
    """
    open up the Red9 Vimeo Channel
    """
    import Red9.core.Red9_General as r9General  # lazy load

    apidocs = os.path.join(red9ModulePath(), "docs", "html", "index.html")
    r9General.os_OpenFile(apidocs)
Exemplo n.º 10
0
def red9_help(*args):
    """
    open up the Red9 help docs
    """
    import Red9.core.Red9_General as r9General  # lazy load

    helpFile = os.path.join(red9ModulePath(), "docs", r"Red9-StudioTools Help.pdf")
    r9General.os_OpenFile(helpFile)
Exemplo n.º 11
0
def get_pro_pack(*args):
    import Red9.core.Red9_General as r9General  # lazy load
    result=cmds.confirmDialog(title='Red9_StudioPack : build %f' % red9_getVersion(),
                       message=("Red9_ProPack Not Installed!\r\r"+
                                "Contact [email protected] for more information"),
                       button=['Red9Consultancy.com','Get_Pro','Close'],messageAlign='center')
    if result == 'Get_Pro':
        log.warning('Red9 ProPack systems not yet available - watch this space!')
    if result =='Red9Consultancy.com':
        r9General.os_OpenFile('http://red9consultancy.com/')
Exemplo n.º 12
0
def red9ContactInfo(*args):
    result=cmds.confirmDialog(title='Red9_StudioPack : build %f' % red9_getVersion(),
                       message=("Author: Mark Jackson\r\r"+
                                "Technical Animation Director\r\r"+
                                "Contact me at [email protected] for more information\r\r"+
                                "thanks for trying the toolset. If you have any\r"+
                                "suggestions or bugs please let me know!"),
                       button=['thankyou','ChangeLog'],messageAlign='center')
    if result == 'ChangeLog':
        import Red9.core.Red9_General as r9General  # lazy load
        r9General.os_OpenFile(os.path.join(red9ModulePath(),'changeLog.txt'))
Exemplo n.º 13
0
def get_pro_pack(*args):
    import Red9.core.Red9_General as r9General  # lazy load
    result = cmds.confirmDialog(
        title='Red9_StudioPack : build %f' % red9_getVersion(),
        message=("Red9_ProPack Not Installed!\r\r" +
                 "Contact [email protected] for more information"),
        button=['Red9Consultancy.com', 'Get_Pro', 'Close'],
        messageAlign='center')
    if result == 'Get_Pro':
        log.warning(
            'Red9 ProPack systems not yet available - watch this space!')
    if result == 'Red9Consultancy.com':
        r9General.os_OpenFile('http://red9consultancy.com/')
Exemplo n.º 14
0
def red9ContactInfo(*args):
    import Red9.core.Red9_General as r9General  # lazy load
    result=cmds.confirmDialog(title='Red9_StudioPack : build %f' % red9_getVersion(),
                       message=("Author: Mark Jackson\r\r"+
                                "Technical Animation Director\r\r"+
                                "Contact me at [email protected] for more information\r\r"+
                                "thanks for trying the toolset. If you have any\r"+
                                "suggestions or bugs please let me know!"),
                       button=['Red9Consultancy.com','ChangeLog','Close'],messageAlign='center')
    if result == 'ChangeLog':
        r9General.os_OpenFile(os.path.join(red9ModulePath(),'changeLog.txt'))
    if result =='Red9Consultancy.com':
        r9General.os_OpenFile('http://red9consultancy.com/')
Exemplo n.º 15
0
def get_pro_pack(*args):
    try:
        #new pro_pack build calls
        import Red9.pro_pack.r9pro as r9pro
        r9pro.r9import('r9wtools')
        import r9wtools
        r9wtools.MailRegistration().show()
    except:
        #legacy
        import Red9.core.Red9_General as r9General  # lazy load
        result=cmds.confirmDialog(title='Red9_StudioPack : build %f' % red9_getVersion(),
                            message=("Red9_ProPack Not Installed!\r\r"+
                                     "Contact [email protected] for more information"),
                            button=['Red9Consultancy.com','Get_Pro','Close'],messageAlign='center')
        if result == 'Get_Pro':
            log.warning('Red9 ProPack systems not yet available - watch this space!')
        if result =='Red9Consultancy.com':
            r9General.os_OpenFile('http://red9consultancy.com/')
Exemplo n.º 16
0
def get_pro_pack(*args):
    try:
        #new pro_pack build calls
        import Red9.pro_pack.r9pro as r9pro
        r9pro.r9import('r9wtools')
        import r9wtools
        r9wtools.MailRegistration().show()
    except:
        #legacy
        import Red9.core.Red9_General as r9General  # lazy load
        result=cmds.confirmDialog(title='Red9_StudioPack : build %f' % red9_getVersion(),
                            message=("Red9_ProPack Not Installed!\r\r"+
                                     "Contact [email protected] for more information"),
                            button=['Red9Consultancy.com','Get_Pro','Close'],messageAlign='center')
        if result == 'Get_Pro':
            log.warning('Red9 ProPack systems not yet available - watch this space!')
        if result =='Red9Consultancy.com':
            r9General.os_OpenFile('http://red9consultancy.com/')
Exemplo n.º 17
0
def red9ContactInfo(*args):
    import Red9.core.Red9_General as r9General  # lazy load

    result = cmds.confirmDialog(
        title="Red9_StudioPack : build %f" % red9_getVersion(),
        message=(
            "Author: Mark Jackson\r\r"
            + "Technical Animation Director\r\r"
            + "Contact me at [email protected] for more information\r\r"
            + "thanks for trying the toolset. If you have any\r"
            + "suggestions or bugs please let me know!"
        ),
        button=["Red9Consultancy.com", "ChangeLog", "Close"],
        messageAlign="center",
    )
    if result == "ChangeLog":
        r9General.os_OpenFile(os.path.join(red9ModulePath(), "changeLog.txt"))
    if result == "Red9Consultancy.com":
        r9General.os_OpenFile("http://red9consultancy.com/")
Exemplo n.º 18
0
def red9_vimeo(*args):
    '''
    open up the Red9 Vimeo Channel
    '''
    import Red9.core.Red9_General as r9General  # lazy load
    r9General.os_OpenFile('https://vimeo.com/user9491246')
Exemplo n.º 19
0
def red9_facebook(*args):
    '''
    open up the Red9 Facebook Page
    '''
    import Red9.core.Red9_General as r9General  # lazy load
    r9General.os_OpenFile('http://www.facebook.com/Red9StudioPack/')
Exemplo n.º 20
0
def red9_blog(*args):
    '''
    open up the Red9 Blog
    '''
    import Red9.core.Red9_General as r9General  # lazy load
    r9General.os_OpenFile('http://red9-consultancy.blogspot.com/')
Exemplo n.º 21
0
def red9_website_home(*args):
    '''
    open up the Red9 Consultancy homepage
    '''
    import Red9.core.Red9_General as r9General  # lazy load
    r9General.os_OpenFile('http://red9consultancy.com/')
Exemplo n.º 22
0
def red9_blog(*args):
    '''
    open up the Red9 Blog
    '''
    import Red9.core.Red9_General as r9General  # lazy load
    r9General.os_OpenFile('http://red9-consultancy.blogspot.com/')