Determine The X/y Coords Of A Spot On The Stage?

Jun 23, 2009

Is there any way for me to move the mouse to a spot on the stage and determine what the x/y coords are? It's really hard writing some action script and just continually guessing what x/y coord i want until i get it close enough.

View 1 Replies


Similar Posts:


Get 3D Coords On Some Plane For 2D Mouse Coords In Flash With Away3D?

Aug 1, 2011

Waht is the right way to get 3D coords from 2D mouse coords using Away3D. (version 3.6.0) It's ambigoius problem in general, so there is restriction that 3D point belongs to some fixed plane.

There are some examples with camera.unproject and plane.getIntersectionLineNumbers methods, but they don't work if camera is rotated or plane is not trivial.

View 1 Replies

ActionScript 2.0 :: Loading Multiple Text Boxes Into 1 Spot On Stage?

Apr 3, 2011

I am wanting to have several separate blocks of text appear in the same spot on my stage. Here are the specifics. I have 8 buttons each controlling their own block of text. When one of the buttons (button1) is clicked its text appears. When the user clicks another button (button2) button1's text goes away and button 2's text appears. The text boxes are sitting in my library and not on the stage. What AS functions do I need to get this to work? A Case/switch or For/while or just an if else? I would like to keep from using event listeners(which may not be AS 2 anyway).

View 5 Replies

ActionScript 3.0 :: Away3D And Resize Stage - Keep The Globe In The Same Relative Spot With The Graphic Behind It

Dec 10, 2010

I made a spinning globe with Away 3D which sits in front of a 2D graphic in a specific spot. The swf is going to exist as part of a web-page. When a user hits "zoom in" or "zoom out" on there browser (looked at FF and IE) and refreshes the page, the 2D graphic is zoomed and stretched. The spinning globe is also magnified, but falls out of position... in this case, down and to the right. I put my original re-jiggering steps to put the globe in place in an onResize() method, called by stage.addEventListener(Event.RESIZE, onResize);

[Code]....

Even if I wanted the globe to stay dead center on the stage, I don't know how to do this. What kind of calculation do I need to make in my onResize() method? Do I move the view or do I need to move something else? Can someone explain what is happening to the viewport or the camera when the stage is resized?

View 3 Replies

ActionScript 3.0 :: Determine The X And Y Value Of An Object On The Stage

Mar 17, 2010

i have a class called "Ball" that extends "AllSprites" which is a class that extends "Sprite". there is an addChild within the "Ball" class that adds a Sprite to the stage. when i run it like this, it successfully adds the object to the stage.

in my Main class i have

Code:
var ballOne:Ball = new Ball();

i am trying to get the x and y value of ballOne from within my Main class but if i try to do

Code:
trace(ballOne.x);

i get an error:

1119: Access of possibly undefined property x through a reference with static type Ball.

how do i tell my code that the ballOne is a Sprite so i can get the x and y values?

also not working:

Code:
trace(Sprite(ballOne.x));

View 7 Replies

ActionScript 3.0 :: Determine Rotation Of Object To Stage?

Jun 18, 2009

How can I get the X, Y, and rotation values, relative to the stage of a child of unknown number of parents?

What I am doing is: I have a 'stick' object, that creates a child 'stick', that creates a child 'stick', etc a random number of times.

The end stick then creates a leaf.

Each new stick rotates a little bit randomly.

As a result when my leaf falls off the final stick it flies off in a strange direction.

How can I get the leaf to fall down (eg y++ relative to stage)?

Alternatively I thought I could dispatch an event that has a leaf created at the stage level but then I really need to know what the X and Y co-ordinates of my final stick is realtive to the stage.

View 2 Replies

Actionscript 3 :: Determine A Sub Movieclip Position Related To Stage?

Mar 22, 2012

I have some movieclips like this one: game_mc.substage_mc.rightHand and inside the rightHand i have a thread_mc like this:

game_mc.substage_mc.rightHand.thread_mc

Ok so here is the thing, i need to access the thread.x and thread.y position related to the stage or substage_mc i don´t really care, but if i do this[code]...

View 3 Replies

ActionScript 3.0 :: Determine Rotation Of Child Object To Stage?

Jun 19, 2009

How can I get the X, Y, and rotation values, relative to the stage of a child of unknown number of parents?What I am doing is: I have a 'stick' object, that creates a child 'stick', that creates a child 'stick', etc a random number of times.The end stick then creates a leaf. Each new stick rotates a little bit randomly.As a result when my leaf falls off the final stick it flies off in a strange direction.How can I get the leaf to fall down (eg y++ relative to stage)?Alternatively I thought I could dispatch an event that has a leaf created at the stage level but then I really need to know what the X and Y co-ordinates of my final stick is realtive to the stage.

View 0 Replies

ActionScript 3.0 :: Determine Where Movie Clip Is Accoriding To Stage

Oct 30, 2009

I have a series of movie clip images lined up horizontally inside a parent clip on stage.I need to move the clip left/right and keep a certain portion of the content it on screen the whole time. Like a horizontal scroll bar but with buttons.When you've gone too far to the left... the content container should stop - and vice versa.

View 0 Replies

ActionScript 3.0 :: Calculate Or Determine The Mouse Speed On The Stage?

Dec 5, 2009

How would you calculate or determine the mouse speed on the stage? What i am trying to do is this:

You have a custom cursor which shows a plus sign when you very suddenly and fast change the direction of the mouse to the right. When you do the same to the left, the cursor changes to the minus sign.

However, if you steadily move the mouse from left to right while the mouse cursor is showing the minus sign, the mouse cursor stays the same, only on very fast change of direction the cursor changes?

View 9 Replies

ActionScript 2.0 :: Determine Height Of Full Browser Stage?

May 6, 2009

I need to write a function that will position a movieclip depending on the height of the stage.I'm a little uncertain as how to proceed with this, as my knowledge on AS2 is still developing..Basically I want something like the following thought process:

if stage is < 500px height, then movieclip_y=(Stage.width/2)-100
if stage is > 500px height, then movieclip_y=(Stage.width/2)+100

I hope this makes sense. I guess I'm unsure as how to determine the height of the stage (I've created a stage that sizes itself to the browser dimensions).

View 2 Replies

ActionScript 3.0 :: How Does Flash Determine The Coordinates Of Movieclip In Relation To The Stage

Mar 28, 2009

Okay this is always something that's puzzled me. If I create a movieclip, place that clip on the stage, then inside that movieclip, create another movieclip, how does flash determine the coordinates of that second movieclip in relation to the stage. The reason I am asking this, is that I have a large movieclip which contains a number of other smaller movieclips. When a user clicks on one of the smaller movie clips, I need the larger movieclip to move so that the clicked movieclip is now centered on the stage.

I figure that this would be easier to know if I knew how to calculate the distance which the second, smaller movieclip is from the center of the main stage in x and y coordinate values. Am I making any sense? If not I'll try to explain again.

View 14 Replies

ActionScript 3.0 :: Determine Absolute (stage) Coordinates Of A Movie Clip

Apr 1, 2011

Is there a method to determine the stage coordinates of a movie clip?

I don't mean something like this:
stageX = mc.x + mc.parent.x + mc.parent.parent.x + ....

I would like to be able to determine the movie clip stage coordinates without knowing what are its parents and grandparents etc. The goal is to be able to place the movie clip on exact place on a stage, no matter what is the nesting structure.

View 1 Replies

ActionScript 2.0 :: Determine User Resolution - Single Horizontal Line To Go Across 100% X 100% Stage?

Jul 11, 2007

I would like a single horizontal line to go across my 100% x 100% stage, but how do I do that? Im thinking its about knowing what resolution the viewer has, and the writing a script for the line, but how?

View 2 Replies

ActionScript 3.0 :: Alert Flash To Determine Which Movie Clip On The Stage Is Clicked?

Apr 13, 2011

I have a group of movie clips, each placed randomly on the stage. I want to be able to click one of the movie clips and move them around. They are stored in an array.

View 5 Replies

ActionScript 2.0 :: MC Gets Deleted Before It Can Hit The Last Coords

Mar 8, 2005

I'm trying to save some CPU resorces here but donno how.. my MC script is deleted before it can reach the current point.. what should I do?..

[Code].....

View 3 Replies

ActionScript 2.0 :: MC Gets Deleted Before It Can Hit The Last Coords?

Mar 8, 2005

I'm trying to save some CPU resorces here but donno how.. my MC script is deleted before it can reach the current point.. what should I do?..

MovieClip.prototype.moveIt = function() {
this.onEnterFrame = function() {
menu._x = Math.round(border._x - ((border._width/2) + 68))+5;

[code].....

View 3 Replies

ActionScript 2.0 :: Mc To Zoom To Mouse X&y Coords

Jul 12, 2007

I have an mc that when I press a key it will either zoom in or out. Right now it zooms in/out, but it does with with the up-left corner as the point to zoom from. Can anyone direct me on how to zoom in/out where ever the mouse is relative to the mc? If the mouse is in the middle, then it zooms from the middle and so on.

View 5 Replies

ActionScript 2.0 :: MovieClip Cannot Get Back To Coords It Was Before

Feb 25, 2005

If you check my site I'm trying to make [URL] and click one of my buttons the menu/logo/music/.. will move to the coords..

Here's the script I used:
1st frame:
speed = 5;
Frame in which the action will take place:
MovieClip.prototype.move = function() {
[Code] ....

But if you try to click for example on the "contact" button and after "about" button you can see that my music button (right side) is closer to the main border... so why the mc's coords are little off if you had clicked different button before (or if the mc's coords are different than before)? [note that I need to use Math.floor and Math.round to make it look sharp and that the speed value is for all MC's number 5]. Also my MC location is set up to hole pixels..

View 14 Replies

Actionscript :: Strange Coords After RemoveChild Is Called

Jan 24, 2010

I create a few squared sprites and then remove the first one and display the coords.[code] The x coordinate is still 0, though width has changed,getBounds shows correct values.I would expect x to change as well.Because of the wrong value of x, globalToLocal and localToGlobal work incorrectly.If you click somewhere on the left side of the second (still visible) rectangle you get: 2 28 (x=2, y=28)which is good for nothing. The values in brackets should be in stage coords and they are not.[code]

View 1 Replies

Actionscript 3 :: Express Difference Between Two Xy Coords As A Number Between 0 And 1?

Nov 8, 2010

I've created a movieclip spawner class and animator class which animate movieclips along a set of x,y points.I've used Greensock's TweenMax to accomplish the animation and I have set the speed to be 1 second between each point. The issue is that when the distance between two points is small it looks too slow.

What I would like to do is somehow calculate the distance between the two points and output a speed in the range of 0 to 1 seconds so that the speed is to be correct for the shorter distances as well as the longer distances.

View 3 Replies

ActionScript 2.0 :: Locking Y Coords On Dynamic Scroller?

Feb 26, 2010

I have an image gallery that loads images/text through xml, but I'm having an issue with the scolling, I need to lock the ymouse coords right now it scrolls only on the xmouse, basically I need it to work in the scrolling area only, say 400width by 200height..

[Code]...

View 0 Replies

ActionScript 2.0 :: Tell The Target To Goto The Tellers Coords?

Jun 18, 2004

How do I tell the target to goto the tellers coords?

Code:
tellTarget("/Flame_" + (_global.numFlame-1) +"_mc"){
this._x = 100;
this._y = 100;
}

This is what I have and it tells the Fluid (the place where the above code is) to go to 100,100. that was kind of jumbled but I think I got it all in..

View 5 Replies

Flash :: Professional - CS5 - Position X / Y Coords Change By Themselves After Typing

Sep 20, 2010

I've been working in CS5, with an older FLA I originally built in CS3. On the timeline, I have different MCs and button symbols which need to stay in the same coordinate position. Usually if I notice some sort of 'wiggle', I will go and check the position coords by hand, updating the x/y position by typing numbers directly in the Properties panel.

However today, I repeatedly saw the coordinates change -by themselves- after I typed and hit Enter. For example, typing '165' in the Y field changed immediately to '164.95'. With one symbol, this behavior continued, no matter what I typed, with the number changing by 10 pixels sometimes, every time I just selected the symbol. Not only was I not able to keep the symbols at the same coords (I tried making  them all 164.95), the 'automatic decimal' numbers would actually change further, as I was trying to correct them. I was only able to resolve this by creating an entirely new MC symbol in the Library, and placing it on a new timeline layer.

I've noticed this sort of behavior before in CS3 and CS4 (the CS4 Alpha slider never wanting to go to 0 or 100%), but never to this extent, or as consistently. It's gone from an annoyance to a genuine problem in my workflow.

View 1 Replies

ActionScript 2.0 :: X And Y Coords Of A Movie Clip Declared In A Variable?

Nov 25, 2004

How come this PHP Code:

function drop (thumbClip, xCoord, yCoord) {
thumbClip._x = xCoord;
thumbClip._y = yCoord;
trace (thumbClip);
trace (xCoord);
trace(yCoord);


receives the variables (specified in a later function) and traces them all right, but refuses to deposit the variable thumbClip in the x and y coordinates being specified?

I replaced thumbClip with a specific movie clip, and the fucntion worked perfectly. Does this mean Flash cannot use variables to set the x and y coords to?

View 3 Replies

ActionScript 2.0 :: X And Y Coords Of A Movie Clip Declared In A Variable

Nov 25, 2004

How come this:

PHP Code:

function drop (thumbClip, xCoord, yCoord) {
thumbClip._x = xCoord;
thumbClip._y = yCoord;

[Code].....

receives the variables (specified in a later function) and traces them all right, but refuses to deposit the variable thumbClip in the x and y coordinates being specified?

I replaced thumbClip with a specific movie clip, and the fucntion worked perfectly. Does this mean Flash cannot use variables to set the x and y coords to?

View 3 Replies

ActionScript 2.0 :: Back To Basics - Tracking Mouse Coords Into An Array

Mar 9, 2004

I've been reading through all the various threads related to the drawing API and saving drawings. About a hundred times I've seen mention of "log mouse positions into an array" and stuff like that, but I can't find any clear and simple examples of how to do this.

Let's take a very simple use of the drawing object to do freeform drawing. What is the AS to capture the mouse XYs as the user draws and put that into an array. I can't figure out how to get Flash to keep updating things as I go, it invariably grabs the fist point and that's it. Could one of you AS gods just write out a super simple routine for this? I know I'm not the only one that needs this (as it seems to be asked every week) Let's use the most basic drawing example I can find:

[Code]...

View 14 Replies

Flex :: Converting Ordanance Survey Coordinates Into Valid Esri Coords

Sep 4, 2011

I've been searching extensively for a way of converting from ordanance survey coords to valid esri coordinates. I've found quite a few pages that convert to lat long (if a little off) but nothing to convert to esri (which I believe is utm.)This is for use in python or JavaScript / actionscript etc - I'm not too worried about syntax more an understanding of the maths involved.

View 2 Replies

Flash :: Calculate The X & Y Coords - Width And Height Of Specific Piece Of Text Inside A PDF Document

Oct 28, 2010

On my website, I display uploaded PDF files in a flash player for my users to read. I already use various tools to extract the text and produce a serious of high quality images from the file and the system works well. The last piece of the puzzle is to be able to highlight specific parts of the document to help users with accessibility issues.

However I cannot figure out how to calculate where the specific text is positioned on the page? Notes: The documents uploaded to the system are from 3rd parties, so fonts may be embedded. Meaning that I cannot be sure of the width of specific letters. The text to be highlighted may not be unique, the same text may be repeated How can I calculate the coordinates, height and width of a specific piece of text on a PDF, so that I can then draw a box around it?

View 1 Replies

ActionScript 2.0 :: Tween - Make A Button Trigger A Movie Clip That Targets Specific Coords?

Feb 22, 2005

how do i make a button trigger a movie clip that targets specific coords? I'm building a map and when a button is click it goes to a defined point. right now it jumps to the coords, but i'd much rather it smoothly move instead. the other thing is that i would like it to move from whatever point it is currently at.

View 11 Replies







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