Hello Ventuzians!
THE FORUMS ARE CLOSED!

Please join our discord server HERE!! << click me :D

We are shutting our Ventuz Forum, but don't worry, it will all be archived for you to search in if you have a query. From now on, please add all your comments, questions or observations into our Discord Server

Thanks for the great time - see you on discord!!
Dee, Karol, Daniel and the whoooole Product and Support team!

How to output debugging message in message view?

Q and A about functionality and how to solve a special task for your application.

Moderator: Support

Post Reply
tianhui

How to output debugging message in message view?

Post by tianhui » 16 May 2014, 02:52

(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.

User avatar
Karol
Posts: 640
Joined: 10 Jan 2012, 12:07

Re: How to output debugging message in message view?

Post by Karol » 19 May 2014, 10:14

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

Post Reply