Actionscript 3 :: Properties - BackgroundColor Property For Stage?

Feb 24, 2011

i can set the stage's background color, etc., using a SWF metadata tag:

[SWF(width="1024", height="600", frameRate="60", backgroundColor="#000000")]

or if i'm using Flash Professional, i can simply set these properties for the document in the UI.

while the Stage class offers the ability to set a frameRate and override width and height thru properties in actionscript, why is it not possible to set the background color of the stage the same way?

Stage doesn't have a property (public or otherwise) for background color. can anyone explain why that is? it seems strange to me but i'm assuming there is a good reason rather than this simply being a oversight.

View 1 Replies


Similar Posts:


ActionScript 2.0 :: Change The Backgroundcolor Of The Stage?

Jan 18, 2005

I dont know how to change the backgroundcolor of the stage.

Shouldnt:

_root.backgroundColor = "0x00ff00";

..normally do the trick?

View 1 Replies

ActionScript 2.0 :: Change Backgroundcolor Of Stage?

Jan 18, 2005

Just realized I don't know how to change the backgroundcolor of the stage.

View 1 Replies

Properties :: Flash HTTPService : Reading The Connection Data From Property File?

Dec 19, 2011

i have my HTTPService, it looks like this :

<s:HTTPService
id="setCustomerInstalledPackageService"
url="http://localhost:8090/myapp/servletName"

[code]......

View 1 Replies

ActionScript 3.0 :: Cs4 Using Root Properties In A Class - Error 1119: Access Of Possibly Undefined Property Gear_num Through A Reference?

Jul 14, 2009

i have a class .as file which extends MovieClip. inside the .as file there is a public function and when called upon it needs to change the value of a property that is on the maintimeline


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

problem is this error 1119: Access of possibly undefined property gear_num through a reference with static type flash.displayisplayObjectContainer.

View 5 Replies

ActionScript 3.0 :: Add To Stage Only Once Initial Changes To Properties Are Done?

May 12, 2010

If I have a textfield instanciated from the document class with a base .string set as for example "4444" and BEFORE adding it to stage, I change the .string value to say "1234", when I test the swf, I can see the 4444 for a very short time changing for the 1234.I didn't change the value after adding to stage so I don't get why the display number is changed after being added to display.How to force it to add to stage (display itself) only once the initial changes to his properties are done?

View 3 Replies

ActionScript 3.0 :: Setting X And Y Properties According To Stage?

Jan 18, 2011

I need to assign a symbol that is added dynamically in a symbol, x and y coordinates (that are from the main timeline).

View 2 Replies

Actionscript 3 :: Set Different Properties On Stage Programmatically?

Mar 20, 2011

I want to set the height, width and backgroundcolor, etc on stage programmatically in a pure AS project. I'm not really sure about how to do that.

I tried to set the height and width like that but it failed..

stage.align = StageAlign.LEFT;
stage.height = 400;
stage.width = 500;

View 2 Replies

IDE :: Cannot Access Stage Properties From As File

Apr 29, 2009

here is my code

Code:
package
{
import flash.events.*
import flash.display.*

[Code]....

does it have to do anything with ADDED_TO_STAGE event?

View 2 Replies

ActionScript 3.0 :: Get Child Properties From Stage?

Nov 14, 2009

I have some code that adds a child using addChild(dragsquare); dragsquare is what I used as the class for a movieclip, mcsquare.

Everytime a child is added to the stage, it is called: ObjectX The "X" increments everytime a new object is added using ++objNum.

E.g:

Object1
Object2
Object3

etc...

When the child is added to the stage, it can be dragged, resized, rotated, etc...

I have used this code so when someone clicks the "save" button it loops through all objects on stage (increasing the last number by 1 to get the next object) and finding their properties. Here is the code I have used.

ActionScript Code:

Code:
save.addEventListener(MouseEvent.MOUSE_UP, saveObjects);
function saveObjects(event:MouseEvent):void {
for (var i:uint=0; i<numChildren-23; i++) {

[Code]....

23 children already exist on stage so I have to minus that number to get whatever is added on stage by the user.

However, scaleX is getting the childs ORIGINAL properties and not its current stage properties (where it has been resized, rotated etc..) and only returns a 1 for scaleX. How would I make it track the properties it has on stage?

View 6 Replies

Flash :: Cannot Access Stage Properties From A Method?

May 12, 2011

I have an object on my stage, called obj.I also have a class called "Physics" which contains a bunch of methods for physics, such as inertia, gravity, and bouncing off walls. In order to do some of these,I need access to the stage.stageWidth and stageHeight properties.My code is as follows:

public function wallBounce(obj)
{
this.stageRef = stageRef[code]...

This is supposed to check if the object's x value is greater than the stageWidth or less than 0. When I run this code it says:

TypeError: Error #1009: Cannot access a property or method of a null object reference.

I am a semi-newbie programmer who is completely self-taught and have no clue what is causing this. I spent a bit googling it, and I think it has something to do with scopes,.

View 1 Replies

Flash - How Can The Swf Access Stage Properties From The Swf That Loaded It

Feb 10, 2012

If I have a swf that's being loaded into other peoples' swfs (which I have no control over) is there any way I can get properties from the stage (such as height, width, fullScreenHeight, etc.) or does this have to be exposed by the loading swf?

View 1 Replies

ActionScript 3.0 :: Accessing Properties Of The Stage From A Class?

Aug 29, 2009

I am trying to access the x and y properties of the stage so I can set an objects' x and y properties to place it on the center of the stage:

this.x=stage.stageWidth/2;
this.y=stage.stageHeight/2;
The call to instantiate the object(*.fla):

[code]......

View 4 Replies

ActionScript 2.0 :: Show Instance Name As In Properties On Stage

Jan 30, 2012

I am using this code to iterate through the contents of a movieclip which contains instances of "alien2" - my alien. I have each alien in a movieclip called squadron1. They all have their own layer and follow a motion path to recreate the attack sequence in Galaga. I can add action script to them by right clicking on them, but when I do this test below I can't call any MovieClip methods on them. It is my intention to add a function to each one via code to make it detect bullets, look for the player etc, but at the moment all I can do is add the code to each one individually on the stage.

Code:
var target;
for(var item in _root){
if(_root[item] instanceof MovieClip ){
target = _root[item];
[Code] .....

View 3 Replies

ActionScript 3.0 :: Accessing Properties From Stage In A Class?

Feb 28, 2012

I am trying to access a property that belongs to the stage, from a class. For example, let's say I add a textfield with an instance name of "magic_txt" on the stage. In the Document Class, I am able to access magic_txt and update the field like so:

magic_txt.text = "Magic Text"

However, since I would like to work in classes, I am having a difficult time figuring out how to access the property "magic_txt.text" from a class. I know I need a reference, but I am unsure how to set this reference.

I am coming from a strong background in Visual Basic, and in Visual Basic, the way to access a form property is to call the form name (dot) object. In actionscript, it doesn't seem to be as simple.

View 9 Replies

ActionScript 3.0 :: Override MovieClip's Parent And Stage Properties?

Jul 10, 2009

is there a way to override a MovieClip's parent and stage properties? In a custom class extending the MovieClip class we can override the get parent() and get stage() methods. But is there a way to do it to existing MovieClip?

I mean I have an external swf content (loaded) and assigned to a movieClip. But now, how can I assign the loaded MovieClip to my custom class, so that it "doesn't see" the parent and stage properties?

Or can I override functions of existing classes? Sth like:

override public function myMovieClip["get parent"]():DisplayObjectContainer
{
...
}

I just need to prevent a loaded MovieClip from having access to the main movie's stage.

View 3 Replies

ActionScript 3 :: How To Access Stage Properties In Custom Class

Jul 26, 2009

How do I access Stage Class properties in Custom Class?
Class:
package {
import Main;
import flash.events.*;
import flash.display.Sprite;
import flash.display.Stage;
public class Run extends Sprite {
[Code] ....

Output:
TypeError: Error #1009: Cannot access a property or method of a null object reference.

View 3 Replies

Actionscript :: Why Aren't 3d Properties Set On The Stage In Flash Cs4 Accessible

Mar 26, 2010

I have made a very simple swf in which I have a MovieClip which I have rotated on the stage. When I try to access this rotationX and rotationY properties of this clip using the constructor of the class assigned to this MovieClip they are coming back as 0 even though they shouldn't be. If I put an on rollover event of the MovieClip and trace out these properties here I get the correct values.

package {
import flash.display.MovieClip;
import flash.events.MouseEvent;

[Code].....

I also get the correct values when I read the values from the stage timeline.

trace ("TEST "+testMC.rotationX+" "+testMC.rotationY); //returns correct value

Is there a specific event I need to be waiting for which will tell me when the 3d properties are available via ActionScript?

View 1 Replies

ActionScript 3.0 :: Program-Wide Function / Stage Properties

Mar 3, 2012

1) In my program, I am wanting to create a function that would take in the height and width of a loader object, compare them to the stage dimensions, and then scale the object in question before it is added to the display list. However, I have several different types of classes that I want to make use of this functionality. So what would be better, to create a NEW class that would have to be created each time a resize needed to occur, and is imported by all needed classes, or just have a function within each already existing object and copy that function to every class's scope that needs it? Would this be resolved by placing the function in question inside of the default package?

2) When accessing stage properties, are they a global or a relative scope? i.e.[code]would those two statements produce the same value regardless of whether they were in the default package or inside of 1300 classes? Or is the stage scope relative to some degree?

View 6 Replies

ActionScript 1/2 :: Set The Backgroundcolor Of A Datagridcolumn

May 11, 2010

Can somebody share an example on how to set the backgroundcolor of a datagridcolumn (dynamically)?

View 3 Replies

ActionScript 3.0 :: How To Set Scrollpane BackgroundColor

Jun 29, 2009

how to set the scrollpane's background color in AS3 with CS4?You can't seem to use _Globals, setStyle,and opaqueBackground doesn't seem to work
effectively.

View 0 Replies

ActionScript 3.0 :: Error #1009 - Stage Properties Access Denied?

May 27, 2011

Class called 'bg' dynamically creates a background that varies depending on the stage width & height.

Code:
package
{

[code]....

View 9 Replies

ActionScript 3.0 :: Setting BackgroundColor Of A TextInput?

Feb 9, 2009

I've already tried a lot, but there was no way I could change the color of my textInput. Adobe Livedocs couldn't help me and there was no working piece of code I could find in other messageboards.

These things haven't work for me:

myTextInput.setStyle("backgroundColor", 0xFFF00);
--
myTextInput.setstyle("backgroundColor", Number(0xFFF00));
--
myTextInput.setstyle("backgroundColor", "#FFF00");

Do I have to do something about the border of the textInput. Or about the "background"-Property (if it still exists for AS3)??

View 9 Replies

ActionScript 3.0 :: Changing List BackgroundColor?

Apr 26, 2009

That's really all I want to do. Why is something like this so complicated? When you go into Component edit mode, you can easily change the highlight colors. Then why make it impossible to change the actual ground color? Why should I have to scour the internet to find complex code just to change the color? Sorry, it's just frustrating.Anyway, if setStyle("backgroundColor", 0xCCCCCC); ... was all I needed to do that would be fine, but that doesn't work.Even if it's not possible, I would accept text rollOverColor, or hover... nothing.I think there should be a drop down color box in the component editing window at the very lest.

View 3 Replies

Css :: Flex 4.5 Application BackgroundColor Won't Go Black

Oct 27, 2011

I have a Flex 4.5 mobile app, I'm trying to set the backgroundColor to black, aka 0x000000 at runtime.It won't go black, in fact, it will go any other color but black.[code]Just as some extra info, I have my original Application backgroundColor #333333 set in a .css file and in the MXML Application node.

View 1 Replies

Actionscript 3.0 :: Possible To Make Listbox BackgroundColor?

Apr 20, 2009

I searched and didn't find quite the right solution. Please bare with me as I am a complete infant with this.Using a component listbox in CS4. I have figured out how to call in formatting to the text by using this:Code: Select allimport fl.managers.StyleManager; var tf:TextFormat = new TextFormat(); at the head, and referring to it below, with:

Code: Select alltf.font = "Arial";
tf.size = 10;
tf.bold = false;

[code]....

View 2 Replies

ActionScript 3.0 :: Set The TextInput Component's BackgroundColor To Transparent?

Jan 11, 2011

I have a textinput component that needs to have a transparent background. I've tried adjusting the alpha to 0% and 25%, the former doesn't display the contents (white font bold sans-serif) and the latter leaves a shaded background. I've also tried the following:

var tf:TextFormat = new TextFormat;  tf.color=0xFFFFFF;  tf.font="Sans-serif"; tf.size=12;  tf.bold=true;  txtlowtemp.setStyle("textFormat",tf);  txtlowtemp.backgroundColor=undefined;  txthitemp.setStyle("textFormat",tf); 

[code].....

View 11 Replies

ActionScript 3.0 :: Set The TextInput Component's BackgroundColor To Transparent

May 12, 2011

I have a textinput component that needs to have a transparent background.  I've tried adjusting the alpha to 0% and 25%, the former doesn't display the contents (white font bold sans-serif) and the latter leaves a shaded background.  I've also tried the following:
 
var tf:TextFormat = new TextFormat;   tf.color=0xFFFFFF;   tf.font="Sans-serif";   tf.size=12;   tf.bold=true;   txtlowtemp.setStyle("textFormat",tf);   txtlowtemp.backgroundColor=undefined;   txthitemp.setStyle("textFormat",tf);   txthitemp.backgroundColor=undefined;
 
However, this gives error 1119 access to possibly undefined property backgroundColor.
 
How can I create a truly transparent background for these components?

View 3 Replies

ActionScript 1/2 :: Get TextField BackgroundColor Returns Number?

Oct 24, 2011

I have a textfield on stage and on RollOver I want to get it's background color?

my code:
this.createEmptyMovieClip("holderSub_mc",mydepth+21029);
this.holderSub_mc.createEmptyMovieClip(["sub1a_mc"], mydepth+15);

[code]........

View 6 Replies

Actionscript 3 :: Change Backgroundcolor On TextArea From External CSS?

Feb 17, 2012

Im trying to change the background color on my textarea from an external css.I can change the color of the buttons so the style sheet is working. But I cant seem to ad the class into the text area.[code]...

View 2 Replies







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