OK Guys....I'm having a problem using MTEXT and DTEXT in AutoLISP. I might need to modify a environment variable, but I'm not sure which one. When I use: (defun C:TEST () (alert "This is a test.") (initdia) (command "_MTEXT") ) ......everything works fine and I can input my text. However when I try and place a command after the text command, like this: (defun C:TEST () (alert "This is a test.") (initdia) (command "_MTEXT") (command "_LINE") ) .....I get an invalid point error and the routine exits. It doesn't matter what command I try to use after the text command. Any idea on what I need to change? Thanks, The Sunburned Surveyor