Archive: Text in LogWindow


Text in LogWindow
  Is there a way so that I can disable certain bits of text in the log window, like stuff I need to silently extract/delete/rename without its text being displayed.
This is mainly because my Map-Compiler program writes its LogWindow ouput to a log file, and its stupid having eg. x:\path\to\file.txt renamed to -> x:\path\to\newfile.txt in between the compile ouput.

Thanks for help


-Stuart


Use SetDetailsPrint none:


SetDetailsPrint none

Rename "x:\\path\\to\\file.txt" "x:\\path\\to\\newfile.txt"

># Put things that you don't want to be displayed in log window here!

>SetDetailsPrint both
>
If you don't use SetDetailsPrint both after all, will not show the "Completed" text.

Yes, use


DetailsPrint "Do you see something?"
SetDetailsPrint "None" ;Hide me
File "boo.txt"
SetDetailsPrint "Both" ;Show me
DetailsPrint "No, didn't ya."

Heh thanx :)

-Stuart