2 Attachment(s)
In JavaScript, Displaying Pressed button's Number and it's identification
Here my question is how to print/display the numbers from pressed buttons(as shown in figure) using JavaScript. However, here I am working on a device and we have to control it from JavaScript. Below I have mentioned my code(.js) snippet:
Code:
// Numbers function
function Numbers(cmd)
{
System.Print("Command Sent is: "+cmd);
var num = cmd;
System.Print("Button pressed is: "+num);
}
// Displaying Numbers
function Display()
{
Numbers(num);
num.toString();
dbgPrint("Displaying number: " + num);
}
And parameters for this function I am passing from some other file(.xml) as standard.
Code:
<function name="Display" export="Display">
<parameter name="display" type="string" description="Drag and drop this for clear-button function.">
</parameter>
</function>
<function name="Numbers" export="Numbers">
<parameter name="command" type="mcinteger" description="Drag and drop this command for Numbers.">
<choice name="1" value="1"/>
<choice name="2" value="2"/>
<choice name="3" value="3"/>
<choice name="4" value="4"/>
<choice name="5" value="5"/>
<choice name="6" value="6"/>
<choice name="7" value="7"/>
<choice name="8" value="8"/>
<choice name="9" value="9"/>
<choice name="0" value="0"/>
</parameter>
</function>
Attachment 6197