Go to: Synopsis. Return value. Keywords. Python examples.
fcheck()
Note: Strings representing object names and arguments must be separated by commas. This is not depicted in the synopsis.
fcheck is NOT undoable, NOT queryable, and NOT editable.
Invokes the fcheck program to display images in a separate window.None
import maya.cmds as cmds # View the image "myImage.iff" # cmds.fcheck( 'myImage.iff' ) # You can also display several images at once using filenames with # wildcards (each in a separate window) # cmds.fcheck( 'myTest*' ) # You can display an animation using a trailing dot (.) on the # filename. # cmds.fcheck( 'mySequence.' )