Go to: Synopsis. Return value. Keywords. Python examples.

Synopsis

melInfo()

Note: Strings representing object names and arguments must be separated by commas. This is not depicted in the synopsis.

melInfo is NOT undoable, NOT queryable, and NOT editable.

This command returns the names of all global MEL procedures that are currently defined as a string array. The user can query the definition of each MEL procedure using the "whatIs" command.

Return value

string[]procedure names

Keywords

mel

Python examples

import maya.cmds as cmds

# Query the names of all the global MEL procedures currently defined.
#
procs = cmds.melInfo()