ActionScript 2.0 :: Dragging MC Out Of Scrollpane
Feb 29, 2012I can't seem to drag a movie clip out of my scrollpane. It works fine inside the pane, but it won't show when I drag it out!
View 2 RepliesI can't seem to drag a movie clip out of my scrollpane. It works fine inside the pane, but it won't show when I drag it out!
View 2 RepliesI'm using the Flash ScrollPane component to hold a vertical stack of movieclips. I have implemented functionality to allow the user to drag and drop these movieclips up and down within the vertical stack so they can rearrange the order. My problem occurs when the user drags a movieclip towards the bottom of the scrollpane, I want the content to scroll so the user can drop the dragged movieclip below items which don't fit within the viewiable area of the scrollpane.
I attempted to automatically scroll the pane by incrementing the verticalScrollPosition when the dragged movieclip is towards the bottom of the pane, but this doesn't work as the dragged movieclip is part of the content of the scrollpane and gets moved with the rest of the content. The dragged movieclip moves up with the rest of the content and is no longer under the users cursor:
private function onDragged (e : Event) : void {
var draggedY : Number = ComponentHolder(e.currentTarget).y;
if(draggedY > this.height - 30 && draggedY > this.height - 25){
[code]......
Im trying to make a flash map game.Now i have got items in a Movieclip and want this Movieclip into a scrollpane component but i have got probs cause the dragging dont go outside of the scrollpane.
Here is my Code
container.mc_item.buttonMode = true;
container.mc_item.addEventListener(MouseEvent.MOUSE_DOWN, onDown);
function onDown(event:MouseEvent):void {
[Code].....
I need t draw a rectangle on a movie clip(board_mc) by dragging mouse over it......It works fine till here but I want to put the movie clip(board_mc) in scrollpane.
but after doing so the code doesnot work....can u plz guide me how to make this code work after placing the movie clip (board_mc) in scrollpane(say board_scp).
[Code]...
I have a MovieClip inside a ScrollPane. Inside this MovieClip i have buttons. What i want to know is: how to click a button inside a Movie Clip, that is inside a scrollpane, and make it load a swf outside the scrollpane?
View 2 Repliesimport fl.containers.ScrollPane;
recentMsg_bt.addEventListener (MouseEvent.CLICK,resentMsgClick);
var sp:ScrollPane = new ScrollPane();[code].......
Everything works just fine, except for the last msg gets only half displayed as if the scrollpane wouldn't scroll to the end.
I haven't been able to find a non-hack way to use Drag and Drop with the AS3 ScrollPane component.
Here's what I'm doing:
I create a container mc, which I then add a bunch of children to. The children are what I want to drag.
However, dragging is constrained to the boundaries of the ScrollPane. This seems to me like a limitation of the ScrollPane component.
I know it can be worked around with attaching a dupe mc to the cursor pos, then manipulating other mcs on mouse up, but..
I want to if I can set a variable with the mc's name that the mc I'm dragging around hits.I did this before with eval() in as2 but there is not such a thing anymore. [code]...
View 4 RepliesI am looking for a way to "drag" several movieclips at a time and thereby create a panning effect on the entire stage. The movieclips are supposed to follow the cursor (a mask) on the X axis.
View 9 RepliesI have the following code:
Code:
lights1.addEventListener(MouseEvent.MOUSE_DOWN, pickUp);
lights1.addEventListener(MouseEvent.MOUSE_UP, dropIt);
lights1.buttonMode = true;
[code]...
I can start dragging the symbol no problem but no amount of clicking will get it to stop. Am I doing something wrong? Using Flash CS4 with ActionScript 3.
so I am trying to drag around some images in a canvas. I am adding eventlisteners to the components and calling startDrag() and stopDrag() to pick them up and stuff:
component.addEventListener(MouseEvent.MOUSE_DOWN, component.startDrag)
The problem is that it is selecting the image at its (0,0) location and not where I initially click on it. So there's a sudden "jump" when I click on the image. It is not smooth.
I noticed that startDrag() has two default parameters, one of them is lockCenter and it is default to false. Maybe do I set it equal to true somehow? (I don't know how to pass arguments to my second parameter in addeventlistener)
Another question: if I want to add more conditions to it, like make a new function that uses component.startDrag(), how do I pass the component to this function while adding event listener to it at the same time? for example: I want to do:
component.addEventListener(MouseEvent.MOUSE_DOWN, some_other_function);
where some_other_function uses component.startDrag();
I have a flash project with three non overlapping panels (visual spaces) each of which contains different movie-clips. Each movie-clip in a particular panel is the child of that panel.Now, I want to drag one of the movie-clips from one panel to another (remove it as a child from the first panel and add it to the other) without a jitter and proper drag.What is the appropriate way to handle the drag architecturally
View 1 Repliesi am developing a flash game where i need to drag movie clips but i have to allow dragging only two direction x and y.
View 1 RepliesThe code for dragging an object with the mouse is known:
mc.onPress=function(){this.startDrag(false);};
mc.onMouseUp=stopDrag;
I tried to drag two objects at a time using
mc.onPress=function(){this.startDrag(false);mc2.st artDrag(false);};
mc.onMouseUp=function(){this.stopDrag();mc2.stopDr ag();}
But this seems to drag only the object, corresponding to the last parameter in the function
How shall I drag more than one object at a time?
I've got a MovieClip that I want to drag around the stage, but only whilst the mouse button is held.
I've got this code:
[Code]...
I'm messing around with a text box scroller. I want to be able to click on the scroller bar and drag it up and down accordingly.
Here is the code I am using:
on (press) {
startDrag ("_root.scroller", false, 578, 35, 578, 163);
} on (release) {
stopDrag ();
}
How do I drag more the 1 movieClip using this
on (press) {
startDrag(screen);
}
on (release) {
stopDrag();
}
I have a movieclip in the centre of a cross and want to make it move only along the lines of that cross. Is this possible with startDrag or do I need more complicated method? To illustrate: If you've moved left or right, you can't move up or down and vice versa.
View 2 RepliesI have need to simultaneously move a slider (called "shadeGrabber") movie clip and a mask. I'd like to do this by dragging the slider and seeing the mask move with it.
The example movie clip on the left (called "PICTURE_WIPE") is what I'm going for, but interactive instead. I'm working in the movie clip on the right (called "PICTURE_WIPE copy 2")
Here's my code, for quick reference (found on the "AS" in the "PICTURE_WIPE copy 2" movie clip:
[Code]....
How do I drag more the 1 movieClip using this
on (press) {
startDrag(screen);
}
[Code]....
I'm trying to get objects to drag and drop. Instead of dragging just the circle, it drags the entire screen. I can get it to work if I use "this.circle.startDrag()" but I want to be able to use the startMove and stopMove functions on different children, text boxes and other objects generically. Here's the code:
circle.addEventListener(MouseEvent.MOUSE_DOWN, startMove);
circle.addEventListener(MouseEvent.MOUSE_UP, stopMove);
function startMove(event:MouseEvent):void {
[code].....
Being adventurous I've got (all built in AS1) a masked area that you can view an image in. I'm trying to make it so you can zoom it in and drag it around, within the masked area, but the dragging locks it so that you can't drag it to the point where it leaves the edge of the masked area - if you follow. So when you're zoomed in, the iamge is never allowed to be dragged off so far that it's not filling the masked area. I've tried all sorts of code and the following code seemed to work well
Code:
// imageMC = the clip being scaled/repositioned/dragged
limitLeft = 0-Math.round(imageMC._width-maskWidth);
limitUp = 0-Math.round(imageMC._height-maskHeight);
limitRight = 0;
limitDown = 0;
imageMC.startDrag(false,limitLeft,limitUp,limitRight,limitDown);
But since the border size around the image is adjustable (it could be 2, it could be 20) and that eats into the area used to show the image (eg image is offset by imgBorderSize and shrunk by imgBorderSize*2) I tried to factor that into the formulas because once I turned the borders up the above formulas wasn't working right anymore
Code:
// imageMC = the clip being scaled/repositioned/dragged
limitLeft = 0-Math.round(imageMC._width-maskWidth)-(imgBorderSize*2);
limitUp = 0-Math.round(imageMC._height-maskHeight)-(imgBorderSize*2);
[code]....
I also tried to make it so when you zoom in, it zoomed in on the center of the area you can see through the mask, not on the top left - so repositioning is occuring alongside the scaling for the zoom to try and acheive that. Nothing clever, just :
Code:
// ZoomCalc range = 0-100;
// imageMC = the clip being scaled/repositioned/dragged
imageMC._xscale = 100+(2*ZoomCalc); // 100% - 300%
[code]....
When it zooms out however it'd be nice if it didn't snap back to center via the above code, eg if yu're zoomed into bottom left it would stay viewing bottom left as it zoomed out - yeah?If anyone has ANY input to this I'd greatfuly welcome it :/ If I manage to get it working then I have to figure out what my layer above all these layers with clickable buttons don't work as soon as I implemented the dragging of the image layer Is there no way to have buttons on something that is being dragged? ((
I basically am suppose to make "scarf" drag over to a movie clip named "winter_mc" and when it is on it, it is suppose to disappear but it's not disappearing. Here is my code used in the scarf:
Code:
on (press) {
startDrag(scarf, true);
}
[code]....
I've been searching various sites and forums for a solution to this, but have so far found none, so I was hoping to ask for some advice on the subject.Basically I have a movieclip of a photoframe, and I'd like it so when the user clicks the edge of the frame, they can drag it around, while clicking the photo inside the frame will open a new window and show the photo in full view.Originally I thought I could accomplish this simply by using:(Note: Framemc is the main movieclip, with another mc called "Photo" inside which is the picture)[code]But this leads to an odd problem: When dragging the frame it works fine, but the user can also drag the "photomc" around too (like, the frame stays in place and doesnt move with it), thus removing it from the frame.Is there a way to tell the code to move only certain parts of the mc and not others?
View 1 Repliesthis math isn't working well. I'm using it for a rotated drag and drop (of a tone arm on a vinyl, a kind of abstract turntable simulation). Right now it just moves a bit in the middle of the vinyl (values between 21 and 36, is this degree or what unit is this?), but it should move between the two edges. The problem is that I don't know enough about trigonometry functions. Therefore I can't optimize the math for envisaged behaviour. Does anybody have an idea/tip how I can get a bit more control on the math and its effect? (maybe with more trace functions)
[Code]...
Is it possible to handle keystrokes WHILE dragging? I found this to be impossible, because hitting a key always fires an "onRelease" or "onReleaseOutside" event on the dragged movieclip when releasing the key - intterupting the drag operation. What I want to do is something like this: Drag and Drop a Movieclip and while dragging it I want to be able to flip it with a keystroke.
[Code]...
I'm trying to achieve a fairly simple effect--a dragging a MC with inertia.
Specifically, I'm trying to get this to happen:
1. When you click with the mouse on the MC (not the entire stage), the MC gets dragged along.
2. When you let go of the mouse button, the MC keeps going with inertia (slowly comes to a stop) that depends on the speed with which the MC was dragged and in the same direction. The MC shouldn't change directions if the unpressed mouse is moved around.
3. The dragging is constricted to the X axis.
I'm trying to enable the user to drag a movieclip vertically. I've coded something to be dragged horizontally, and thought it would be a simple matter of swapping some of the info around.
Here is my current code:
stop();
var leftY1:int = 120;
var rightY1:int = 400;
frontbar1_mc.mask = mask1_mc.rec1_mc;
[code]....
Now when the movieclip is clicked, it completely changes position and will only be dragged horizontally. Then when its clicked again, it will jump vertically by how much I previously dragged it horizontally.
I've been doing a game that requires to drag some pictures into containers... that's all great.... but at the same time, I have to be able to obtain info from them (a pop up) when i click them.I've tried using CLICK and MOUSE_DOWN on the EventListeners, but everytime I drag the object, when I release it, the pop up shows.
View 5 RepliesI have a number of tabs which can be dragged around the screen.. I've constrained the movement to a rectangle using startDrag(false, rectangleName) but when I ROLL_OUT or MOUSE_UP outside of the constrain rectangle the tab does not register it, thus defining itself a new startX and startY once clcked on a second time..
private function tabOver(event:MouseEvent):void { event.currentTarget.scaleX = 1.05; event.currentTarget.scaleY = 1.05;}private function tabClick(event:MouseEvent):void { event.currentTarget.scaleX = 1.05;
[code].....