Trying to add code to drag an image when it is pressed by the mouse and drop it when the mouse is released. Is this possible in App Lab?
In Javascript an drag operation involves three kinds of events:
- A mousedown event indicates that the user has pushed down a mouse button while the curser was positioned over the draggable event.
- A series of mousemove events is generated as the user moves the curser around the screen.
- A mouseup event that signals that the user has released the mouse button, completing the drag operation.
These events are available in AppLab.

Yes. I think click and drag is an interesting exercise because it reveals how something so simple seeming can be challenging from scratch.
Here is a very basic demo that shows the principle: https://studio.code.org/projects/applab/yOp_38MuwcDhWKNLmoB2mQ/
The key insights you need are:
(1) that the event parameter is an object that contains lots of properties for detecting the position of the mouse. do a console.log on the event property to see the possibilities. But e.g. event.x will give you the x-position of the mouse at the time the event occurred (for which you have an event handler setup).
(2) You need to maintain some kind of variable to track the state of the object - i.e. isDragging so that the three discrete events you can check know what to do. ie. mousedown on the images sets isDragging to true; mouseup sets isDragging to false, and mousemove applied to the entire screen can check whether isDragging is true to know whether to reposition the image.
Hope this helps,
Baker
Hi Baker,
what you described here is exactly what I am searching for, the demo is really nice!
But unfortunately mouse events don’t work for that on my android phone. Do you have a solution for a draggable element also working on mobile phones in general?
Hope you can help,
Nadine
Hi @nadine,
This is a great question - have you tried e-mailing support@code.org about this question? I think the engineers there might be able to give you an answer on this one since it is a bit more technical. If you find out something helpful from them, please report back, I am interested in knowing this too!
KT
I tried Baker’s code just now and it didn’t work very smoothly for me ('19-'20 AppLab, Mozilla, MacOS).
I made some changes, mainly getting the screen to collect mouseup events. This version allows different elements to be dragged, and adding drag-ability to any UI element just requires a mousedown event handler.
@nilvednairb I changed your code some, there was drift when dragging probably caused by race conditions. I made it so it just centers the object on the mouse while dragging. This may be a desireable side effect. https://studio.code.org/projects/applab/QcScG0VVlyezGgvGsKvimBfOEDp57ND7s0Dd684X04s
If it is not a desirable side effect I corrected for it. Though it makes code more complex.
https://studio.code.org/projects/applab/g3Q6so46nK07lxfzyjF2waEkbpsJ6Rs5oFX3Meb18PE
This is an old post, but I believe it is useful. I myself stumbled upon this through googling, so for any future viewers, here’s what I coded.
Unimportant rambling on what I actually did.
It is similar to the ones above, but I made a quick work around to the image dragging issue which is slightly more work to setup ui wise but takes away the jankiness of trying to drag images and is explained in the comments of my code. Its also easier to setup multiple draggable elements since everything is in functions though Im unsure how it may effect performance if used excessively.
The drag’n’drop for the images works by putting an empty text label the exact same size over the image, which will be you draggable element (the ‘ele’ parameter in the functions).
Along with this, I also added snapping so if you drop the element close enough to what you want to snap it with, it will snap there automatically. You can easily copy and paste the functions. You do have to call the function for every element you want to drag and drop.
Add extra numbers to the if-statements if you need to add more or less leeway to snapping or want to modify placing. While a bit compact, the comments at the very least vaguely go over everything and the code is small enough that modifying it shouldnt be too hard.
Linky: App Lab - Code.org
Edit: it seems like it only works with a mouse. If you want touchscreen users, probably easier to tap to grab and place instead of drag and drop.