Page 1 of 1

How to output debugging message in message view?

Posted: 16 May 2014, 02:52
by tianhui
(1) it is not ’System.Diagnostics.Debug.WriteLine('abcd');
How to output 'abcd' in message view?
(2) if I create two script, A and B, how to call a method that belong to A from B.


as non native language beginner, thank you for your help.

Re: How to output debugging message in message view?

Posted: 19 May 2014, 10:14
by Karol
Hi,

(1): Use

Code: Select all

VLog.Info("Script", "This is a Info message", VPopup.Never);
or

Code: Select all

VLog.Error("Script", "This is an Error message", VPopup.Never);
(2): This is only possible via binding output Event from B to input Method to A.

Cheers
Karol