var fDesc=new Array();
fDesc[0] = "Mouse Click helps you to click mouse automatically on computer screen. Automate single or double clicks for left button or right button on mouse. Use Mouse Click in a batch file specifying mouse click command line parameters.
The Software can be used from command line or from script by specifying co-ordinates, type of mouse click to automate, etc.
Parameters :
- X = Value of X Co-Ordinate on Screen.
- Y = Value of Y Co-Ordinate on Screen.
- Click Type = 0 for Left Click, 1 for Right Click, 2 for Left button double click, 3 for Right Button double click.
- Cursor Back = 0 would say do not move cursor back to original position and 1 would say move cursor back to original location.
Example 1 -> MouseClick 0,0,0,0 : This would simulate a Left Button Click on extreme left corner of the screen and would not move mouse cursor back to original location.
Example 2 -> MouseClick 1,0,0,1 : This would simulate a Right Button Click on extreme left corner of the screen and would move mouse cursor back to original location.";
function tShowHide(id, show)
{
var s = document.getElementById("desc");
if ((s.innerHTML.length<=212 || show==1) && show!=2)
{
s.innerHTML = fDesc[id];
if (document.getElementById('m1'))
document.getElementById('m1').style.display='none';
if (document.getElementById('m2'))
document.getElementById('m2').style.display='none';
if (document.getElementById('more_txt'))
document.getElementById('more_txt').style.display='inline';
}
else
{
s.innerHTML = '';
}
}