ActionScript 2.0 :: Cannot Get Dimensions Of EmptyMC

Nov 18, 2005

I've created an empty movieclip in _root and loaded an image into it but whenever I do trace(_root.newMC._width) I get a 0! I've had this problem in the past but never really looked into it!

I have the following code:
Code:
with _root {
createEmptyMovieClip("file", 0).loadMovie("someimg.jpg");
["file"]._x = (Stage.width - ["file"]._width) / 2;
["file"]._y = (Stage.height - ["file"]._height) / 2;
lineStyle(3, 000000, 100);
[Code] .....

The problem I'm having with this is that when it looks for Stage.width it's actually trying to find _root.Stage.width. How do I get around that without breaking out of the 'with'?

View 5 Replies


Similar Posts:


ActionScript 2.0 :: Load MC From A EmptyMC?

Dec 7, 2006

the exemple was with a textfield. try to adapt it to a MC.here is my code.

Code:
var container:MovieClip = this.createEmptyMovieClip("container", this.getNextHighestDepth());

[code].....

View 1 Replies

Make Orientation Of EmptyMC Top Left?

Sep 21, 2009

I am creating a emptyMC that my splash page will open up on. So when I create a new symbol (my empty movie clip) how do I set the center point/orientation of it to the top left hand corner???

View 2 Replies

Actionscript 3 :: Finding An Original Rectangle's Dimensions From Rotation And Bounding Box Dimensions?

Jan 25, 2010

In AS3, I have a Sprite that has a Z axis rotation applied.How do I calculate that Sprite's dimensions (it's original size) from Sprite.rotationZ and Sprite.getRect(...)?

View 2 Replies

ActionScript 3.0 :: Fixed Movieclip Not To Change Dimensions If The User Starts Playing With The Dimensions Of His Screen

Jan 31, 2012

What do I have to write to keep the movieclip not to change dimensions if the user starts playing with the dimensions of his screen ? I remember it was a line of as3 written at the beginning.

View 3 Replies

Dimensions For IOS App

Jan 24, 2011

I have a flash app for web which is 971x570. I am planning to make it into iOS app and was wondering if I can do it with 971x570 dimensions or will have to use 480x320 px dimension as provided in the iOS template in Flash CS5 and thus modify my content.

View 1 Replies

ActionScript 3.0 :: Set The Dimensions Of The Swf?

May 16, 2010

I have two swf files.  I want to place one within the other.  Is there anyway I can set the dimensions of the swf I place within the other one?  I would have published it a smaller size, but it dont allow me to change the size in the settings of a swf, just the html version.

View 10 Replies

Make New Dimensions Go Up Not Down?

Apr 16, 2011

When I change the dimensions on a document, and for example make it taller, the background becomes taller in the direction DOWN. But.. how do I make it go up, if you know what I mean? When I make the dimensions taller, why cant it increase up?

View 1 Replies

Get The Banner To Act Within Its Dimensions (468 Px By 100 Px)?

Jan 29, 2009

the banner i just created was the size of my browser when i opened it on the internet, how do i get the banner to act within its dimensions (468 px by 100 px)

View 1 Replies

ActionScript 2.0 :: Getting Dimensions Of A JPG?

Jul 4, 2005

I want to load an image using loadMovie,.. and then dynamically draw a border arround it... but i need to get the dimensions of the pic... I dont know why bt using _root.container.img.pic._width isn't working... I mean it is drawing the border but very small and not even close to the dimensions of the pic. What can I do ?

(Maybe i'm trying to get the dimensions before it's loaded ??...)

View 7 Replies

ActionScript 2.0 :: Get Dimensions Of A JPG?

May 18, 2009

I have a long log in a simple TextField, simply adding new lines of text when needed. I wanted to make some of the lines different color but while adding new line (simply as myTextField.text += '' + log; ) all the previous text formatting is erased. There is a tiny note in the doc:Notice that any text inserted manually by the user, or replaced by means of the replaceSelectedText() method, receives the text field's default formatting for new text, and not the formatting specified for the text insertion point.If I get it right the I want to load an image using loadMovie,.. and then dynamically draw a border arround it... but i need to get the dimensions of the pic...I dont know why btusing_root.container.img.pic._width isn't working... I mean it is drawing the border but very small and not even close to the dimensions of the pic.

View 3 Replies

QuickTime Movies That Are Different Dimensions?

Jun 14, 2009

I have about 50 QuickTime movies that are different dimensions. I need to export them to be FLV's and I need them to all be the same dimension. I want to put them in a queue so I don't have to do each one manually. Is there a software that I can use to do this?

View 2 Replies

Flash IDE Messing Up Dimensions

Nov 15, 2009

hello everybody. I have a very weird problem. Recently my Flash IDE started to mess up dimensions. I mean when I create a new document or a rectangle for example, even if I set the height and width to the same value the height is always bigger than the width... I tried re-installing Flash CS4 again but that didn't solve the problem...

View 1 Replies

Setting Pop Up Window Dimensions?

Nov 24, 2009

I have a bttn in my swf (which is embedded into my html page) and i want to be able to control the parameters of the pop up window the bttn generates. I have found a code generator at- this generator works when i input all my parameters and URL and test it, but when i place the code it provides onto the bttn in flash it fails to produce the same result me

on (release) {getURL ("javascript:NewWindow=window.open('https://secure.bellerockgaming.com/webchat/go_Max_New.asp?siteID=14&qu eueID=29&folder=BRE','Live

[code]....

View 1 Replies

Flash :: Get Dimensions Of The Visible Swf In AS 3.0?

Apr 12, 2010

My movie is 500 by 200 px. However i am loading display object much larger than that and have just a portion of them show. How do i programatically get the visible dimesions? root.stage.width gives me the extended value.

for the sake of good programing practices i dont want to hardcore the values.

View 1 Replies

AS :: How To Resize Flash Dimensions?

Jul 1, 2010

If you include a flash file via:

<object width="550" height="400">
<param name="movie" value="somefilename.swf">
<embed src="somefilename.swf" width="550" height="400">

[code].....

View 1 Replies

How To Create Screenshots Of SWF (With Different Dimensions)

Jan 15, 2011

I have a collection of .swf files and they all have different dimensions. How can I create screenshots of these flash movies automatically? Would be very handy, because otherwise I will have to make screenshots manually for a few hundred flash movies.

View 2 Replies

ActionScript 3.0 :: Getting Image Dimensions?

Oct 28, 2009

I'm making an application that gets images from a web site and displays them on a screen for the user.How do I call getSize() on that data? I've been told I can use XML functionality in AS3 to achieve this as well, any idea how someone might accomplish the task?

View 1 Replies

ActionScript 3.0 :: Set Dimensions Of Loaded Swf?

Oct 22, 2011

Right now, my loaded swf works fine and is loading in the correct spot, but it is too large so i need to set the dimensions. I am loading it in through a movie clip also.[code]...

View 2 Replies

Change The Dimensions Of This Flipbook?

Jun 3, 2009

change the dimensions of this flipbook, what parameters i'd have to change in order to change horizontal and or vertical size.

View 1 Replies

ActionScript 3.0 :: Mac Dock In Two Dimensions?

Dec 10, 2009

I'm looking for an example or script of a mac dock type interface with objects in a grid rather than on a line.

View 3 Replies

ActionScript 3.0 :: Get SWF Pixel Dimensions?

May 19, 2010

How do I programatically get the pixel dimensions of my SWF. I tried using stage.width and stage.height, but this seems to be a tight bounding box on all the objects in the video, not the actual viewing area. I also want these pixel dimensions to be accurate as javascript dynamically resizes this SWF.

View 2 Replies

ActionScript 3.0 :: Get The Dimensions Of An Image After Loading?

Mar 13, 2009

I want to load an external jpg,Is it possible to get the dimensions of the file loaded after? It seems straight forward enough and easy to do - but I don't ever remember seeing such a functionality in Flash before.

View 4 Replies

Possible To Add Blank URL Window Dimensions To Button?

Sep 25, 2010

I've just finished working on an extensive HD intro for my website, which is in 1280x720 resolution.

At the moment, my site has a splash page with 3 buttons on it:
B1) opens the site in fullscreen mode
B2) opens the site in normal window mode
B3) opens a new browser window linking to my intro

Here's the AS code I'm using for my intro button:
Actionscript Code:
intro_btn.onRelease = function() {
getURL("[URL]", "_blank");};

I'm wondering if there is a way to somehow specify in that code segment what dimensions I'd like the new window to have? I know this can be accomplished in JavaScript with something like this:
Actionscript Code:
<a href="javascript:void(0)"onclick="window.open('[URL]','height=1280, width=720,scrollbars=no')">intro</a>

I've already tried putting the intro on it's own separate HTML page, but because of resolution and other background contrast issues, I've found that it undoubtedly looks best in a window that is resized to its specific dimensions, rather than having extra space around the edges, top, and bottom.

View 3 Replies

ActionScript 3.0 :: TextField Dimensions After <img> Loaded?

Jul 14, 2011

I have a text field that is assigned some HTML text which alongside the text itself also contains an "img" tag for displaying an image.I also am resizing the interface based of the dimensions of the text field and the problem that I have is that the interface resize needs to occur after the image has been loaded in the text field.

View 1 Replies

Professional :: Why Is Stage Larger Than .fla Dimensions

May 12, 2010

The more I work with this program, the more weird stuff I encounter.  I set up my .fla file as 700 x 400.  I've been putting stuff on the stage and adding tweens, then when I test the movie, part of the stage image is cut off.  I turned on the ruler, and found that the top of my stage is aligned at X 0.00 and Y -44.50.  I drew a box the size of the entire stage, and its position is X 0.00 and Y -44.50, and the dimensions are 700 x 469.  Can anyone tell me why my stage is larger than 700 x 400, and how to get the top left corner of the stage to be aligned at X 0.00 and Y 0.00? 

View 4 Replies

ActionScript 1/2 :: Get Image Dimensions Before OnLoadInit?

Jul 24, 2010

I need to get the width and height of the image before it finishes loading with a moviecliploader instance. This is for placement of another clip, which will always load before the image. Is there any way of doing this??? onLoadStart does not give dimensions of the image.
 
how do I access a button within the emptymcholder, and place it at a specific position?? Is this possible??

I tried doing emptymcholder.buttonname._x, but it does not work.

View 6 Replies

ActionScript 3.0 :: Xml Gallery Image Dimensions?

Jan 22, 2011

I'm using the following code to load images into a gallery through xml.  The native resolution of the files is relatively high (though fits well on my 1920 x 1200 pixel display).  Since I can't determine the resolution of other users' displays I would like to be able to resize the images loaded so that they fit proportionally on any screen.

[Code]...

View 9 Replies

ActionScript 3 :: How To Get Stage Dimensions Without Using Singleton

Feb 18, 2011

I have a few classes in my project which aren't display objects, but they need to know about the stage of my project (stage.stageWidth, stage.stageHeight). Is there a simple way to pass this information along to my classes without using a Singleton or passing these items in as parameters into the constructor??

View 3 Replies

Actionscript 3 :: Unlimited Map Dimensions For A Game?

Apr 21, 2011

Recently I've been planning out how I would run a game with an environment/map that is capable of unlimited dimensions (unlimited being a loose terms as there's obviously limitations on how much data can be stored in memory, etc). I've achieved this using a "grid" that contains level data stored as a String that can be converted to a 2D Array that would represent objects and their properties.Here's an example of two objects stored as a String:

"game.doodads.Tree#200#10#terrain$game.mobiles.Player#400#400#mobiles"

The "grid" is a 3D Array, of which the contents would represent the x/y coordinate of the grid cell. The grid cells would be, say, 600x600.An example of this "grid" Array would be as follows:

var grid:Array = [[["leveldata: 0,0"],["leveldata 0,1"]],
[["leveldata: 1,0"],["leveldata 1,1"]]];

The environment will handle loading a grid square and it's 8 surrounding squares based on a given point. ie the position of the Player. It would have a function along the lines of

function loadCells(xp:int, yp:int):void

This would also handle the unloading of the previously loaded cells that are no longer close enough to be required. In the unload process, the data at grid[x][y] would be overwritten with the new data, which is created by looping through the objects in that cell and appending each new set of data to the grid cell data.works fine in terms of when you move in a direction, cells are unloaded/saved and new cells are loaded. The problem is this:

Say this is a large city infested by zombies. If you walk three grid squares in any direction and return, everything is as you left it. I'm struggling to find a way to at least simulate all objects still moving around and doing their thing. It looks silly when you for example throw a grenade, walk away, return and the grenade still hasn't detonated.

I've considered storing a timestamp on each object when I unload the level, and when it's initialized there's a loop that runs it's "step" function amount of times. Problem here is obviously that when you come back 5 minutes later, 20 zombies are going to try and step 248932489 times and the game will crash.

View 3 Replies







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