GiantG
03-28-2009, 10:47 PM
Hi.
I wanna use this MEL Code inside Python:
$name = "myName";
createAnnotation $name;
I Pyhton i try this:
name = "myName"
mel.eval("createAnnotation name;")
but "name" is inside MEL a String and inside Python a Variable.
So Python names the Annotation "name" instead of "myName"
Any idea?
thxs
Guido
I wanna use this MEL Code inside Python:
$name = "myName";
createAnnotation $name;
I Pyhton i try this:
name = "myName"
mel.eval("createAnnotation name;")
but "name" is inside MEL a String and inside Python a Variable.
So Python names the Annotation "name" instead of "myName"
Any idea?
thxs
Guido
