How to set the print command back home

Monkey Forums/Monkey Programming/How to set the print command back home

hardcoal(Posted 2011) [#1]
if i dont want the print to continue typing Line by Line
,Instead I Want to set It back home (to the first Line)

Example:
Print AlienName

Current Result output:
GeorgeConstanze
GeorgeConstanze
GeorgeConstanze
GeorgeConstanze
GeorgeConstanze
...

Output I Want:
GeorgeConstanze


and No, I dont want to use the DrawText Command


therevills(Posted 2011) [#2]
You cant control the console text output in HTML5 without writing extern Javascript commands or altering the mojo code itself.

Why not use DrawText? ;)


hardcoal(Posted 2011) [#3]
ok thanks, good to be sure, i thought so...


therevills(Posted 2011) [#4]
If you only want to see one instance of "GeorgeConstanze" you could keep a list of Alien's names created and only print it out if it isnt in the list.