Comment 0 for bug 1976241

Revision history for this message
Rene (rezzz81) wrote :

I'm trying to automate a few things in Bluestacks (for Mac, Version 4.270.1 (2803))

mouseclicks, find etc works fine but the dragdrop or manual mouse drag drop (move window up/down/left/right) doesn't work there.
Any suggestions? Tried playing with the system delay settings but no luck. It worked when I tried it in the webbased bluestacks so it seems to be a bluestacks (virtualbox) related issue

```def dragdrop(x,y):
  mmd = Settings.MoveMouseDelay
  Settings.MoveMouseDelay = 1
  dragDrop(x,y)
  Settings.MoveMouseDelay = mmd

def moveMouseXY(x,y)
  mouseMove(x)
  mouseDown(Button.LEFT)
  mouseMove(y)
  mouseUp()```