ActionScript 3.0 :: StartDrag() Not Working When Loaded Into A Bigger Movieclip?

Oct 8, 2010

I am working on a simple drag and drop game which works fine by itself.

But the problem is that when this slide is loaded into a bigger gameloader swf. The x axis does not update itself.

Thus when the draggerable gets drag, it moves in relative to gameloader's stage size instead of its own stage size..

Is there any ways that I can lock coordinates of the X and Y axis to that of the game instead of the gameloader?

View 0 Replies


Similar Posts:


ActionScript 3.0 :: Start Drag Not Working Right / When Loaded Into A Bigger Swf

Oct 8, 2010

Im a newbie in AS3 and have encountered a problem with startDrag().I am working on a simple drag and drop game which works fine by itself.But the problem is that when this slide is loaded into a bigger gameloader swf. The x axis does not update itself. Thus when the draggerable gets drag, it moves in relative to gameloader's stage size instead of its own stage size.I have tried googling for the solution but cant seems to find any.Is there any ways that I can lock coordinates of the X and Y axis to that of the game instead of the gameloader?

View 5 Replies

ActionScript 3.0 :: StartDrag Not Working Within A Loaded Swf?

Oct 14, 2009

I'm trying to work with a movie clip that I am loading into my main SWF. When run alone the draggable rail works fine but once loaded into the actual main SWF it won't drag. I put an on EnterFrame on it so that when I click it reads out some data and that still works within the main swf. Is there some sort of restriction on what loaded content can do?

import flash.display.MovieClip;import flash.events.MouseEvent;
var upper_left = rail.x;var upper_top = rail.y;var travel = rail.height-handle.height;

[Code].....

View 12 Replies

ActionScript 3.0 :: Loaded External MP3 Player, StartDrag Not Working

Oct 23, 2010

all of the other buttons on an external movie are workign but the volume slider is not...

when i load the external file (the mp3 player) it works fine.

Code:
/* volumeStartDragging(event:MouseEvent):void
* Returns a mathematical value that we can use to adjust the volume
* the value is the relation of the volume ball to the line

[Code].....

View 1 Replies

Actionscript 3 :: Flash - StartDrag() Within StartDrag() On Child MovieClip

May 19, 2011

as you can see, I have a container MC which I have added to the stage. I set its drag constraints using a Rectangle(). I then add the 'cat' child movieclip to the container, and I want this to be dragable too. However, as soon as I click on my cat when testing the MC. It shoots to point x=0 y=0 on the stage and doesn't move.

The container MC can be moved without any trouble.

If I remove the rectangle bounds from the containers startdrag() function. both MC's can be dragged without any issue.

//panning ability
my_x = 800 - myImage.width;
my_y = 480 - myImage.height;

[Code]....

View 3 Replies

ActionScript 3.0 :: StartDrag In 3D Not Working?

Apr 1, 2010

The Language Reference states:
 
"Three-dimensional display objects follow the mouse and Sprite.startDrag() moves the object within the three-dimensional plane defined by the display object. Or, if the  display object is a two-dimensional object and the child of a three-dimensional object, the two-dimensional  object moves within the three dimensional plane defined by the  three-dimensional parent object."
 
However, this does not seem to be the case.  I have a 2D object which is the child of a 3D object, but startDrag will not work on the child.  If I remove any tweens in code from the parent's rotationY then startDrag will work.    If I have any reference to rotationY it will not work, even if it is set to 0.

[Code]...

View 4 Replies

ActionScript 3.0 :: Can't Get StartDrag Working

May 20, 2009

I have a MovieClip with other MovieClips inside of it. On each of the MovieClips inside, I have added a MOUSE_DOWN event and in the handler, I call e.target.startDrag(false, null);

But it doesnt seem to work :/

I have traced out the target name. I have tried current target and traced out it's name. THey both trace correctly. The target is being reached and it is the corect target. But the startDrag function doesnt make the MovieClip draggable.

View 6 Replies

ActionScript 3.0 :: StartDrag() Not Working For Child?

Jan 20, 2011

I have a movie clip that I want to drag, but it gives odd behavior. If I add the MC using:addchild(MC)it works fine. The problem occurs when I try to add it as a child of another MC:base.addchild(MC)When I do it like this the drag does not work (nothing happens). If I drag the parent, the child drags with it, but attempting to drag the child on its own does not work.  The function used is:

function pickUp(event:MouseEvent):void {
if (drawMode == NONE) {
event.target.startDrag();

[code]........

View 11 Replies

ActionScript 3.0 :: StartDrag Within A Loaded SWF

Jun 16, 2011

I have an index file in which I load my external .swf. One of the external .swf has a drag and drop quiz. And as you can guess, the startDrag doesn't work! In fact, when I publish within Flash it works just fine, but when played within the index file, it stops working!

For your information : all my files are in AS3.
 
So here's a bit of my code.

var interbouton : Number = 10;
//I have 7 items that I can dragfor(var i:Number=0; i<7;i++){ var dragBtn :MovieClip = new Drag();

[Code]....

View 2 Replies

ActionScript 3.0 :: Enterframe StartDrag Not Working With RotationX?

Jun 10, 2009

I created a full flash template website loading external swf's.Lately, I managed to add a fake3D rotation with AS3 and CS4 to this global template with enterFrame.Problem : some of my external swf use a vertical scroller also using an enterframe function based on a startDrag bar with the x / y position of the mouse, the scroller dont work anymore.

View 8 Replies

ActionScript 2.0 :: Mp3 Volume Controls Not Working In Loaded Movieclip?

Oct 15, 2010

I've created an Mp3 player with dynamic sound controls. Everything works fine when tested in the swf, but when I load the mp3.swf into a separate movieclip in another swf, the volume control does not work.

I've tried setting the lockroot to true and it still does not work.

Here's the code:

slider_mc.onMouseMove = function() {
myPoint = new Object();
myPoint.x = this._x;
myPoint.y = this._y;

[Code].....

View 9 Replies

ActionScript 3.0 :: MovieClip Height Bigger Than It Should Be?

May 4, 2011

I have  radioButton controls that are being added to an otherwise empty movieClip. The height of the radioButtons are about 22, and the associated textFields (which I am using so I have finer control) are about 25 high. Once the two buttons are added the movieClip reports its height as 130, which is kind of crazy. I know that textFields have default heights, but tracing the height out of the textFields associated with the rb controls only returns 25, as I said above.  Here's some code.
 
var box:MovieClip=new MovieClip();
var startX:int=0;
var startY:int=0;

[Code].....

View 7 Replies

Flash :: Canvas Moved On StartDrag() Without Calling Set X / Y Or Move() - How Does StartDrag() Exactly Work In As3 / Flex

Feb 11, 2011

i have an .as class that extends mx.containers.Canvas (it's a draggable border of a resizable component), it becomes draggable on MOUSE_DOWN and stops being draggable on MOUSE_UP, MOUSE_OUT and ROLL_OUT. before calling startDrag() i create a Rectangle to define the drag area, i also have a _dragging: Boolean variable to control if it's draggable at the moment. the problem is that when i click this border it jumps to a negative coordinate without calling startDrag or switching _dragging to true.

i've overriden get x, set x, get y, set y and move() methods in order to solve it but the only thing i got was the fact that position changes without calling coords setters or move(), but at the moment it's changed a getter is called and returns new (negative) value so my question is what happens on startDrag() and how to filter unwanted incoming coords values?

View 3 Replies

ActionScript 2.0 :: Get A Movieclip Bigger When Click A Button?

Nov 29, 2004

What AS should I use to get a movieclip bigger when I click a Buttom? I want the object to grow at a size "x" and then stop....

View 7 Replies

ActionScript 3.0 :: Button Makes Movieclip Bigger When It Shouldn't?

Aug 28, 2009

If I add the button component to my movieclip it makes it bigger, as if there's some sort of invisible padding or margin around it. Making a new fla, dragging the button component, and setting the below code as the document class produces a trace of w: 320, h:250 when run.Removing the mc.addChild(btn) line gives me a trace of w: 320 h: 240.The button isn't even close to the edge of the movieclip, so why is it expanding the movieclip's height by 10 pixels? I've been reading the documentation for the last few hours, but I can't find some hidden margin style or anything of the like I've been missing. The FLA & .as file are available here http[url].....

ActionScript Code:
package
{
import flash.display.*;[code].....

View 1 Replies

ActionScript 3.0 :: Use StartDrag With A Movieclip That Contains 3D Cube?

Dec 20, 2009

I'm trying to use startDrag with a movie clip that contains a 3D cube (comprised of 3D planes). It only moves the face of the cube, but not the other sides. Can one use startDrag in 3D space, or is there another method?

View 2 Replies

ActionScript 1/2 :: Use The StartDrag Function On A Movieclip On Movement?

Aug 10, 2011

A friend need's to create a flash banner like this site. i write this action to a movie clip, but the clip have to be on movement.

[Code]...

Is there a way to use the startDrag function on a movieclip on movement?

View 1 Replies

ActionScript 3.0 :: StartDrag - Displaying Another MovieClip As Tooltip

Jan 11, 2010

I'm trying to add a tooltip of sorts to a mc. the mc has the buttonMode set to true and when I rollover it I want it to display another movie clip as a tooltip. I've worked out how to do this with startDrag. The problem is that unless i remove the event listener for rollover the mouse flickers and won't work properly. I fixed this by removing the event listener in the same function, which works great. The problem is that I have to add and event listener for rollout, but the flickering starts again when its added.

Here's the code I have so far:
clapperHit_mc.addEventListener(MouseEvent.ROLL_OVER, videoCursor);
clapperHit_mc.buttonMode = true;
function videoCursor(event:MouseEvent):void {
videoCursor_mc.startDrag(true);
videoCursor_mc.visible = true;
videoCursor_mc.gotoAndPlay(1);

View 2 Replies

ActionScript 2.0 :: Use The StartDrag-function To Drag A Movieclip

Mar 11, 2004

i want to use the simple startDrag-function to drag a movieclip. when the option to lock the movieclip is set to false, there's no problem but when i set this option to true, so the movieclip should follow the mouse locked to the center, my movieclip just disappears. i used this code:

[Code]...

View 5 Replies

ActionScript 3.0 :: Loaded Swfs Not Working When Loaded Through Xml?

Jun 10, 2010

I have a "photo" gallery that loads numerous SWFs through xml, one by one on click. All works fine. All my SWF work fine stand alone. But when I load them into the player, many swf dont work properly.in example, I have textinput textfields in many of the swfs, which work fine on their own but not when loaded into the player. Then I have a word search game that works fine when alone, not when in player. I can see there is something as my mouse cursor changes into the "button finger", but nothing visual.

All drag and drop assigments work fine etc. I have no idea whats up. I have receantly switched to as3 and in as2 there was _lockroot declaration that solved similar problems, but now in as3 (where it supposedly should be automatic) it doesnt work. As it seems that it cannot recognise it own stage value, or selection_focus when loadedinside another swf through xml.Using cs4, as3.

View 4 Replies

ActionScript 2.0 :: Keep Loaded Movieclip Over Other Loaded Movieclips?

Jul 5, 2007

I'm loading an external swf that is a button to close other loaded movies. I want it to stay above all the other movies at all times so that the user has a way to close them and go back to the main stage. There are buttons on the stage that load external movies and the close button movie loads automatically. All of the movies load in fine but once I load in a movie from a dynamically created movieclip button on the stage, it covers up the close button movie.The following code is where I dynamically load movies from the dynamic movieclip buttons and then after that is where I load in the external swf for the close button.

//Dynamically assign external movies to load from
//the dynamic buttons
for (j=1; j<holderArray.length; j++) {

[code]...

View 1 Replies

Flash :: Access Dynamically Loaded Movieclip (stage > Scrollpane > Myloader > Movieclip)?

Oct 16, 2011

what I'm trying to do is accessingsnapText = scrollPane.source.textSnapshot;from an external swf. I've tried:

trace("-->: "+scrollPane.source.textSnapshot.getText(0, 1000));
trace("-->: "+myLoader.content.textSnapshot.getText(0, 1000));
trace("-->: "+mc.textSnapshot.getText(0, 1000));

[code].....

View 3 Replies

ActionScript 2.0 :: Loading A Movieclip Into The Main Movie From A Previously Loaded Movieclip

May 26, 2010

Im making a movie with a menu that loads movie clips according to which menu is selected simple enough. However, the newly loaded movie clip also needs to allow the user to load another movie into the main movie effectively swapping the first movie clip with the second. This needs to be done without using the main menu.

View 6 Replies

ActionScript 2.0 :: Resize Stage To Dynamically Match External Movieclip Loaded Into Empty Movieclip?

Nov 15, 2004

know how I can resize the stage to match the size of an external graphic/movieclip which is loaded into an empty movieclip,

View 3 Replies

Actionscript 3 :: Move The Externally Loaded Content Of A MovieClip To Another MovieClip?

Jul 25, 2011

I load an image into a MovieClip. At a second time I want to move this image to another MovieClip.

View 1 Replies

ActionScript 2.0 :: Duplicated Movieclip Doesn't Inherit Loaded Movieclip?

Jun 27, 2006

I'm loading an image into a blank_mc within a movieclip called 'background_mc' using the MovieClipLoader object; when the onLoadInit for the MovieClipLoader object is fired, i then attempt to clone my 'backgound_mc' object and the loaded image it contains so i can do something with it (i,e a funky masky/blur thing, not important right now)I'm successfully loading my image into the blank clip within background_mc, the onLoadInit behaviour fires and duplicates background_mc once the image has been loaded, but in a disappointing turn of events, my clone of background_mc no longer has an image attached, and has instead reverted back to it's original form, just as ti was before it had the jpeg image loaded in.

View 3 Replies

Use A Variable And Then AddChild With A RemoveChild For The Old MovieClip After The New MovieClip Has Loaded

Mar 30, 2009

This is something I'm experimenting with, but haven't seemed to figure out... I have several MovieClips, basically the same, only different colors. As each one plays, I'd like it to "overlap" whichever one is already there. Right now I have each button linked to a gotoAndPlay function, but I don't think that will ever get me what I want. You can see how I have it now here: [URL]

Instead of having the content MovieClip go back to all white when a button is clicked, I'd like the preivious one to remain, and get "covered up" by the new one. You continue to see the old color, and the new color overlaps it. I have a feeling I need to use a variable and then addChild, with a removeChild for the old MovieClip after the new MovieClip has loaded, but I'm not getting any good results yet.

View 1 Replies

ActionScript 2.0 :: Hide Movieclip A When A Loaded Swf B Overlaps That Movieclip?

Dec 6, 2004

hide movieclip A when a loaded swf B overlaps that movieclip? movieclip A = level0. loaded swf B = level1

View 3 Replies

ActionScript 2.0 :: Loaded From XML Not Working?

Dec 25, 2005

I remember this was discussed earlier, but I cant find the right keywords MX2004 saved as player6 + AS1

The code:

Code:
stop();
menuLoaded = 0;
menuLength = 0;[code]....

View 9 Replies

FLV Play Options Not Working Once Loaded To Web

Oct 30, 2009

On my website: www.iferanart.com under the animations tab I have several animations that I embeded using Flash's premade option: "SkinOverPlay SeekStop.swf" player. The only change made to it was the color.My problem is that, as you can see when you go to the website and click on an animation, there are no play options at all.I have no idea what to do to fix this because when I publish preview they are there...but once I loaded the website to the server..nothing. The website is coded in AS3, built with Flash CS4.

View 3 Replies







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