Moves the mouse to a specified position and selects a specified button. To release the button, call CitrixMouseButtonUp. Key modifiers (such as Ctrl and Alt) can be provided. Mouse speed can be specified in profile settings (Citrix / Simulation / Mouse) or by an appropriate call to the CitrixSetOption function. The coordinates can be specified absolutely or relatively to a window (by providing a window handle). The top left corner (of the screen or window) has the coordinates 0 / 0.
CitrixAPI.bdh
CitrixMouseButtonDown( in nX : number, in nY : number, in nWindow : number optional, in nButton : number optional, in nModifier : number optional ) : boolean;
true if successful
false otherwise
Parameter | Description |
---|---|
nX | X coordinate of the position where the button is to be pressed. |
nY | Y coordinate of the position where the button is to be pressed. |
nWindow | Window handle returned by a call to CitrixWaitForWindowCreation (optional). When this parameter is omitted or DESKTOP is specified, the provided coordinates must be relative to the desktop. When a window handle is specified, the nX and nY parameters state a position relative to the top left corner of the window (wherever the window is on the desktop). |
nButton |
Specify one of the following values (optional):
|
nModifier |
Specify one of the following values (optional):
|
transaction TMain var begin CitrixInit(640, 480); CitrixConnect("myserver", "myusername", "mypass", "mydomain", COLOR_16bit); CitrixWaitForLogon(); hWnd6 := CitrixWaitForWindowCreation("ICA Seamless Host Agent", MATCH_Exact, 0x94C800C4, 0, 0, 390, 223); CitrixWaitForWindow(hWnd6, EVENT_Activate); CitrixWaitForWindowCreation("Program Manager"); CitrixMouseClick(211, 197, hWnd6, MOUSE_ButtonLeft); CitrixWaitForWindow(hWnd6,EVENT_Destroy); CitrixMouseDblClick(41, 23, DESKTOP, MOUSE_ButtonLeft); hWnd8 := CitrixWaitForWindowCreation("My Documents", MATCH_Exact, 0x16CF0000, 171, 98, 328, 235); CitrixWaitForWindow(hWnd8,EVENT_Activate); CitrixMouseButtonDown(82, 13, hWnd8, MOUSE_ButtonLeft); CitrixMouseButtonUp(367, 44, false, DESKTOP, MOUSE_ButtonLeft); CitrixWaitForWindowPos(hWnd8,285, 31); ThinkTime(5.41); CitrixMouseClick(317, 13, hWnd8, MOUSE_ButtonLeft); CitrixWaitForWindow(hWnd8, EVENT_Destroy); CitrixDisconnect(); end TMain;