ActionScript 2.0 :: Drag And Drop Objects That Snap Into Place?
Dec 8, 2006
I'm new around these parts (I literally signed up about 3 minutes ago!). I'm a high school student who just started using Flash about a month or two ago, so I'm far from advanced, though I have tackled some of the basics. In class I'm working on an art portfolio site but in my spare time I'm making a virtual dress-up doll (you know, the kind where you can pick up the clothes and drop them on the figure to mix and match outfits).Learning how to make drag-and-drop objects was very easy and there are lots of tutorials on it but what I can't figure out is how to get objects to "snap" into place. I want it so that the doll's hairdo's snap into position because they look kind of stupid when placed incorrectly.
View 7 Replies
Similar Posts:
Nov 4, 2003
I am using a drag n drop (snap into place) routine. MC1 is dragged onto mc2. I want a button on mc2 to make mc1 go to its original position and reset itself. As it is mc1 goes to frame 2 where the frame is empty.
View 1 Replies
Mar 27, 2010
I'm developing a G.U.I 'drag & drop' code module to place and replace 3D objects on a 3D object.
View 1 Replies
May 20, 2011
Im trying to do a drag and drop system where the user can drag a movie clip into an area. Although i would like to make it snap to a target instead of just sitting wherever it lands in the area. Problem Two:
The next thing i am trying to do is when the user has a movie clip on a target already, and trys to put another movie clip in that target area, it will replace the one thats in there and go back to its current position. Here is the script of what i have done so far:
[Code]...
View 14 Replies
Apr 13, 2011
so i want to have an object be dragable to 2 certain places and only those places.
[Code].....
now this script lets me drag it to one place but not back again.
View 0 Replies
Jul 27, 2010
I'm new to Flash (sort of - I used it a bit back in 1999-2000, but it's changed a LOT since then). I'm making an educational game for my company that involves dragging labels from a word-bank to their correct position on a diagram. I want the kids to be able to drag any one of the five labels and move them to any one of five marked positions on the diagram. I'm using Flash CS5 with Actionscript 3. I used code snippets, so that each individual label has the following code associated with it:
movieClip_1.addEventListener(MouseEvent.MOUSE_DOWN , fl_ClickToDrag);
function fl_ClickToDrag(event:MouseEvent):void
{[code]..
View 3 Replies
Nov 10, 2009
I have movie clips loading in dynamically using an XML file, and the duplicate movie clip function. I need to be able to select one of those movie clips, drag it to a desired position and have it snap to place. As for right now, I'm using :
[Code]...
View 3 Replies
Mar 30, 2011
Ok, first of all I'm new to all of this as I'm just doing some parttime work. I'm trying to make a drag and drop game where the images (imported and made into movie clips with instance names "peg1 - peg7") are to be dragged onto targets (images, made into movie clips with instance names "targetpeg1-targetpet7").[code]
View 3 Replies
Mar 10, 2011
5 text choices (choice_1 → choice_5)5 text field targets (box_1 → box_5)FUNCTION:1. Drag the choices to the targets.2. When dropped they display in target fields.3. Then snap back.I thought I had it but no cigar ... must be close though.Everything functions properly EXCEPT when I drag a choice and drop it all five choices go to choice_5 (XY) instead of their own origin.HOW DO I SOLVE THIS?PROBLEM CAN BE SEEN HERE
Code:
import flash.net.URLVariables;
import flash.net.URLRequest;
[code].....
View 2 Replies
Sep 7, 2011
i cannot snap the object into its origin. I've made two AS for this one, a DragDrop as and a DragGame as.[code]I just don't know where to put the code that could make the objects snap to its origin.
View 5 Replies
Dec 30, 2005
The app allows the user to drag images from a libray onto a grid and position the elements within the grid. The user can also drag textfields which can be edited and resized.The grid needs to have some sort of snap-to, to make it easier for the user to line up the elements. And then I need to create resize handles around both the editable text fields and the other mc's. Has anyone seen a tutorial or can anyone help me with?
1. Drag and drop with a snap to grid
2. Resize handles for mc's, and inparticular textfields
In the end, I need to be able to track all of the x and y's of the elements on stage and then be able to rebuild their layout when it is loaded in a subsequent session. I'm sure this is going to be difficult.
View 4 Replies
Jan 12, 2012
I have been trying to emulate a drag n drop program from flash and math site dragdroptour snap to location tutorial.It uses a placed variable set at the beginning of the script and updates it with a function used elsewhere. For some reason my version of the code will not update this variable could someone tell me where I've gone wrong? I've done this before in AS and think I used globalvars but I know you cannot do this in AS3 and I'm trying not to go down that route as I know it's bad practise.Its the paper1,2,3 vars that won't update with the release to drop functions.[code]
View 5 Replies
Aug 8, 2010
How do you drag and drop and shape within a certain area, like a large square, for instance?
View 3 Replies
Mar 31, 2012
I have made a flash application and in this flash application I have included a jigsaw puzzle. The application is wrote on one timeline and certain frames are used as different pages within the application.
The problem is once the jigsaw drag and drop are moved the pieces are displayed on all frames instead of just the one jigsaw puzzle frame I created.
How can I make these drag and drop items not be shown on the other frames?[code]...
View 1 Replies
Mar 22, 2011
Once I drag and drop the movie clip symbol it will not release the symbol in sum cases I am sending the code. See code below:
f(subject2);
function f(mc:MovieClip):Void{
mc.onPress =function(){
if(!this.index){
this.index=1;
[Code] .....
View 6 Replies
May 3, 2011
I'm Trying to develop a small game where the user chooses from a range of boxes of the left of screen and can drag 3 of them separatley to 3 holding boxes on ther right. each box can be dragged to any location and the order is not important. Once the 3 holding boxes are all full I want a new button to appear. I completed a tutorial and I've got one box working perfectly but no matter what i try I can't get it working with multiple boxes and locations. Below is a list of the instance names of the movie clips plus my actionscript. I've attached a link to the flash file.
[URL]
INSTANCE NAMES
box 1 = "circle_mc"
box 2 = "circle_mc2"
both the grey boxes are called = "targetCircle"
[Code].....
View 6 Replies
Apr 18, 2011
I have to use the old drag and drop code on my movie clips, but the problem is when I drag the movieclip to the area on my .swf file once i release it, it sticks to the hand mover.I am encloseing the action script I am using could someone or kglad tell me what is missing from the code so that once it is released it will not stick, see code belowcircle.onPress = function(){ startDrag(this);}circle.onRelease = function(){ stopDrag();}
View 3 Replies
Oct 15, 2004
I was wondering if there was anyway to put a line between two or more dragable objects... The only example I can think of is [URL]
View 8 Replies
May 17, 2009
It is possible to drag & drop items between different flash objects?
View 1 Replies
Aug 23, 2011
I am trying to create a drag and drop tutorial by building a chemistry set.
The object of the tutorial is to drag and drop the appropriate instruments onto the target to build the kit.
I have the chemistry stand which had been designated as the target and five instruments which the user can drag and drop though only one will connect to the stand and send the user to the next frame. The instruments that are not correct snap back to their original position.
This process continues over 6 seperate frames.
The whole drag and drop process works fine, the only issue is that when the user picks up the wrong instrument and it snaps back to original position, and the user then picks up the correct instrument and send the user to the next frame, the wrong instrument (only the one that was picked up) is behind all the other new objects.
How do I get the wrong object that was picked up in the previous frame to not be in the new frame?
I have also included the actionscript for both the correct and and incorrect instrument.
Correct Instrument:
package Chem.DragDrop
{
import flash.display.MovieClip;
import flash.events.MouseEvent;
[Code]....
View 0 Replies
Dec 16, 2010
I am doing a lesson on electricity with my class. I have a range of electrical symbols which the kids use to create simple circuits by dragging and dropping on the interactive whiteboard. I only have one of each symbol displayed - when a student drags one away I want the symbol/object to replicate itself at the same point that one was dragged away
View 2 Replies
Apr 13, 2010
i want to be able to drag and drop multiple objects. In this code the Encryption_mc doesnt return to its original position.it returns to the position of the Message_mc.any idea how i can return it to its original position?
var encOffset:Point = new Point();var encOffset1:Point = new Point();
Message_MC.addEventListener(MouseEvent.MOUSE_DOWN,dragPoly);Message_MC.addEventListener(MouseEvent.MOUSE_UP,dropPoly);
[Code]...
View 3 Replies
Nov 27, 2010
i have tried a lot of time to make my project into a success.this is the link to my swf...all objects are accepted when i drop it into the plastic bin
var startX:Number;
var startY:Number;
var counter:Number = 0;
[code]....
View 3 Replies
Nov 27, 2010
i have tried a lot of time to make my project into a success.this is the link to my swf... all objects are accepted when i drop it into the plastic bin.URL..
View 1 Replies
Jan 27, 2011
I am designing a simple classify drag and drop game, but I got several objects and targets, for example square shape object can only go to square shape target, however when I have 2 or more square, then the square2 and square3 can not go to square target!
Code:
var objectoriginalX:Number;
var objectoriginalY:Number;
var counter:Number = 0;
triangle_mc.buttonMode = true;
triangle_mc.addEventListener(MouseEvent.MOUSE_DOWN, pickupObject);
[Code] .....
View 3 Replies
Jan 29, 2011
I'm trying to build a drag and drop quiz where you have a list of countries, and have to drag the correct country into a blank spot in a paragraph to correctly fill out the sentence (see attached). I can get the first country to drag and drop properly. But when I tried to code the second country in the list, I get the following error message: "1021 duplicate function definition" Following is my code:
[Code]...
View 3 Replies
Mar 13, 2009
I have found the following code and modified it.
Code:
// Drag a piece of garbage.
rubbish_mc.onPress = function() {
this.startDrag(false); }; // When the garbage is dragged over the trashcan, make it invisible.
rubbish_mc.onRelease = function() {
this.stopDrag(); // Convert the slash notation to dot notation using eval.
if (eval(this._droptarget) == trash_mc) {
rubbish_mc._visible = false;
change_score(); } };
My question: I have numerous movie clips for the rubbish. Is there a more elegant way of calling them than repeating the above lines with rubbish2_mc, rubbish3_mc etc.
View 2 Replies
Dec 30, 2009
I have a drag and drop project using bitmaps that were masked using fireworks. All bitmaps are PNG (fireworks files) and one object is GIF. All objects were converted to movie clips.
PROBLEM: All movie clips from PNG's can be dragged, but they can't be dropped. However, the GIF movie clip responds to both drag and drop.ActionScript worked when all movie clips had GIF's. Is this problem because they objects were masked or for any other reason?
Note: Objects were masked because their border is very fussy and cropping them doesn't help with the quality of their image.
var startX:Number;
var startY:Number;
var counter:Number = 0;[code]...
View 2 Replies
Feb 9, 2010
I have been trying forever to figure out how to add multiple mc's (images) with different instance names to 1 target only (another image). All of the mc's and the target are placed on the same layer. All I want it to do is snap different images to the same target. I have tried placing the target on a seperate layer but it does not work either.
Here is the code:
ActionScript Code:
cat_mc.addEventListener(MouseEvent.MOUSE_DOWN, pickUp);
cat_mc.addEventListener(MouseEvent.MOUSE_UP, dropIt);
dog_mc.addEventListener(MouseEvent.MOUSE_DOWN, pickUp);
[code]....
View 2 Replies
Aug 21, 2011
I'm creating an application where the user can select an object from a list of objects, and then put it on the main window.
I want to have the list of objects presented like in the web app : [URL]
The user can select a category, then the list of objects of that category is displayed, then he can drag and drop an object to the main window.
How is it possible to do this, having a list of objects?
View 0 Replies