Mathcad Prime 10 - Text Box Advanced Controls Hi,I am trying to configure the new MCP10 Text Box Advanced Controls.I want to use the Text Box as a PASS/FAIL display but I am having two issues.1) How do I pass more than one input into the Text Box? Currently, I can only add one input.2) How do I display text that is a result of the JScript routine in the box? (similar to how the Advanced Controls demo was shown in MCP10 promo, i.e., PASS = green, FAIL = red and so on).Currently, because I cannot pass slider_test and Limit into the Text Box, I have manually set Limit = 5 in JS (testing code). var slider_test; // Define the external variablevar test;var Limit;var limit;function TextBoxEvent_Start(Inputs, Outputs) {// Assign the value of 'slider_test'slider_test = Inputs[0].Value; // Ensure this correctly gets the input valueLimit = 5; // Ensure this correctly gets the input valuetest = slider_testlimit = Limit}function TextBoxEvent_Exec(Inputs, Outputs) {// Output "PASS" or "FAIL" based on the value of '