knish 0 Newbie Poster

Hi,

The following works.

import maya.cmds as cmds

def importImage( fileName, fileType):
cmds.file( fileName, i=True );
return 1

cmds.fileBrowserDialog( m=0, fc='python("importImage")', ft='image', an='Import_Image', om='Import' )

However in the following situation it does not work. The error is

================================================== ====
Cannot find procedure "importImage".
Start of trace: (command window: line 1).
importImage (command window: line 1).

================================================== ====

import maya.cmds as cmds


def importImage( fileName, fileType):
cmds.file( fileName, i=True );
return 1

def OnBrowse(self, event):
cmds.fileBrowserDialog( m=0, fc='python("importImage")', ft='image', an='Import_Image', om='Import' )

what is the scope of a procedure in python. Can procedures be called globally. How ?

See the file attached. This runs in maya software. However, the solution can be generic.

BRgds,

kNish

Editors note:
Please use the [code=python] and [/code] tag pair to enclose your python code.