The drag tag has no wiki summary.
0
votes
1answer
72 views
KineticJS - update drawFunc after an object on another stage has been moved
With the help of a fellow stackoverflow user, I am able to change the position of a two lines and a circle on the stage using the following:
var circle2 = new Kinetic.Circle({
...
0
votes
0answers
66 views
Drag object offscreen iOS like Google Chrome tabs
i am looking for doing something like Google Chrome, he are some photos:
photo 1
photo 2
These are panels which can be dragged off screen (rotated in facts). And when they are enough out of screen ...
0
votes
1answer
91 views
KineticJS sharing one object between two groups
I am using KineticJS to draw a vertical line and a horizontal line and a circle in the middle. I have grouped the vertical line and circle, however I would like to move the circle with the ...
2
votes
1answer
83 views
Prevent AutoScroll When Dragging HTML
I am using raphael to draw items on the screen. I have the container for the drawing object contained in a div and overflow: scroll. In all broswers except for IE 7/8 when the user is drawing it does ...
0
votes
2answers
70 views
Why the DIV is draggable once in IE using Crossrider & JQueryUI ? & no dragstop event fired?
I'm using Crossrider, I want to add a draggable div to the page's DOM.
The following code works well on Chrome and Firefox, and the dragstop handler function is fired for both Chrome and Firefox ...
0
votes
0answers
54 views
Dragging up to hide a div like mobile, jquery
I have this section in my application which I wanted to hide upon drag up like those in mobile phones, is this possible using jquery? or maybe jquery ui?
here is the screenshot of what I did,
1
vote
1answer
64 views
How to correctly make sets draggable in Raphael
One often wants to make a set of objects in Raphael draggable, but using .transform() to do so can be maddening. Say you start like this:
var paper = Raphael(0, 0, 500, 500);
var set = paper.set();
...
1
vote
0answers
106 views
dragging a image in boundary
I want that image only be dragged in its parent view. when user tries to drag it outside the view it will return its original position. basically i'm implementing android unlock type feature. please ...
0
votes
0answers
18 views
window topleft coordinate is incorrect in mouseDragged when dragging window titlebar
I drag a window titlebar, the window moves. but in mouseDragged function, the window topleft coordinate is incorrect that it remain the coordinate when mouse down.
0
votes
0answers
41 views
How to make and drag the tape like LabelBox iOS App?
I am making the same effect like LabelBox iOS App. I have no idea how to resize the tape(I think it is a customized UIView) while dragging it. And, while dragging, this tape will be resize (but the ...
1
vote
2answers
84 views
I want to use swipe technique to implement unlocking in my app.
| |
| -------drag--------> |
| |
when user click button and drag it across the screen the button/image should move with touch horizontally. I'm newbie. ...
-1
votes
1answer
35 views
Dragging a JLabel over another JLabel [closed]
I am trying to write a game and want to drag cards in my game.
I want to delete a label when I drag that lable to another label.
All the labels are created on the fly during the game.
Can someone ...
0
votes
1answer
246 views
Jquery dragstart and dragend events in Jquery UI
Is there somehow a way to access these two events? Do the even exsist?
I have to set transfer data on dragStart and dragEnd to an event object.
0
votes
0answers
50 views
Get object being dragged via GestureListerner DragDelta
I am using Microsoft.Phone.Controls.Toolkit for my Windows Phone project. It has an event GestureListener_DragDelta(object sender, DragDeltaGestureEventArgs e)
I have several image control objects on ...
0
votes
1answer
50 views
dragging objects in processing
I am having an issue implementing Daniel Shiffman's awesome dragging example into my sketch. I have used it before and it is great, however I am attempting to use it with some "fancy" for looping to ...
0
votes
1answer
125 views
Drag while in background in KineticJs
I have two layers generally representing a large background and some content on top of it.
I have made the background draggable but when dragged, it covers the content of the other layer.
Is it ...
3
votes
1answer
74 views
Preventing execution pause when dragging game window
I have a server and a client. But when ever I start moving the game window, it stops executing code until the window stops moving,causing a connection timed out because the server or client stopped ...
0
votes
0answers
128 views
SlidingDrawer Issue
In my app, i have added a Drag Layer in my layout and a Sliding Drawer as well. i have added a grid View containing images inside Slide Drawer.Now what i need is, after selecting an image from grid ...
0
votes
1answer
53 views
Reactivate drag control fails in openlayers
all. I have this little Problem and i'am looking for some help:
first I have a function which contains the following:
var point = new OpenLayers.Geometry.Point(imageConfig.XPos, imageConfig.YPos);
...
0
votes
1answer
95 views
View dragging segue
I want to create an application, which displays a draggable window (cart). The cart has to be dragged from the bottom of the screen and must cover all opened views. The dragging must follow your ...
0
votes
0answers
49 views
Function to resize a rectangle from corners and midpoints in VC++
I have an application in VC++ in which rectangles can be drawn using mouse drag. Now I have implemented selection in it. When a rectangle is selected, it will be highlighted with a border which are ...
0
votes
0answers
66 views
I want Disable Drag. When drop image to target and insert to database
$(document).ready(function() {
$(".Shops").draggable({ revert: 'invalid'});
$('#inventory').droppable();
$('#slot2').droppable({ accept: '.Shops'});
$('#slot1').droppable({ accept: ...
1
vote
1answer
65 views
Android. How to interrupt drag?
I am using this code to create drag and drop:
private final class MyTouchListener implements OnTouchListener {
public boolean onTouch(View view, MotionEvent motionEvent) {
if ...
0
votes
0answers
116 views
Javascript Photo Tagging
I am trying to create photo tagging script using JavaScript & PHP. I saw a demo on this site and wanted do this on my site.
I want to know how can I do the click and drag like in the demo on the ...
1
vote
1answer
98 views
Android drag imageview with finger behaves strange
I'm implementing imageview drag function to my application.
I have tried with below code but it's behaves strange.when I try to drag the image
it's changes the position and during the movement it's ...
0
votes
0answers
75 views
Dragging an object in openGL
What I'm trying to do is drag the end of a line across the screen using a motion function like so:
def motion(a, b):
b=wh-b
global MOVING
if (MOVING == 1):
table[0].x=a
table[0].y=b
...
0
votes
3answers
120 views
How to fix position in jquery draggable?
I am retrieving images from mysql data and putting them up in ul li. Now i am making a div which will have items draggable via jquery. What i want is when user changes the position, it should ...
0
votes
1answer
102 views
How to catch dragend event in javascript?
I'm trying to catch the dragend event in Javascript for a draggable DIV.
The dragend event is not fired at all, why ? and how to solve this ?
PS, I'm ussing .draggable() method from: jQuery UI 1.9.2
...
1
vote
1answer
393 views
Kendo UI Grid Disable Drag Row Selecting
Currently I have a Kendo Grid with multi selectable rows. My Problem is i cannot select text from any columns because of the Drag Row Selecting feature of Kendo. is there Any way to disable the Drag ...
0
votes
2answers
137 views
windows phone get image size after transform
I'm going crazy, I searched all day trying to solve this problem, I binded an image froma db and pinch to zoom works:
<Grid x:Name="LayoutRoot">
<ProgressBar x:Name="progressBar" ...
0
votes
1answer
186 views
How do I update new markers of selected place types ..?
I have created a custom google map, to show different types of places. When I click on a checkbox menu item in the list (see HTML). It places markers of that type within a radius of 20000 m (20 km) ...
0
votes
0answers
45 views
WPF - Drag image file into image object
I am facing a problem that until now, thought to be trivial.
I have a window in which, within an object image I would like to allow the user to drag an image file and display it. I found a lot of ...
0
votes
0answers
40 views
DataContext not notified
I am developing an app following the prism MVVM pattern. I have bound the text property of textbox to a public property in the VM. I have also implemented the drag & drop routine in the view. This ...
0
votes
2answers
71 views
Java mouseDragged logic
I have an image loaded (imagePanel) which has a mouseListener added to it earlier in the class.
The ImagePanel is being dragged around, but only by the upper left-hand corner of the image(0,0). the ...
2
votes
1answer
1k views
d3.js scatter plot - zoom/drag boundaries, zoom buttons, reset zoom, calculate median
I've built a d3.js scatter plot with zoom/pan functionality. You can see the full thing here (click 'Open in a new window' to see the whole thing):
http://bl.ocks.org/129f64bfa2b0d48d27c9
There are a ...
0
votes
1answer
332 views
Make Image drawn on Html5 Canvas Draggable with javascript
am a javascript newbie.I was able to successfully draw an image on an html canvas.But i need to be able to drag the image about on the canvas.I know this function can be implemented easily by some ...
0
votes
0answers
98 views
jQuery draggable list with fluid li elements around a shape
Here's what I'm trying to achieve!
I have a list with each li containing text. I would like to be able to drag this list up and down as per usual UI draggable item. However, if the text is wrapped ...
0
votes
0answers
51 views
i wanna make a guitar app, how to handle touches
I would like to make a guitar app, and I need to make it work like classic guitar apps, which means that if I tap a single string, it plays a sound, but if i drag my finger up and down on the strings ...
0
votes
1answer
119 views
Rotation along fixed point on drag
Is it possible to rotate a particular shape along fixed point with mousedrag in html5 with javascript and kinecticjs library.
2
votes
2answers
102 views
Divs resize with jQuery
I have the following structure
http://img109.imageshack.us/img109/589/layoutwireframe.png
I need the resize to work on % on sidebar - ex if i resize the SidebarTop section , the SidebarBottom part ...
0
votes
1answer
140 views
Android drag image
i have one imageview and one textview in my layout, and i wanto move this imageview with touch. Its work, but the problem is the textview move too , can u tell me how to fix it?
This is my code
...
0
votes
0answers
55 views
How to implement bottom time bar like http://www.wunderground.com/wundermap/ in my site [closed]
I wish to implement bottom time bar as in http://www.wunderground.com/wundermap/ in my site. Please help me to find out how it is possible.
PLease see the link ...
0
votes
1answer
154 views
KineticJS calling moveToTop() automatically after clicking over shape
I am with a little problem here but I don't know if it is a bug or a new feature since in the KineticJS change logs there is the following change:
"drag and drop operations now automatically ...
1
vote
1answer
299 views
Batch file Copy using %1 for drag and drop
I tried to make drag nad drop batch file.
I have problem file is on place but bat file couldnt find it ...
I want to copy .png files (like pict_2013020808172137243.png) to other folder and rename it.
...
1
vote
1answer
132 views
jquery calculate element size whilst resizing window
I hope someone can help with this.
I have written a function which adds width to a final li item in a nav ul based on the number of existing list items and the remaining width in the parent ...
0
votes
2answers
122 views
Drag down and change value of formula
I have this formula:
=IF(INDIRECT("summary!a2")="","",INDIRECT("summary!a2"))
.. this will retrieve the value of the a2 cell in the summary sheet.
What i want to know is what can i do on this ...
3
votes
1answer
89 views
UIScrollView of buttons - TouchUpInside?
I have a UIScrollView filled with buttons that I created programatically.
Paging is enabled and whenever users scroll through the pages rapidly they always end up accidentally clicking buttons that ...
0
votes
1answer
65 views
animate div when dragging
I'm trying to animate a div when I'm dragging another div.
I have an image inside a div and when I drag this image I'd like to animate/move some other div with another speed.
So the main question is ...
1
vote
0answers
160 views
Is there a simple way to add “easing” to a parallax?
I've created a fairly robust parallax. It uses a "timeline" concept to show items within a given frame/scene. Clicking on a trigger (date or text) will "zip" the user to that given scene. The user can ...
0
votes
0answers
66 views
HTML5 : Div getting cropped while Dragging
In HTML5 When Parent Div has -webkit-transform scale applied and child is draggable. Then while dragging child, child overlay is getting cropped.
What should be the right implementation for this.
...


