ohh okay, so if I wanted to use only mel it would just be this
CODE
string $TRScheck = currentCtx
;
if ($TRScheck == "moveSuperContext")
print "Move mode";
else if ($TRScheck == "RotateSuperContext")
print "Rotate mode";
else if ($TRScheck == "scaleSuperContext")
print "Scale mode";
else
print "some other ctx";
Thanks a ton!