top of page

Moho Recipes: What are they?

Moho is a powerful program that allows professional animators and hobbyists to create animations. One of the most powerful things about the program is that you can create your own customized functionality through lua scripts.

Moho recipes are a collection of small snippets of code that you can copy, modify and paste in your scripts. Recipes are not fully functioning code that you can add without modification. Nor are they tutorials, so to use them, you need to be familiar with lua and the Moho scripting API. However, they can make programming faster, because you can just copy them, make a little modification and include them in your scripts.

Example

As an example, assume that you typically want to create tables in HTML, but you're not familiar with the syntax or you forget it. An HTML table recipe might look like:

HTML Table

Create a table using HTML.

 

<table> <tr> <th>First name</th> <th>Last name</th> <th>Age</th> </tr> <tr> <td>Tom</td> <td>Jones</td> <td>75</td> </tr> <tr> <td>Sally</td> <td>Preston</td> <td>32</td> </tr> </table>

 

New to Moho Scripting or Lua

If you're new to moho scripting you might find these links helpful.

Recent Posts

Archive

Tags

  • facebook
  • twitter
  • linkedin

©2016 by Family Fun Animation. Proudly created with Wix.com

bottom of page