Questions tagged [drag]

In computer graphical user interfaces, drag is the first phase of a drag-and-drop operation. This involves selecting a virtual object by "grabbing" it and dragging it with the mouse down to a different location or onto another virtual object. An instance of some object relating to what was grabbed is usually brought with the drag operation.

In computer graphical user interfaces, drag is the first phase of a drag-and-drop operation. This involves selecting a virtual object by "grabbing" it and dragging it with the mouse down to a different location or onto another virtual object. An instance of some object relating to what was grabbed is usually brought with the drag operation.

2133 questions
0
votes
1 answer

Address of Dragged File in Windows

How can I know what is the address of dragged file or folder in windows explorer with Python?
ashkan
  • 1
0
votes
0 answers

How to drag input field in react?

I am trying to make same thing in react (my own custom plugin) same like this https://formbuilder.online/ I want to know how I will drag text field in dropable area. Here is my code https://codesandbox.io/s/blissful-elbakyan-4r7bb I don’t want to…
user944513
  • 12,247
  • 49
  • 168
  • 318
0
votes
1 answer

Rewinding animation drawable using drag left/right

I have animation drawable
Flux
  • 1
0
votes
1 answer

Stop dragscroll.js while using range sliders

I work with dragscroll. In the draggable area will be a few range sliders. Currently, it is not possible to use this sliders, because dragscroll moves the area. Is it possible to pause dragscroll while using the range sliders? I startet to write…
Elena1a1a
  • 21
  • 5
0
votes
1 answer

My drag and drop function isn't working. I'm getting a TypeError. What does this mean?

I'm getting an error stating: Uncaught TypeError: Cannot read property 'addEventListener' of null, I'm trying to make a drag and drop game with pizza images and I'm struggling to get anything to drag and drop anywhere on my HTML. I can't figure…
0
votes
1 answer

drag and drop using action script

I'm trying to use flash8 to create an drag and drop event using the mouse. My code is: import flash.events.MouseEvent; circle_mc.addEventListener(MouseEvent.MOUSE_DOWN,downf); circle_mc.addEventListener(MouseEvent.MOUSE_UP,upf); function…
0
votes
1 answer

javascript zoom and drag multiple images within div. got some code but cant get to an end

i have this code https://jsfiddle.net/j8kLz6wm/1/ when i add another image it does not work and it nicely does what i need, but…
0
votes
1 answer

How to disable dragging inside iframe element?

I'm trying to disable dragging inside my iframe element. e.g. my iframe contains a map and I want to allow clicking on items depicted in the map but at the same time, I want to prevent the map from moving when dragged (thus disable…
vojtanek
  • 1
  • 2
0
votes
0 answers

How to automatically scroll within a datagrid one step every x ms without locking the GUI?

What I want to achieve is a pretty standard thing, I guess: While dragging a row from a DataGrid in WPF, if the mouse cursor reaches the top or bottom edge, the DataGrid should automatically scroll more content into view. The following however is a…
Roland Deschain
  • 2,211
  • 19
  • 50
0
votes
0 answers

Drag and Drop in to the DataGrid not working after project deployment

In my WPF application I have a DataGrid. I have successfully implemented Drag&Drop functionality. I can drop any file into it without any problems. I then created Setup file for my application using Visual Studio Installer. When I install my…
d7vid
  • 19
  • 4
0
votes
0 answers

Drag and drop of disks in macOS Catalina

I have a macOS app that used to accept drag and drop of disks as well as DMG files. Since Catalina, it does not accept disks any more, but DMG files still work as before. I tried full disk access, but the behavior didn't change. Here's an excerpt of…
0
votes
1 answer

Detecting mouse click, move, and release (aka drag) without having to drag an object in html5

I am writing a simple timetable application in HTML5. I want the user to be able to enter events (such as Concerts, Lectures, etc.), by clicking inside a div, then drag and release the mouse to control the duration of an event (similar to the…
afdggfh
  • 135
  • 9
0
votes
1 answer

Pygtk: Disable moving separator in a gtk.Paned (HPaned/VPaned)

Is there a way I can stop the user from dragging around the separator in a gtk.Paned? I don't want to disable it completely... if any child resized or set_position() was called, the separator should still change position. Thanks!
Eric Chen
  • 3,562
  • 7
  • 39
  • 58
0
votes
1 answer

How do I add an image to an if statement in Javascript?

I'm new at JavaScript to be patient with me. I'm trying to get this little "game" to work where you drag cards in the drop box, and when you drop the joker card in it says "victory", otherwise it says "betrayal" for the other cards. Everything works…
0
votes
1 answer

how to add smoothness to the drag and scroll

I have a horizontal scroll area that is scrollable also by drag. I would like to add smoothness to this drag and scroll, I mean I want it to keep move on the x axis after I leave the drag and stop slowly. here's a small snippet of the whole scene…
nirshh5
  • 43
  • 1
  • 8