Questions tagged [movable]
52 questions
1
vote
1 answer
How to access the position offsets of movable QGraphicsItems?
I recently got started with Python Qt and I'm trying to make a click-and-drag map editor that reads from and writes to a .json file. So far my progress is getting the QGraphicsView to accurately display the entire room layout with rectangles…

Lakifume
- 15
- 4
1
vote
1 answer
why dblclick does not work in my Vue js app
I have two movable elements in my page & I like to log something in the console when I double click on the first movable object.
I call the dblclick event but it's not triggered.I like to know how I can solve this problem. My code is here

FFXX
- 95
- 8
1
vote
2 answers
How can I check the app is movable to sd or not
I want to know how to check whether the app is movable to sd or not through code. I know how to get the installed applications list and is it on sd card or not.
If ApplicationInfo flags contains ApplicationInfo.FLAG_EXTERNAL_STORAGE then it is on sd…

koder
- 454
- 6
- 18
1
vote
2 answers
how to make multiple movable elements
I have this code for creating movable windows (elements), and I call this function when I create a new window:
function dragWindow(elmnt) {
var pos1 = 0, pos2 = 0, pos3 = 0, pos4 = 0;
elmnt.querySelector(".window-caption").onmousedown =…
user11955706
1
vote
1 answer
How can I make two circle objects (inside the canvas ) movable?
I have one circle that movable in canvas, and the circle is not the set position. It is created in any place when the mouse is clicked. I am trying to create two circles (pink and yellow) in a set position, and I want to create the circles…

Kijimu7
- 55
- 8
1
vote
2 answers
How to make draggable pop over in bootstrap using jquery or css?
I want to draggable or movable popover because when there are two popover open in one page then two popover are overlapped by each other. For this thing you can check below screenshot.
So i want to move popover using the mouse cursor pointer where…

Bhavin Thummar
- 1,255
- 1
- 12
- 29
1
vote
1 answer
C# Move Panel inside Form
I would like to make certain panels within my Form draggable/movable. I have integrated:
public const int WM_NCLBUTTONDOWN = 0xA1;
public const int HT_CAPTION = 0x2;
[DllImportAttribute("user32.dll")]
public static extern int…
user6871013
1
vote
1 answer
Movable Type: Change URL using regex replace
In my text I have few urls which I want to change the pointing address.
http://www.myblog.com/blog/content/fruit/apple.html
to
http://www.myblog.com/blog/apple/
In this case word "fruit" and "apple" would be the variable. I would…

Maca
- 1,659
- 3
- 18
- 42
1
vote
4 answers
Extjs 3.x: Can I make a panel or a container movable?
I have an Ext.Container and I need to add to it a user-movable object.
I see elsewhere that an Ext.Window is not supposed to be nested into objects, thus what are my options regarding other movable Ext objects?
Regards, Casper

Chau
- 5,540
- 9
- 65
- 95
1
vote
1 answer
mxHierarchicalLayout ignores isVertexMovable
in JGraphX the most layout algorithms don't move vertices which are not movable. Unfortunately mxHierarchicalLayout ignores, whether a vertex is movable or not. I found out, that this layout alogrithm dosen't use isVertexMovable at all. Where do I…

Andreas
- 130
- 2
- 7
1
vote
1 answer
How do I make a movable transparent form in Visual Basic?
I have created a really simple digital clock, just as practice to help my vb skills. I have basically replicated the timer in bottom right hand corner of your screen, except I can move it around the screen, ONLY when it has a colored background. If…

Daniel
- 51
- 1
- 5
1
vote
1 answer
Make JFXtras Window non moveable and resizeable
Is there a way to make a JFXtras Window (jfxtras.labs.scene.control.window.Window) non-resizable and non-movable?
Thanks!

Lakatos Gyula
- 3,949
- 7
- 35
- 56
1
vote
1 answer
How to install pyInstaller with Portable Python and Movable Python
Portable Python and Movable Python allow programming python without installing anythin, just by unpacking something. :-)
I'd like also to be able to create standalone executable from my scripts, nut I can't tie pyInstaller to these packages, as…

jumpjack
- 841
- 1
- 11
- 17
1
vote
1 answer
draggable div without jquery UI cant drag well
I have this code:
jQuery:
var mouseDown=false;
var lastPositionX;
var lastPositionY;
var newX;
var newY;
var lastPositionLeft;
var lastPositionTop;
var newLeft;
var newTop;
$("#insideMap").on("mousedown",function(){
mouseDown=true;
…

dontHaveName
- 1,899
- 5
- 30
- 54
0
votes
1 answer
Android - Creating a moveable non-rectangular bitmap
My goal right now is create a bitmap that is a non-rectangular shape, that I can also move. I have created a path that I can use as with canvas's clipPath method. Is it possible to move that clipPath around?
Also, am I doing this the best way, or is…

dkniffin
- 1,295
- 16
- 25