Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6829947
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T22:33:37+00:00 2026-05-26T22:33:37+00:00

I have 3 functions which generate three different lists. I am trying to generate

  • 0

I have 3 functions which generate three different lists. I am trying to generate a mel script which is a text file which will write the values taken from these three lists. All three lists have same number of values. All the values in these lists are animation data and therefore they have to be passed in a mel script to drive an animation in Maya. All these lists values are floating point numbers.

func1() :
    generates tlist

func2() :
    generates list1

func3() :
    generates list2  

def mel_script() :
  """ Generating the mel script with the animation information """
  with open("mel.txt", "w") as melFile :
      melFile.write(setKeyframe "blend_shape.lip_round";
                    setKeyframe "blend_shape.jaw_open";

                    currentTime 0 ;
                    setAttr "blend_shape.lip_round" 0;
                    setAttr "blend_shape.jaw_open" 0;
                    setKeyframe -breakdown 0 -hierarchy none -controlPoints 0 -shape 0 {"blend_shape"}; 

                    currentTime (first value of tlist) ;
                    setAttr "blend_shape.lip_round" (first value of list1);
                    setAttr "blend_shape.jaw_open" (first value of list2);
                    setKeyframe -breakdown 0 -hierarchy none -controlPoints 0 -shape 0 {"blend_shape"};

                    currentTime (second value of tlist) ;
                    setAttr "blend_shape.lip_round" (second value of list1);
                    setAttr "blend_shape.jaw_open" (second value of list2);
                    setKeyframe -breakdown 0 -hierarchy none -controlPoints 0 -shape 0 {"blend_shape"};                       
                   ........
                   ........

The first 6 lines in the file are default. The text in the mel script should continue up until the last values from each list. How can I achieve this? Thank you.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-26T22:33:38+00:00Added an answer on May 26, 2026 at 10:33 pm

    Use zip.

    for x, y, z in zip(func1(), func2(), func3()):
        melFile.write("currentTime %f" % x)
        melFile.write('setAttr "blend_shape.lip_round" %f' % y)
        melFile.write('setAttr "blend_shape.jaw_open" %f' % z)
    

    Add in all of the other boilerplate you want to generate, and try to think of better variable names than x, y, z.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Hallo, how can I pass more parameters to usort? I have different functions, which
My application has several independent top-level windows, which all have completely different functions/workflows. I
Suppose I have two functions which look like this: public static void myFunction1(int a,
I've been using debug() more often now, but sometimes I wonder which functions have
I have a Flash movie which has a number of actionscript 2 functions which
Is there a firefox plugin which functions as an SVN client? I have checked
I have two Python functions, both of which take variable arguments in their function
Hi I have a plugin.dll which contains this all npp functions I have embeded
I have a class which has many small functions. By small functions, I mean
I have a whole slew of database access functions which assume a particular connection

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.