Activity log for bug #1976241

Date Who What changed Old value New value Message
2022-05-30 09:52:44 Rene bug added bug
2022-05-30 09:53:21 Rene description 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()``` I'm trying to automate a few things in Bluestacks (for Mac, Version 4.270.1 (2803)) with Sikulix 2.0.5 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()```
2022-05-30 09:53:56 Rene description I'm trying to automate a few things in Bluestacks (for Mac, Version 4.270.1 (2803)) with Sikulix 2.0.5 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()``` I'm trying to automate a few things in Bluestacks (for Mac, Version 4.270.1 (2803)) with Sikulix 2.0.5 on MacOs Monterey 12.4 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()```
2023-04-21 15:36:14 RaiMan sikuli: status New Invalid