Message 1 of 2
Print using Standard Output

Not applicable
06-21-2021
09:13 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
With Python, I can write to the tiny, long window at the bottom right of the screen. (Command Response Window - it might be called that, who knows???)
import sys
def console_it(s):
sys.stdout.write(s)
console_it("Hello world")
What's the equivalent just using MEL? (for Maya LT fans)
The following just prints to the Script editor History Window - not what I'm after.
global proc console_it(string $s)
{
print($s);
}
Any ideas?