08-11-2009, 12:02 PM
although I agree with Basanth's Sugestion - if you can post more technical details then we can defintely help you in better way.
If I have understood it correct you want to a double click operation on a particular object
I can suggest you for the second scenario
2) Need to perform double click on particular value, how to do this action on specific value
get the x, y co-ordinates of the object on which you want to perform the double click.
Create and object of Mercury.DeviceReplay
use
where Object is device replay object
and possible values for Button can be
LEFT_MOUSE_BUTTON = 0
MIDDLE_MOUSE_BUTTON = 1
RIGHT_MOUSE_BUTTON = 2
If I have understood it correct you want to a double click operation on a particular object
I can suggest you for the second scenario
2) Need to perform double click on particular value, how to do this action on specific value
get the x, y co-ordinates of the object on which you want to perform the double click.
Create and object of Mercury.DeviceReplay
use
Code:
object.MouseDblClick( x, y, Button )
where Object is device replay object
and possible values for Button can be
LEFT_MOUSE_BUTTON = 0
MIDDLE_MOUSE_BUTTON = 1
RIGHT_MOUSE_BUTTON = 2