The drag tag has no wiki summary.
1
vote
1answer
115 views
Java - Dragging a Drawn Object
I have an application having five buttons:
i) Square ii) Rectangle iii) Circle iv) Triangle v) Clear
Clicking on any of the first four buttons will draw a shape on a drawing canvas (which is a ...
1
vote
2answers
281 views
Disable drag of JFrame
I want to ask how to make frame can not drag when the application is running?
And then how to disable maximize, minimize button (title bar)?
I'm using JFrame.
0
votes
2answers
227 views
obscure bug while using ti.draggable
This is a simple code of Appcelerator Titanium Mobile application it works almost fine, but...
var drag = require('ti.draggable');
var win = Ti.UI.createWindow({exitOnClose: true, backgroundColor: ...
1
vote
0answers
119 views
Zoom, pan and drag a Symbol in Flash
I am trying to modify this script http://www.flashandmath.com/howtos/zoom/ to use a Symbol instead of an Bitmap image. Loading a .swf file is also accepted. Please advice, how can this be achieved.
I ...
0
votes
1answer
71 views
Dragable Drawer Adobe Flex Mobile
Could someone please assist me with a way to create a drag-able drawer that resides on the bottom of my mobile application? I am wanting to make it so there is a drag handle that is visible all the ...
0
votes
1answer
77 views
UIimages move to the center when going to another view
I have a drag n drop kind of app. Where you can select images and drag them anywhere on the screen!
The problem I'm running into is, when you move to another view, all the images reset to the center, ...
0
votes
0answers
147 views
AS3 - Drag to scroll ScrollPane with middle/right button
I know that it's possible to let the user drag the content in a ScrollPane around using scrollDrag, so that they don't have to use the scrollbars. However, with scrollDrag, it only works for the left ...
0
votes
1answer
126 views
Drag NSView anywhere on screen (no window)
I want to drag out a copy of the menu bar icon anywhere on the screen. I NSStatusItem uses a custom view and I've been able to have it display an icon in the menu bar. My application doesn't use an ...
0
votes
2answers
101 views
IOS: drag imageView not from center
I have this code to drag an imageView:
in touchbegan:
CGPoint point = [touch locationInView:self];
[imageView setCenter:point];
in touchmoved:
CGPoint point = [touch locationInView:self];
...
1
vote
1answer
117 views
Dragging UIView as subview of UITableView lags behind finger
I have designed a custom subclass of UITableView. At some point in its use, I need to add a UIView as a direct subview of UITableView, drag it within the table view using my finger, and then remove ...
0
votes
1answer
109 views
Unable to drag dojo floating pane
I have two dojo buttons, which on click create floating panes. Now the 'Search' button creates a floating pane which does not move but the 'Mapping the Data' button's floating pane works fine. Till ...
0
votes
0answers
25 views
Iframe to external site, make drag and drop
Is there a way that i can do the following:
I have an iframe that shows me my google document, i'm using .net. I have an image list and i want to do drag and drop to the iframe content.
0
votes
1answer
2k views
Drag down formula and change COLUMN references instead of ROWS
I have this formula in Excel, in row E5:
=SUM(Banco!H$5;Banco!H$6;Banco!H$8;Banco!H$9;Banco!H$10;Banco!H$11)
I need it to change the COLUMN references instead of ROWS when I drag it down (basically ...
0
votes
2answers
347 views
WP7 slider strange behavior
I'm developing Windows Phone 7 app. I have slider control on several page. However, when I go to a certain page within my app, all my slider controls in every page behave strangely.
The symptom is ...
0
votes
1answer
107 views
getHistorySize() always “0”
For ACTION_MOVE events, I'm obtaining the history size by calling event.getHistorySize() everything works perfectly on my Galaxy Nexus running Jellybean but on my LG Optimus 3D running Gingerbread, ...
0
votes
0answers
132 views
jQuery full-size drag and drop + mousescroll?
Ive tried to make the same effects as this site http://www.demodern.de/
I tried to modify iScroll4 http://cubiq.org/iscroll-4 and www.flowslider.com but haven't had any luck with it.
I tried to use ...
1
vote
1answer
136 views
How can I drag an entire frameless QWidget by clicking and dragging on an element inside of a QWebView?
I currently have a QWidget that contains a QWebView. The container QWidget is translucent and frameless. I’ve been able to make it possible to drag the frameless window around by clicking and dragging ...
0
votes
0answers
73 views
Drag PDF Page and use as image file into form
I've got a PDF inside an HTML Object tag. I'm trying to drag a certain PDF page I'm viewing into a Div box inside a html form. I know you can drag a pdf page out of the browser and it saves as an ...
2
votes
2answers
714 views
How to mimic two-finger scroll/drag gesture on ios simulator?
I have a scroll page that I specified two fingers minimum. It works on my device, but don't know how to mimic this gesture on Simulator. I can mimic one-finger scroll without problem. I've tried ...
0
votes
1answer
316 views
Drawing lines by dragging the mouse in matlab
I want to draw a set of disconnected lines on top of an image by dragging the mouse while pressing the left button. However, if I click on a previously drawn line to specify the starting point of the ...
0
votes
1answer
161 views
iOS: Draggable UIView (vertically only)
In my app I have a small subview that I'd like to tether in the bottom right corner and allow to be moved only vertically for a fixed distance.
I have some code to allow it to be dragged, but no ...
1
vote
1answer
445 views
Mouseup not working after mousemove on img
I'm trying to do a simple drag script.
The idea is to save the position when the mouse is down, update the view while the mouse is moving, and stop when mouse is up. Problem, mouseup event isn't ...
2
votes
0answers
174 views
Setting drag mode over QGraphicsScene with QGraphicsWebView() in it
I have:
self.setScene(QtGui.QGraphicsScene(self))
self.setTransformationAnchor(QtGui.QGraphicsView.AnchorUnderMouse)
self.setDragMode(QtGui.QGraphicsView.ScrollHandDrag)
where self is ...
1
vote
3answers
276 views
drag a div within div
I am using "easyui" jquery to drag div, but problem is that div drag within whole body not with in parent div.
code:
$('#dd2').draggable();
$('#dd3').draggable();
$('#dd4').draggable();
0
votes
0answers
41 views
Preventing click while dragging
I'm use Google Maps API v3 to output map. Then I'm draw a layer with svg polygons and set some events by clicking on the element.
But I have a problem: while dragging a map click event is working. ...
1
vote
2answers
182 views
how to drag object
i want to drag a box and i want my mouse cursor to be where i clicked in a rectangle while im draging rectangle. i tried this code and i got bunch of errors when i tried to drag.
import objectdraw.*;
...
0
votes
0answers
316 views
Using hammer.js code executing twice
Im using Hammer.js to respond to touch events on a mobile.
My code at the click() event seems to be firing twice. Can anyone help remove the command after it has fired. I have tried setting the var ...
0
votes
0answers
70 views
Click-and-drag issue with scrolling divs
This scrolling form uses anchor navigation within a container. Click-and-dragging any textual input field will actually drag the whole form — within .scrollback — breaking the whole experience, as ...
2
votes
1answer
112 views
Drop targets in nested control
In a win form I have placed a panel control (the parent), on DragDrop event I am creating another panel inside this parent (the child). Now when I drag any thing on to the child control the event is ...
0
votes
0answers
158 views
Drag and move multiple objects
After observing SDK samples, testing myself and searching a lot on stack overflow.Can't find any example with multiple object moved by touch. Any ideas ?
0
votes
3answers
463 views
Drag and move a picture inside a JLabel with mouseclick
I have an image inside a JLabel.
JLabel label = new JLabel(new ImageIcon("C:\\image.jpg"));
label.setSize(300,300);
I want the following functionality.
-I click on a location inside the JLabel ...
2
votes
2answers
188 views
cursor: mouse grab javascript
I have two images: one with an open hand, and one with a grabbing hand. I was hoping that a simple "onmousedown" and "onmouseup" functions help to make the famous grabbing hand you can see in ...
2
votes
1answer
192 views
SWT Composite with movable Controls (drag and drop)
I am trying to implement a DragAndDrop capability on a ScrolledForm with several expandable Sections. I should be able to move sections around in the form, reordering them.
After a bit (a lot) of ...
0
votes
0answers
144 views
Drag-resizing two divs sharing the same space
I am trying to code a view that will allow to have a set of blocks placed one after another either horizontally or vertically :
______________________
|_____|___________|____|
or
_
| |
|_|
|_|
...
3
votes
1answer
214 views
How to simulate a drag end event in Raphael JS?
I'm using Raphael JS 2.0 and would like to simulate the end of a drag on another element and then remove the current element being handled. If it can be done using jquery that would be great as well.
...
1
vote
1answer
161 views
ajaxToolkit:ModalPopupExtender drag issue
When I try to drag the popup, first I have to click on draging position. But when I try to click on the draging enable area, popup window goes to another position. Even I try again it continuously ...
0
votes
1answer
61 views
how to change IKImageBroswerView dragging image
I'm working on a program on Mac_OS 10.6 and later. The program language I'm using is Objc.
And I wonder what can I do to change the dragging image for an IKImageBrowserView? Is there any methods or ...
5
votes
1answer
302 views
Full Calendar event hyperlinks automatically fire in Firefox
I'm using Full Calendar with draggable events. I have specified a url in the event object which causes the event to link to a page. Whenever I drag an event in IE or Chrome, the click event does not ...
0
votes
0answers
69 views
Scale and Drag ImageView
I wish to implement a two finger scale and drag feature for an ImageView. What is best practice for this? Should I use GestureDetector or ScaleGestureDetector to accomplish this?
Any advice welcome. ...
0
votes
1answer
198 views
i want to drag multiple images and drop them in a particular area in android [closed]
I am making a kids game where I have alphabets on top and random images down.When i drag an image such as apple to letter 'a' it should have a pop up saying its right. Can anyone guide me how to go ...
0
votes
2answers
149 views
How to click-drag the contents of a frame with jQuery?
I am attempting to enable click-and-dragging (similar to the touch-drag interaction one might enjoy on an iPhone or an iPad) on a frame within an old-school frameset.
The functionality I'm looking ...
1
vote
0answers
84 views
MouseEnter equivalent in android
I want to port my windows phone game to android. I used the MouseEnter-event but didnt find anything in android.
The workflow is, you touch on area1 and "drag" it on a other area2. Drag means in this ...
0
votes
2answers
160 views
jQuery drag event doesn't seem to have deltaX property
I am trying to create my own slider plugin with jQuery and this library for the drag event. However, on callback for the event, the deltaX-property doesnt seem to occur, which is really weird since it ...
0
votes
0answers
91 views
Zoom in out on click flash
I have a catalog made with Adobe inDesing, I put a nice page turn effect when going from page to page, BUT since there are 2 pages on the screen at the same time they are relatively small.
I need to ...
0
votes
1answer
74 views
Drag in View Controller Like Notification Center
I would like to be able to drag in a view controller that contains a webview just like the apple notification center does. If it is possible i would like to be able to drag in 4 view controllers from ...
0
votes
0answers
81 views
jquery on drag, disregard overlayed (absolute) positioned element
Please check this FIDDLE
This is the html
<div id="wrapper">
<div class="button_area"></div>
<div class="icon"></div>
<div>
The icon is positioned atop ...
2
votes
1answer
136 views
How to slide to perform clicks android
I'm trying to make an application that the user can slide or drag the finger across a set of buttons to perform a click. I've tried onTouch with MotionEvent.ACTION_MOVE but I can't seem to get it to ...
0
votes
1answer
135 views
RaphaelJs Drag constraints
I have a slider in which I want to be able to drag in the x-co ordinate only and and set constraints beyond which the shape cant be dragged (the shape shouldn't go beyond the line in both the ...
0
votes
2answers
95 views
MKMapView on iOS 5 inhibits timers when user do drag and/or zoom
I wrote an application that use MKMapView. This application use a timer to update some information on screen. Actually, when user touch the map and start the drag, the timer isn't fired anymore until ...
2
votes
1answer
150 views
Panning, exact definition
What is the difference between scrolling and panning?
Is panning identified as the action of dragging the image/background, while scrolling is only when you use scroll bars?
And, what is the ...
