ActionScript 3.0 :: Why Does Movieclip Center On Click (using The Drag Method)

Aug 19, 2011

I have a movieclip, that is draggable (horizontally), i have this code (helped achieved by Kglad!):It has a nice effect, but when i click to drag the movieclip jums to its registration point.
 
var completeTween:Boolean;
var finalMouseY:int;
var startMouseY:int;
mc.addEventListener(MouseEvent.MOUSE_DOWN, onDown1);

[code]....

View 19 Replies


Similar Posts:


ActionScript 3.0 :: Press And Drag Movieclip To Rotate It Around It's Center

Oct 23, 2010

I have a round movieclip ( like a ring or clock ) and i want to press and drag it to rotate it around it's center ( AS3 ). I tried hundreds of ways but none of them works perfectly. I think i miss something in trigonometry and flash's rotation concept.

View 8 Replies

ActionScript 1/2 :: Center The Image When Click The Movieclip

Oct 30, 2009

i am new with flash, and i had swf which contains big image it will resize to best fit. when i double click the image the clicked position come to center of the stage. i achived little bit, it zooming but image not come to center position. i have attached the fla file in it i have used this script to zoom on double click and bolded 2 lines are to position the image.

[Code]...

View 16 Replies

ActionScript 3.0 :: Drag And Rotate MovieClip On Click?

Nov 5, 2009

Basically what I am trying to do is have my movie clip rotate/pivot when I press on it, same as the arm on the record player of this [URL]. At the moment, the movie clip rotates according to mouse follow, but I would like to click, drag and rotate so it pivots from one point.

Code:
const TO_DEGREE:Number = 180/Math.PI;
addEventListener(Event.ENTER_FRAME, rotateObject);
var maxRotSpeed:Number = 5;
var rotScale:Number = 0.2;
function rotateObject(e:Event):void {
[Code] .....

View 0 Replies

ActionScript 3.0 :: Drag Drop And Click Events On A Single Movieclip?

Jun 11, 2010

I have one movieclip inside which I created few movieclips...I applied drag drop functionality to main movieclip with which all movieclips inside of it also get dragged along with it..and I want inside movieclips to act as buttons meaning on clicking perticular movieclip it should perform perticular event assigned to it... How to make movieclips into buttons and the main movieclip containing these buttons with drag drop functionality?

View 2 Replies

ActionScript 2.0 :: MovieClip - Control Resize With Mouse Or Single Click / Drag

Jan 20, 2010

I'm pretty new to Flash and seem to be struggling with variable scope, events and where to put code within movieclips/main area etc. What I'm trying to do is produce a Flash movie that will allow the user to click on a tool from a selection, i.e. a circle, then click on another part of the screen to place the centre of the circle, with a second click to set the radius of the circle (an alternative would be a single click and drag to place the circle and drag it out to the desired radius.) Once the mouse if clicked a 2nd time, or the drag operation is completed, the circle will stay at the selected radius.

The code I'm using so far to test out the idea is below:
_root.onEnterFrame=function(){
_root["item1"].onMouseMove=function(){
d = Math.sqrt(Math.abs(_xmouse-this._x)*Math.abs(_xmouse-this._x)+Math.abs(_ymouse-this._y)*Math.abs(_ymouse-this._y));
if(d<370){
this._width = d*2;
this._height = d*2;
}else{
this._width = 87;
this._height = 87;
}}}

This uses a simple circle movieclip, and the above code is placed in Frame 1 of the background as opposed to the movieclip itself. It resizes the circle movieclip ok, but I want to be able to control the resize with the mouse or with a single click/drag.

View 10 Replies

ActionScript 3.0 :: Drag And Drop - Click On The Image ,one Can Hold Down The Mouse And Drag A Copy?

Nov 13, 2010

I want to have an image and when I click on the image ,one can hold down the mouse and drag a copy to where ever on the stage and when one lets go, one can drag another and another with each copy still being able to be dragged after released.this is what i have but its pretty simple and doesn't work....

stage.addEventListener(MouseEvent.MOUSE_DOWN,makeA Box);
var i:Number = 1; //i will be the total number of boxes
var newBox:myMC = new myMC();[code]....

View 3 Replies

ActionScript 2.0 :: When Click The Letter Movieclip It Does Create The Duplicate As It Should And It Starts To Drag The Duplicate Mc

Mar 20, 2010

My problem is that when I click the letter movieclip it does create the duplicate as it should and it starts to drag the duplicate mc. However, when I release the clip it doesn't stop dragging? I realized that if I put onMouseUP event instead of onRelease it actually does stop dragging when I release the mouse. I would, however not like to use the onMouseUP event if possible.

[Code]...

View 2 Replies

ActionScript 3.0 :: Scale From Center After Drag?

May 21, 2010

I have an image inside a movie clip that a user can scale from its center using the slider....works great.However the use can also drag the movie clip.After the movie clip is dragged to a new location it and then scaled using the slider it jumps back to the center of the stage and then scales.I have tried modifying the x y of the movie clip but then the scale is no longer from the movie clip's center.

var clipNativeX = holder_mc.x;
var clipNativeY = holder_mc.y;
function scaleClip(val:int):void[code]......

View 2 Replies

ActionScript 3.0 :: Scale From Object Center After Drag?

May 24, 2010

I have had some help but still not understanding this.

How can I scale an object from center after it is dragged by the user?

Currently I have this:
function onSliderChange(e:SliderEvent):void
{
scaleClip(slider.value);
}

[Code]...

With this code the movieclip jumps back to the center of the stage each time I call the scaleClip() (move the slider). I would like the object to scale from it's own center regardless of where it is on the stage.

View 2 Replies

ActionScript 2.0 :: Find Center Of The Visible Area After Drag?

Jul 19, 2009

I have a AS2 movie clip that has a drag navigation. The movie clip is bigger then the visible area. How can I find the center xy of the current visible area when I stop the drag?

View 2 Replies

ActionScript 2.0 :: Drag And Drop Around A Fixed Center Axis?

Apr 19, 2006

I nedd to build a "See if you have the right weight" wheel in Flash. It have to be a small wheel over a bigger one. The top one have to be drag and drop like it was pined to the other one, so it rotates around the center axis (when click and drag with the mouse over), allowing us to match the scales in the wheels as we like.

I've found a lot of tuturials about drag and drop objects in Flash, but freely, not around a fixed center axis.

View 1 Replies

ActionScript 2.0 :: Motion Method - Take A Circle And Place It In The Center Of A Square Scene

Aug 15, 2003

-Take a circle and place it in the center of a square scene.

-Make a rectangle and snap its left edge to the circle's center.

-Make another rectangle and snap its left edge to the right edge of the first rectangle.

How would you make it so movement doesn't happen at the registration point but on the whole arm. Say i ran a rotation script on the upper arm with +=1 and the lower arm with +=2. How would you place the parts, what format would they be converted to and what would the script format be. Multiple methods would be welcome of course!

View 1 Replies

ActionScript 3.0 :: Make Drag And Drop And Catch Page Center To Stage?

Feb 13, 2011

want to make drag and drop and catch page center to stage

View 2 Replies

Actionscript 3 :: HitTestObject / StopDrag Stops Drag On Two Movieclips Even Though Function States One Movieclip To Stop Drag

Apr 27, 2011

I have a function that states when movieclip1 is dragged and hits a line then it stops the drag, however it seems to stop the entire drag function in the swf on the other movieclips even though they arent called in the function.[code]

View 1 Replies

ActionScript 2.0 :: Center Movie Can Click / HitTest?

Jun 1, 2006

is there such AS where you can click/hitTest etc. and then it will take you to the next frame but with the whole frame centered?

View 4 Replies

ActionScript 3.0 :: Center Image/movie Clip On Click?

Oct 23, 2009

i am trying to center the image once clicked, i have multiple images(4) and want them to open dead center on the stage i would also like to close the opened image when the next one opens and return it to original position!

what i have got so far:-
 
stop();port1_mc.doubleClickEnabled=true;
var centerX:uint = stage.stageWidth / 2;var centerY:uint = stage.stageHeight / 2;
port1_mc.addEventListener(MouseEvent.DOUBLE_CLICK, go);
function go(evt:MouseEvent):void{
//opens image to the stage  gotoAndPlay (2);}

View 5 Replies

Actionscript 3 :: Set Zoom On Mouse Click Target To Center Of Stage?

Aug 24, 2011

I'm having toruble with an image that I zoom into in flash. I got everything to work, only I want the clicked X and Y coordinats to center to the stage. ( so that the area clicked on always zooms in and position the area clicked to the middle of the stage) the image is a movieclip and it zooms with a tween, but i tried everything but the image wont center the stage..

does anyone have a clue for wich actionscript 3 code I can use to do this?

my code is:

const TWEEN_IN:String = "tweenIn";
const TWEEN_OUT:String = "tweenOut";
var tweenDirection:String;

[Code]....

View 1 Replies

ActionScript 2.0 :: Image Pan - Want To Center/scale Relative To Position At Click?

Aug 19, 2006

I've recently taken Krilnon's tutorial on interactive image panning, and have a need for more complexity. My image to be panned (relative to user's mouse movement) has several 'hot spot' buttons placed within. Each hot spot, when clicked, is to smoothly zoom and shift within the mask, with pertinent info displayed next to each, once zoom and shift is complete. almost like I'm making a motion tween, where the final position is known, but the start position is wherever the BG image is when the user clicks the nested button. I need to determine the x-position at the moment of click of the button (different for each button), and then, I think, use a simple-math "stagger-step" method of moving and scaling, until I've reached my final dest. here's the link to the tutorial I originally referenced:If anyone knows of a tutorial or example out there, I'd love directions to it(them). or,

View 1 Replies

ActionScript 3.0 :: Better Start And Stop Drag Method?

Oct 21, 2011

Drag and Drop: Could someone point me to a script that will handle startDrag and stopDrag better than the stock methods? I once saw something that was sooo smooth/responsive and I would love to have that look. I believe it used updateAfterEvent but did not use start or stop drag at all.

View 0 Replies

ActionScript 3.0 :: Drag & Drop, Call A Method If List Changes?

Aug 8, 2011

I have two spark lists,backed up by Array Collections, both of which accept drag & drop either to move objects between them or to reorder within the lists. I have a method which is called on drop which resets some properties of the object to 0, this works as expected...
 
protected function list_dragDropHandler(event:DragEvent):void
{
if(event.action != DragManager.NONE)
{

[Code]..... 
 
What I would like to do is only call this method only when the objects are moved to another list, currently it is called when I reorder within the same list too

View 2 Replies

CS3 Click Zoom Drag Pan?

Apr 7, 2010

am hoping someone here might have some source in the little bag o' trix that will put me on the right road to achieving the following. i am trying to work out the best way of creating a movie that has buttons that when clicked will zoom into and centre a certain area of a larger movieclip?

and then a way of dragging the zoomed into movieclip around the stage area? or panning using x/y positions of the mouse. (and without asking for the moon on a stick - if the user clicks on a empty part of the zoomed mc - it zooms back out to it's original size position?)

any have any fla files or know of any good tut's or threads that can will give me a leg up to get it working? fingers crossed has done this before or know a good place to start?

View 2 Replies

ActionScript 3.0 :: Drag And Drop Game - Splice Method Doesn't Work On Array

Jul 21, 2011

I have a drag and drop game. You listen to a sound for exampl "bread" You proceed to drag that mc to a box. If it is the right object I want to remove that mc and splice the array so it doesn't choose that object anymore. However I have notices two things.

When I splice(0) a specific element - then nothing works. When I splice the cuurent indexed element ie: the last element to get right - it doesn't actually remove it from the array. I have highlighted the key code parts.

[Code]....

View 3 Replies

As3 - Make Click And Drag Two Different Things?

Oct 7, 2010

I'd love to know how to make click and drag two different things. As it believes the drag function is also a click. Also I'd love to know how to set it so that ALL movieclips stop when they reach say -10px from each side?

View 2 Replies

ActionScript 3.0 :: Click On Stage And Drag?

Aug 24, 2009

I have a movieClip on stage.I wanted to make it so that you can click on stage and drag and if you drag up and right value increases and if you drag down and right value decreases.So that I can resize the movieclip (scaleX & scaleY) based on that dragging.

View 2 Replies

Actionscript 3.0 :: Click And Drag Those Boxes Above Or Below Each Other?

Feb 11, 2011

I have the following code, which works beautifully when all the boxes are the same height. The basic point is that I have three boxes on the stage, 10 pixels apart. If you click and drag those boxes above or below each other, they reorganize themselves. Code: Select all// based off Dynamic Stacking AS3 @ [URL]

[Code]....

View 1 Replies

ActionScript 2.0 :: Double Click And Drag?

Apr 1, 2006

I have an object that I drag on the page. The same object I would like to double click to play sound file and load movie.

View 1 Replies

ActionScript 2.0 :: Different Actions For Click And Drag?

Jun 16, 2009

How can I set different actions for click and drag or just click? For example I have a map with clickable objects. When clicked on object some action happens, but when a user clicks and drags the panning starts not the click action of object.

View 7 Replies

ActionScript 3.0 :: Differentiate Between A Click And A Drag?

Jun 2, 2010

I have created the attached FLA file as a horizontal draggable menu in AS3.At the moment i am having a couple of issues with it.

1) I am using MouseEvent.MOUSE_DOWN and MouseEvent.MOUSE_UP eventlisteners to control the dragging.

The problem is that I click down the mouse button on the movieclip, it will start dragging. All good. However if I then, after dragging it about, let go of the button it registers a click. Obviously i don't want it to do that, I understand that it is registering a click because a click effectively consists of a MOUSE_DOWN and MOUSE_UP. Is it something i am doing wrong with the dragging? I am not sure how to differentiate between a click and a drag?

2) I would quite like the stopDrag to have an easeout on it, instead of stopping dead. (Take a look at newcruelty.com for the effect i am after) is this possible, perhaps using Tweenlite or Tweenmax? I have attached the CS4 FLA file (it uses tweenlite)

View 7 Replies

ActionScript 2.0 :: CS3 Movieclip Button - Click To Play, Click To Stop?

Jun 21, 2010

I am building a flash interface and I would like a menu where it is hidden to begin with (just a tab). You click the tab to expand it, and click again to collapse it. I've made a movieclip with animation of the menu opening up and closing, but I can't seem to work out how I'd go about making the movieclip open and close properly.

View 4 Replies







Copyrights 2005-15 www.BigResource.com, All rights reserved