ActionScript 2.0 :: Center Offset From Edge?

Sep 1, 2010

How do I determine where an MC's center is relative to its edges?

I'm developing a tool that a variety of noobs (as if I'm not still a noob) will be using, and I don't trust them to keep art with 0,0 being the top left corner.

How do I figure out that the left edge is now at -111px, and the top at -52, and the right at 12, and the bottom at 334?

Or what if they draw it so the left edge is at 56px and the right edge at 583?

Essentially, I want to determine the center of my artwork, wherever it is relative to the center of the MC

View 1 Replies


Similar Posts:


ActionScript 3.0 :: Scaling And Get The Center Window To Stay In The Center Of The Web Browser Screen

Aug 15, 2009

I have a center window and a background in my flash file. I am trying to get the center window to stay in the center of the web browser screen and get the background to expand and fill the entire web browser screen below center window layer. Sort of like this site [URL] I've currently converted the background to a movie clip and have this code.

[Code]....

View 11 Replies

Keep Center Of The Movie In The Center Of The Scree Regardless Of Browser Size?

Mar 23, 2009

My flash movie is 1440x900 but the area where all the important stuff happens in within 1024x768, i am trying to keep the middle in the center regardless of browers size or aspect ratio.

I can center the page but it doesn't work as i need it to. If the browers is small (1024x768) the swf is justified against the left edge, but not keeping the middle in the middle of the brower.

[URL] is an example of exactly what i am trying to achieve.

View 13 Replies

ActionScript 3.0 :: Ludicrous HtmlText Offset?

Aug 4, 2009

so I'm working on an app requiring me to lay some simple HTML as multicolumn text, and hacking around w/ g.skinner's old regexp method of reflowing as3 TextFields. I'll be happy to share this code if I can get it working. No desire to get into screwing with text.engine at this point, and this has to be back compatible to FP9 anyway.

So I'm back-and-forth parsing from likely break points to determine if we're in a tag here, and jump ahead to the end of it if we are. The ridiculous issue I'm up against is simply that there doesn't seem to be a TextField method for getting the htmlText offset -- NOT the visible text offset -- of a character. Is there a way to do that?

View 12 Replies

Actionscript 3 :: Finding The Offset Of A Block?

Jan 2, 2011

I am trying to make a pong like game but i need to find the offset from the center of the paddle so that i can make it bounce differently depending on where it hits the paddle. How can i achieve this?

View 1 Replies

Actionscript 3 :: Strange Offset In Flash?

Dec 14, 2011

I need to check (for my own good reasons) whether the cursor is located within the bounds of a particular object. I'm using a simple code to do this...

if(mouseX > hsSlot1.x && mouseX < (hsSlot1.x + hsSlot1.width) && mouseY > hsSlot1.y && mouseY < (hsSlot1.y + hsSlot1.height))
{
//My code
}

This, theoretically, should work perfectly! However, there is an offset (and one I did NOT set, mind you!) of about 16 between the hsSlot1's visual position (where it appears to start on the screen) and hsSlot1.x. There is a similar offset on the y axis, but I haven't measured it yet.The only thing I can think of for this is that hsSlot1 is an instance of a button (one with only one state at that) that was scaled to fit. However, I don't think that is it, because the numbers show that the entire object is merely offset at its current size.

View 2 Replies

ActionScript 3.0 :: A Gradual Offset Of A MC (using Loops)?

Jun 14, 2010

im trying to actionscript a simple animation where a combination of MC's move towards areas on the screen triggred by mouse events.What would be the best way of gradually ofsetting a MC, with the control to stop them with further mouse events.I have used tweens (example below) but i need to be able to stop them mid tween, i have tried using if statement to stop the clip but i cant seem to overide the tween.I have limited experience but im guessing a time based loop that i could supply an if statement withbooleons would be my answer. Are time loops possible with actionscript 3.(my thinking is(mouse event. start time based loop -offseting MC- Mouse Event 2 stops loop with if. )

tween example i used
(function moveToLeft(event:MouseEvent):void {
xMovement = new Tween(walkMC, "x", None.easeOut, walkMC.x, mouseX, 8, true); )

ive found the timer class, i should be able to make summit work with this

View 3 Replies

ActionScript 3.0 :: Revolving Around Point With Offset

Dec 30, 2011

I got a bit of code, need head the arrow towards mouseX and mouseY. Everything almost done, but I get some shaky effect if mouse is too close to the object. Just look into .fla.

View 0 Replies

Flex :: Handling Timezone Offset?

Jun 28, 2011

I've developed an FLEX application for distributed data administration. When our Asian employees specify a date, it will be saved +1 day.If I check my timezone offset it is +60, their offset is +520.

var dNow:Date = new Date();
trace("Your time zone offset: " + dNow.getTimezoneOffset() + " minutes");

I assume this is the problem? If so, would you suggest that I correct the entered date by 460 minutes before sending it to our server for saving? How to do that?

View 2 Replies

ActionScript 3.0 :: Flash Rotate Is Offset

Mar 2, 2011

I`m making a game where the player follows the mouse and shoots towards it. But I realized the laser-thing didn`t seem to be coming straight from the player. So I added a line going strait up and down on the player movie clip, and it seems that the rotate code is slightly offset.

[Code]...

View 1 Replies

ActionScript 3.0 :: Scrolling Thumbs Gallery Offset

Oct 15, 2010

i'm currently re-using a code snippet of xml gallery with scrolling thumbs, but i got a problem : my mask is stagewidth and my pictures holder depend of thumbs numbers, sometimes after resizing windows browser, while scrolling to the browser sides limit i cannot see the end of the last pic or the start of the first pic

[Code].....

View 7 Replies

ActionScript 1/2 :: Creating A CLOCK OFFSET Option

Feb 7, 2012

I am programming an instrument that has a feature for the user to offset the clock by the timezone that they are in. I have your basic clock functioning and give the users the ability to select their clock offset and store both the offset Hours and the Minutes in separate variables... My question is how to i take these variables and have them calculate/ update this standard clock function that i am using below:

[Code]...

View 1 Replies

Flex :: Mystery Coordinate Offset On GetCharBoundaries?

Jun 19, 2009

I've ran into a weird problem with getCharBoundaries, I could not figure out what coordinate space the coordinates returned from the function was in. What ever I tried I could not get it to match up with what I expected. So I made a new project and and added simple code to highlight the last charater in a textfield, and all of a sudden it worked fine. I then tried to copy over the TextField that had been causing me problems, into the new project. And now the same weird offset appeared 50px on the x axis.Everything else was spot on. So after some headscracthing comparing the two TextFields, I simply can not see a difference in their properties or transformation.

So I was hoping that someone might now what property might affect the coordinates returned by getCharBoundaries.

View 4 Replies

Flex3 - Skinned Panel Content Offset?

Sep 5, 2009

Here is the problem. I've created custom RectangularBorder and set it as border skin for TitleWindow. After this manipulation inner content of window is starting at 0,0 point of it. How could I set offset of it?

Just setting top padding does not work because scroll bar still begins from the top of the window after this manipulation.

View 3 Replies

ActionScript 3.0 :: Draw Points With DrawGraphicsData With An Offset?

Jul 3, 2011

I'm projecting some vectors using the Utils3D.projectVectors() method. This gives me the (x,y) screen points. Then I'm using graphics.drawGraphicsData(); to draw a GraphicsTrianglePath containing these points.

The points are drawn at the top left (0,0) of the stage, but I want them to be at the middle (275,200). I know there are several ways of doing this, like for instance, adding 275 to all the screen points x values, and adding 200 to the y values, but I think that would be a massive operation.I can also set the sprite containers x and y, but I want its position to stay in the top left.

Simple way of drawing it in the middle?

View 1 Replies

ActionScript 2.0 :: Offset Working Mouse Follower

Dec 31, 2002

I have succesfully achieved a mouse follower using the following code, [code]the part I need to understand how to change is:I want to offset the MC in relation to the mouse pointer,probably by assigning variables, not sure though.

View 3 Replies

ActionScript 2.0 :: Shape Movement Vs Camera Offset FLA's

Jun 1, 2006

Ive been looking at the following tutorial: [URK] but i can't seem to get it to work. If anyone has completed this tutorial, is there any chance of you uploading the fla for me to play with...?? Im trying to use the Star/Space effect located at the bottom of the page.

View 2 Replies

ActionScript 2.0 :: Random Motion Offset To Bottom Right?

Jun 11, 2003

I've cut and pasted the random motion tutorial code into my movie, and for some reason the movie clips that are moving migrate to the bottom right off the movie, off-stage. I've tried setting the registration point of the movie to the upper left, but that didn't help.

View 3 Replies

ActionScript 3.0 :: Bug: Flash Embed Offset On Page?

Sep 8, 2010

This might be more of a Safari thing rather than Flash being that I've not seen this happen on any other browser or OS, but would anyone have any idea why this Flash embed of our player is offset as it is in Safari:?

[URL]

Here's a screenshot of what it looks like for those not in Safari:The weird thing is that it seems to only be *visually* offset; that is, if you roll over the area with your mouse, you'll see that it interacts as if it's in the right place and not offset; the browser treats it like it's in the right place, but it's visually offset to the top-left some dozens of pixels...

View 2 Replies

ActionScript 3.0 :: Scrolling Thumbs Gallery Offset?

Nov 19, 2010

i'm currently re-using a code snippet of xml gallery with scrolling thumbs, but i got a problem : my mask is stagewidth and my pictures holder width depend of thumbs numbers, sometimes after resizing windows browser, while scrolling to the browser sides limit i cannot see the end of the last pic or the start of the first pic, how to fix that ?

tha'ts part of a bigger project, but i've isolated the bug in this source : [URL]

the fix i would like :

-seeing the whole first pic and whole last pic when scrolling to the border left and right

-placing the first pic at x:70 at start, and enter fullscreen

if someone may have a look on this , that's only a 2 mn fix for a skilled as3 programmer, but for me a headache

View 3 Replies

Javascript :: Get The Absolute X And Y Coordinate Including HTML Offset?

Feb 18, 2010

I am calling a JS function through the ExternalInterface using Flex which requires the absolute X and Y coordinates to create a pop-up menu. The Flex application is displayed on the center of an HTML page, therefore there is an HTML X and Y offset to consider.

I have tried using the LocalToGlobal and ContentToGlobal functions, but these are just giving me the X and Y coordinates relative to the Flex application, it is not considering the HTML X and Y offset of having the Flex app in the center of the page or varying different screen resolutions.

Is the best approach to retrieve the HTML X and Y offset using JavaScript? Is there a Flex function I can use that provides the absolute X and Y coordinates based on the HTML page?

View 2 Replies

ActionScript 3.0 :: FXG To SVG - Convert Color Offset Changes To Matrix Filter

Apr 19, 2011

I'm trying to convert a simple FXG to SVG. The conversion is pretty much straightforward, but I'm encountering a color manipulation problem. The FXG have a base shades of gray path, and I apply a different color transformation on subsequent use of this path for other shapes.

Here the FXG color transformation (equivalent to colorTransform) :
<ColorTransform redOffset="-255" blueOffset="25" greenOffset="56"/>

How can I convert this color transformation (even the negative offset) to something SVG understand? I only need the color offset changes, no multiplier or alpha. I think it could be achieved with <feColorMatrix> (look like this SVG filter work like the AS3 ColorMatrixFilter) but I can't find how. How I could convert those color offset changes to a color matrix filter ?

View 2 Replies

ActionScript 3.0 :: Offset - Messing The Sound Files Timing

Jun 23, 2009

I'm having an issue with sound that I'm playing from the library. With longer sound files, whenever I specify an offset in the play() method that's greater than 1000 milliseconds, it ends up messing the sound files timing. Specifically, it cuts about 1 second from the end so the sound file ends abruptly. I was wondering if any one else was having a similar issue.

View 0 Replies

Media Server :: Seek Or Start Playback Offset Not Working On Big Flv's

Dec 12, 2010

I try to start a FLV (created with soundbooth cs5) at a certain point of time using ns.play('video', 33000) or even just ns.seek(33000);
 
The FLV is about 9 hours long.
 
How do I make this work ? And why is it not working?

View 7 Replies

Actionscript 3 :: Flex TileList Start Offset And Click Handler?

Oct 23, 2009

I have some images I would like to display in TileList in Flex. My TileList dimensions are 2 columns by n rows. What I want to do is to display the first item (row 1, column 1) empty and not clickable, and to start displaying my items from row 1, column 2.I also wonder when I create click event for the same TileList, is there a way get an index of clicked element?

View 1 Replies

Actionscript 3 :: Cascade Pop Up Windows (i.e. Offset The X And Y Position) In A Flex Application?

Dec 2, 2010

I have a simple Flex (Flash Builder) application which pops up a new window when a user clicks on a map. The user can make subsequent clicks on the map to have additional pop up windows appear, each of which currently pop up on top of the initial/previous pop up window(s) (i.e. at the same X and Y position). I want to modify the application in such a way that each new pop up window will be rendered slightly offset from the previous pop up window. A coworker has suggested I try to find a way to leverage existing window cascading functionality in Flex, but so far I've not found anything which can manage this for you. Is there such a solution cooked into Flex already, or should I roll my own by calculating the new pop up window's X and Y position based on the last pop up window's X and Y position?

View 1 Replies

ActionScript 3.0 :: Capturing BitmapData Offset - Click From The Centre Of The Colorwheel Down Get The BitmapPixel Value

Aug 12, 2009

However I have created a colorwheel and positioned the container it resides in. They using a simple click listener

[Code]....

the issue is if I click from the centre of the colorwheel down I get the bitmapPixel value, but the other 3/4of the item returns 0.

View 6 Replies

ActionScript 2.0 :: Countdown Timer, Timezone Offset Stuck In Eastern Time?

Dec 22, 2006

I have a countdown timer that will be used for events that happen locally central time, mountain time, etc. However, if someone on eastern or pacific time (or any variation of the 4 timezones) looks at the countdown timer, I want to make sure that it shows the time relative to their timezone.I thought i could read the user's timezone offset (Date.getTimezoneOffset) and subtract from it the hardcoded timezone offset of the event (passed as a variable from XML depending on the event's "primary" timezone).

Am I getting the math here wrong? The "net" timezone offset from the user - the event timezone offsets SHOULD add into the countdown time.However, Date.getTimezoneOffset, regardless of my Mac or PC timezone setting/time, keeps showing an Eastern timezone offset of 5 hours. What's going on?The time is correct when I hardcode an event timezone offset to anything other than Eastern time. I think the problem is that it's not getting a user timezone offset OTHER than -5 hours for Eastern Time.Code for the timer is here (assume that the target event timezone has been passed in):

Code:
this.onEnterFrame = function() {
var today:Date = new Date();

[code].....

View 4 Replies

ActionScript 3.0 :: Offset Value To The MouseX, MouseY Coordinates As Intended, And The Drawing Automatically Stops?

Jan 21, 2011

I need help with this drawing example. The problems I'm having are that the coordinate of the line being drawn always have an offset value to the mouseX, mouseY coordinates as intended, and the drawing automatically stops after a while for no reasons at all. I don't know what's wrong.

Code inside Frame 1 in main FLA:

ActionScript Code:
import flash.display.Sprite;import flash.display.MovieClip;import flash.events.MouseEvent;var art:Sprite;art = new Sprite();var drawing:Boolean;container_mc.addEventListener(MouseEvent.MOUSE_DOWN, prepDraw);container_mc.addEventListener(MouseEvent.MOUSE_MOVE, startDraw);container_mc.addEventListener(MouseEvent.MOUSE_UP,

[Code]...

View 7 Replies

Media Server :: Client Side Playlist With NetStream.play Using Start Offset Causing Jerky Cuts

Dec 1, 2009

I have a series of mp4 videos (H.236 @ 22 fps) streaming from an akamai FMS serve via RTMP protocol in flash player 9+ with AS 3.My goal is to create client side playlists that smoothly switch from one stream to another. I am creating these playlists using a series of netStream. play (filename,start,len) methods. If I don't use an offset for the start parameter, then the stream switches smoothly from one video to the next with not noticeable jump or jerkiness. However if I introduce a start offset, say a few seconds in, I start to see a quick little hiccup or pause between the seams as it switches from one playlist stream to the next.

View 1 Replies







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