Page 1 of 1

Output to console

Posted: Tue Jul 09, 2019 5:51 pm
by seaniepie
Hi all,

How do we output to the textbox console on the standard html5 output? I understand we may need to inject a bit of JS perhaps. Just for JS debugging.

Thanks

Re: Output to console

Posted: Wed Jul 10, 2019 12:33 am
by seaniepie
Not to worry, I worked it out::

From LC into the JS console window:

Code: Select all

put "MyText"
put tMyVar
From JS into the JS console window:

Code: Select all

Module.print('MyText');
Module.print(myVar);