import rhinoscriptsyntax as rs
import Rhino

__commandname__ = "Printer"

# RunCommand is the called when the user enters the command name in Rhino.
# The command name is defined by the filname minus "_cmd.py"
def RunCommand( is_interactive ):
    print "Running at Command Level"
    rc = Rhino.RhinoApp.RunScript("-_Print", True)
    rs.Command("-_Print", True)
    return 0

if __name__ == "__main__":
    RunCommand(True)