ActionScript 3.0 :: 1009: When Referencing Stage - Stagewidth From The Child

Jun 3, 2011

I have a main.swf and a slider.swf. I load the slider.swf into main.swf. In my slider.swf I have this code which adds an image to the stage from the Library:

[Code]...

I assume it has to do with the stage.stageWidth. Is there a another way to reference the stage. If I load the the image externally via a loader I can use the stage.stage Width.

View 4 Replies


Similar Posts:


ActionScript 3.0 :: Referencing Stage.stageWidth From A Class

Jan 7, 2009

I created a custom class in a .as file. I then linked this custom class with a symbol from the library in my .fla file. However, I can't reference stage.stageWidth in my custom class file. I get a null object error.

I think this happens because the custom class file is associated with a symbol on the stage and not the stage itself. For example, if I set the fla file's Document Class to the name of my custom class I can reference stage.stageWidth in the custom class. But I don't do this because I am creating multiple instances of the symbol on the stage. In order to do that properly i found I have to set the class in the properties panel of the symbol to the underlying class which then defines how each symbol behaves.

Under this type of linkage, is there a way to reference the stage width from the class? I've tried root.stage.stageWidth and parent.stage.stageWidth to no avail. I also made sure to import flash.display.* in my custom class. Below is the code for my .fla file and my .as file. In the .as file you'll see the line "x = Math.random() * stage.stageWidth;". This is the line giving me problems. I could hard code it, as I do for the y variable on the next line, but I'd prefer not to in order to keep the code flexible.

[Code]....

View 3 Replies

ActionScript 3.0 :: Stage.stageWidth And Height Not Working: 1009

Jun 27, 2011

I've decided to start re-writing my project, but this time making the use of class files rather than nesting code inside my MovieClips.

Now it's come to the "message box" that I previously wrote, and I'm having some troubles. (note: I don't really want to download a pre-built one as my message box class end up being the backbone for several custom interfaces).The problem is that I cannot, for the life of me, figure out why my message box class cannot access "stage.stageWidth", "stage.stageHeight", "MovieClip(root).currentWidth", etc.

This is the code for the working "messageBox.as":

ActionScript Code:
package com.components{
import flash.display.Shape;
import flash.display.MovieClip;

[code]....

I've tried several variations of creating the movie clip, but to no avail. I've tried like creating a global movie clip variable and that attatching the movieclip to it in this function, the same with a display object, creating a function variable and doing both of the above, etc.I just cannot figure it out! All of my other classes are working just fine!

View 6 Replies

ActionScript 3.0 :: Referencing The Stage From A Child MovieClip

Dec 15, 2009

I feel like I should know this by now, but I'm having trouble. I want a function in one of my child functions to increment an integer in its parent function.

[Code]....

View 9 Replies

ActionScript 3.0 :: Referencing Stage - Error #1009: Cannot Access A Property Or Method Of A Null Object Reference

Feb 4, 2012

I think my issue is to do with referencing the stage, but not to sure. When I try

[CODE]...

View 3 Replies

ActionScript 3.0 :: Prevent A Child Swf From Referencing Its Parent Swf Stage Width/height?

Oct 11, 2010

I would like to know the way to prevent a child swf from referencing its parent swf stage width/height?

for example, i created a child swf that loads image and center it on it's stage. As a stand alone its fine but i loaded it with parent swf, it centers on the parent swf instead.

View 3 Replies

Flash Osx - Viewing Applications On A Mac Stage.stageWidth/stage.stageHeight Return 0 In Firefox/IE

Dec 13, 2009

I am using SWFOBJECT to embed my flash content. I have been worried about stage.stageWidth and stage.stageHeight returning 0 in Firefox/Internet Explorer; this problem is referred to in question #21 on the SWFOBJECT FAQ [URL]..I have been told that this problem is particularly prevelant on Macs. The SWFOBJECT FAQ (question 21) indirectly suggests that this problem does not occur with static publishing. Is this correct? Is it still advisable to implement a solution to this stageWidth/stageHeight problem, even if you are using static publishing?

View 1 Replies

ActionScript 3.0 :: Stage.stageWidth & Stage.stageHeight Change In Full Screen?

Jun 18, 2010

I've been working on a project that requires lots of scaling around a center point.

I always thought that stage.stageWidth and stage.stageHeight give you the dimensions of the stage you set in the properties panel no matter what. But when I went into fullscreen mode (with scaling), both the width and the height changed to the dimensions of the screen rather than staying the dimensions I specified.

View 1 Replies

ActionScript 3.0 :: Stage.stageWidth & Stage.stageHeight Giving Wrong Values

May 17, 2011

In my AS3 code all the elements on the page are dynamically positioned depending on the current width and height of the SWF - providing it's not under a certain value, then the items are back in their original position.

When debugging in the Flash player the size all reports correctly however when run from a web browser it does not - initially.

This is my HTML & PHP code for the entire page:

HTML Code:
<?php
function hashId($fn) {
$hash=md5_file($fn);

[Code].....

But I cannot get the size to report correctly without, say, clicking a button.

It seems to me like I need to force flash to re-draw the screen, but I had no luck trying to do that.

View 8 Replies

Flash :: Get Stage.stageHeight Or Stage.stageWidth From Imported Class?

Jul 1, 2010

can you tell me a simple and clean way to pass the dimension of the stage to another class, imported in my documentclass?

View 2 Replies

Flash - Difference Between Calling Stage,width And Stage.stageWidth?

Oct 5, 2011

In as3 What is the difference between calling stage.width and stage.stageWidth I read somewhere that if we have nothing on stage then the value of stage.width is 0,but what happen when I have nothing on stage but loading contents dynamically on stage?I have tried this and when i have loaded content dynamically on stage then i have got

stage.width=value; // where value is dynamic number

View 4 Replies

Actionscript 3 :: Difference Between Stage.width And Stage.stageWidth?

Sep 14, 2011

In actionscript 3 (as3) What is the difference between calling stage.width and stage.stageWidth. This was something I remember I got confused about in the past (Adobe's api docs are an artform in obfuscation

View 2 Replies

ActionScript 3.0 :: Stage.scaleMode And Stage.stageWidth?

Jan 2, 2008

What am I missing here? According to the docs:

Quote:

When the value of the scaleMode property is not set to StageScaleMode.NO_SCALE, the stageWidth property represents the width of the SWF file as set during authoring in the Document Properties dialog box. This means that the value of the stageWidth property stays constant as you resize the Flash Player window. This property cannot be set. So stick this in a new FLA

[Code]...

and the traces are of different values. According to the docs, this shouldn't be happening. What's going on? Did I miss something little?

View 5 Replies

ActionScript 3.0 :: Acessing Root Stage.stageWidth?

Sep 2, 2009

So I'm trying to do a simple graph with rollover definitions. I have the graph on one layer in the root along with the definitions. On a hit testing MC I have the following:

var defbox:info = new info();
var mcName  = this.name;
var xPos =  (MovieClip(parent).stage.stageWidth)/2;

[code]....

View 5 Replies

ActionScript 3.0 :: Preloader Matching Stage.stageWidth ?

Oct 8, 2010

Experimenting with Flash as usual.Preloader's are always something that have caused me trouble.Here's what I typically use for a timeline based preloader in AS3:
 
 this.addEventListener(Event.ENTER_FRAME, loading);
function loading(e:Event):void {
var total:Number = this.stage.loaderInfo.bytesTotal;[code].......
 
I'm really interested in a preloader that loads right across the stage however - regardless of if the stage is resized.I should imagine it'll involve implementing = Math.round(stage.stageWidth); at some point?

View 9 Replies

ActionScript 3.0 :: Stage.stageWidth In Percent Not Pixels?

Feb 18, 2012

I am trying to set masks and other component positions in relation to Stage size.AS3 CS5I trace stage.stageWidth on a 800x600 pixel stage and I get - 100My stage will scale within a Director piece.Is this a bug? Modal condition? Releated to scaling??

View 7 Replies

Flash :: Not Getting Stage.stageWidth And StageHeight On Firefox 3.5?

May 31, 2010

I'm having issue regarding the display when using Firefox 3.5 on MAC, I can see my menu and the display is correct. The menu just position above what it supposed to be positioned. It works fine with Safari on MACOSX.My flash size is: 1440x750It looks like Firefox can't recognize stage.StageWidth and stage.StageHeight. It returns 0.Some suggest implementing was to pass in the actual width and height of movie via FlashVars. The movie uses these instead of stage.stageWidth and stage.stageHeightDoes anyone have an example of code of how to fix that issue??

public function Main()
{
addEventListener(Event.ADDED_TO_STAGE, handleOnStage, false, 0, true);

[code]....

View 1 Replies

ActionScript 3.0 :: Loaded Swf Accessing Stage.stageWidth?

Sep 19, 2009

The old loaded swf issue. How can I keep the dimensions of the loaded SWF to that of its FLA, and not to the new stage where it is loading? I know there is only one stage, so i just have to hard-code this into the loaded SWF right?

View 9 Replies

ActionScript 3.0 :: Call Stage.stageWidth From Class?

Mar 29, 2009

I made a class to create and handle a google map in my swf and everything works very well. But I want to make my layout completely liquid. To acomplish this, I need to call the stage from the class... But it doesnt seem to be so easy.

the code is bellow:

[Code]....

View 3 Replies

Flash :: How To Fix Stage.stageWidth And StageHeight To Be Recognized On Firefox 3.5

Jun 3, 2010

Working on personal full flash site and I can't really figure out how to make MC's position on Stage aligned on Firefox browser. Everything goes fine using Safari.

I have tried a method of set a timer every time it goes off (every 200 ms or so) it checks to see if stage.stageWidth > 0. If that is the case, do stop the timer and start resize on stage. However it's still not working on Firefox of MAC. :(

In my HTML code:

<link href="css/site.css" rel="stylesheet" type="text/css" />

Test Site

<script type="text/javascript">
var swf = new SWFObject("main.swf", "mymovie", "100%", "100%", "10", "#000000");
swf.addParam("allowScriptAccess", "always");

[Code]....

View 1 Replies

ActionScript 3.0 :: Referring To Stage.stageWidth From Inside A Class?

Mar 17, 2009

I am building a simple ToolTip-Class. In case the cursor gets to close to the stage's border's I'd like it to flip accordingly, so it won't get cropped.

For this I'd like to compare the stage width and my mouseX and then scale and wove things accordingly.

However when I try to get stage.stageWidth from inside my package it will return null.

View 4 Replies

ActionScript 3.0 :: Tweening MC In From Side To A Length Of Stage.stageWidth - (set Amount)

Jul 19, 2010

I'm after a way to implement a similar style of navigation as the blue strip that enters from the right hand side of the stage on this website:
 
[URL]
 
I'm fairly sure it will revolve around the use of a stage.stageWidth listener on an mc and then subtracting a certain amount to ensure it doesn't span the entire width..

View 2 Replies

Actionscript 3 :: Why Does Stage.stageWidth In Flash Builder 4.6 Using Flex On Android Not Work

Jan 11, 2012

I am creating a android app using adobe air (flex sdk 4.6.0) and i am trying to find out what the width of the phone screen is in pixels. So I am fallowing the tutorial here but when ever i copy the code into my project and click run it always gives me this error "TypeError: Error #1009: Cannot access a property or method of a null object reference." and goes to the line that has stage.stageWidth I have also tried stage.width but it does the same thing. So does stage.stageWidth no longer work or how do you tell the screen size of the tablet or phone? Was it replaced with something else for phones? I am trying to get the information so i can center images in the center of the screen using action script.[code]

View 1 Replies

Actionscript 3 :: Does The Value Of Stage.stageWidth Change As Per The Screen-resolution, Monitor-size, Browser Etc

Mar 12, 2012

Does the value of Stage.stageWidth or Stage.stageHeight change as per the screen-resolution, monitor-size, browser etc ?

View 2 Replies

ActionScript 3.0 :: Referencing A SWF Playing As A Child Of A MC?

Jun 7, 2010

OK. I have an empty MC sittin on the stage named "M1_mc".

In the first frame I have:

Code:
var movieOne:Loader = new Loader();
M1_mc.addChild(movieOne);
movieOne.load(new URLRequest("movie1.swf"));

At this point, the external swf is playing.

How do I control the child SWF playing? Let's say i wanted to stop() or gotoAndPlay(x) within its timeline?

View 1 Replies

ActionScript 3.0 :: Referencing A Child's Method

Nov 6, 2008

I'm trying to make a small card simulation that creates a pile of cards, and when I click on the deck it flips the top card over and moves it to another pile. Clicking on the other pile flips it back. I'm using Flash CS3 so can't use Flash 10's 3D abilities. So far, I'v created a Card class (extending sprite) which draws 2 rectangles (for the front and back faces), and contains a public method flipTo(). which when called starts a tween which moves the card and flips it (by adjusting it's scaleX value to negative, and when scaleX = 0 toggling the visibility of the card's faces).

This works fine, and so I have a for loop that creates 10 instances of the Card class on top of each other (and within a sprite container called rightPile), giving me my pile. I've attached an event listener to the pile, so when I click it, it performs the onRightClicked function, which calls the top card's flipTo() method. So when I click on the pile, the top card flips. However, when I click again, the same card flips again, and I can't figure out how to make the next card flip. I've tried keeping track of the index of the current card, and using rightPile.getChildAt(currentCard).flipTo(), but I get the following error...

[Code]...

View 5 Replies

ActionScript 3.0 :: Referencing Parent MC From Child?

Mar 9, 2012

Each of these children has an index value assign to it for the purpose of relating to an XML file, but that's beside the point. Those children have other children eventListeners that call a tween function. That tween function wants to tween the first child.First question: what is the proper syntax for referencing the parent and getting that index value? Does this work, with currentTarget being the child that called the function:var something = e.currentTarget.parent.index;If not, how can I get that index value?Second question: In order to determine which of the first children the tween is applied to, I could write a conditional that checks the index value and tweens based on that. Is there an easier way to do this? And what conditional would work best? I'm thinking if() else() but I'm relatively new to as3 so if there's something more efficient I'd love to hear it

View 2 Replies

ActionScript 3.0 :: Referencing A Frame On A Child From The Parent?

Nov 20, 2009

I have a frame that I want to display but the function that calls it exists on the parentHow do I call a frame that exists within a child movieclip from its parent?Here is my code. It is basically for a restart button.Here is the parent function.

Code:
function restart(event:Event)
{

[code].....

View 3 Replies

ActionScript 3.0 :: Referencing The Child Of A Referenced Object?

May 23, 2011

Right now, I create the world class first, from my main timeline. This is placed as a display object, and it contains many other display objects, most notably the level Holder, which holds all foreground pieces.After creating the world class, I create the camera class from my main timeline, and pass it the instance of the world class as an argument. What I'm trying to do in the camera's code, is create DisplayObject variables for the levelholder (and several other children of world) and set it equal to world.lvlHolder, like so

Code:
public function Camera(input:DisplayObject)
{

[code].....

View 9 Replies

Actionscript 3 :: Cross-referencing Two XML Child Nodes?

Nov 24, 2009

I am building a mini language translator out of XML nodes and Actionscript 3.I have my XML ready. It contains a series of nodes with two children in them. Here is a sample:

<translations>
<entry>
<english>man</english>

[code].....

View 5 Replies







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