ActionScript 3.0 :: Alter .alpha Property Of Square From Within Oval?

Feb 14, 2011

Attempting to move from AS2 to AS3 and become OOPed! I've come to a sudden halt over the last few days with some basics.I will use a simply example to describe my query.3 movieclips, a square, circle and oval, drawn in Flash, dragged to the stage and given instance names of square, circle and oval! The square and circle sit on the main timeline, the oval movieclip sits within the circle movieclip. How can I alter the .alpha property of the square from within the oval?Each movieclip has its own class .as file (and linked to the instance on stage) but I have not been able to generate a path in the ovals AS3 class script to access outside it and up to the square on the main timeline to change the squares .alpha property.

View 4 Replies


Similar Posts:


Actionscript 3 :: Getting The Value Of A Property Within Another Property Via Square Bracket Notation

Nov 29, 2011

I have a class Inhabitant with a property skin which is of type DisplayObject.

Within Inhabitant I need to access the x and y properties of skin using this method:

this["someProperty"];
Rather than:
this.someProperty;

This is fine with properties defined within Inhabitant but I'm not sure how I could do this for a property of skin. This obviously doesn't work but it might give you an idea of what I'm trying to do:

this["skin.x"];

The reason behind requiring this notation is that I have a function which I can parse a String though that will represent a property:

public function addTokenable(property:String):void
{
if(!isTokenable(property))
_tokenables[property] = true;
}

And then a related getter that will return a representation of this instance of Inhabitant as a String:

public function get token():String
{
_token = "class:" + getQualifiedClassName(this).split("::").join(".");

[Code]....

View 1 Replies

ActionScript 2.0 :: Alpha Out Square When Clicked On

Aug 13, 2009

simple code, to alpha out the square when clicked on. However, the release function keep getting called when the flash is started causes all the square alpha out.[code]

View 1 Replies

Media Server :: Alter The VideoReliability Property Of RTMFP Streams Published By The FMS?

Mar 27, 2012

It's easy to do on publishing clients, just use:http:[url]....How do we do it on the FMS? It doesn't appear to be possible according to these docs: http:[url]...What is the default for the FMS for the audioReliable, dataReliable and videoReliable properties?

View 2 Replies

Professional :: Use The Color Effects And Blending Options Of MovieClip Square To Make Layer 1 Alpha

Aug 11, 2011

Inside movieClip container, there are colored buttons on layer1 and on layer2 there is movieClip square which covers the buttons. I want to use the color efffects and blending options of movieClip square to make layer 1 alpha. There are some blending options called alpha, difference, lighten and substract but Im not getting the right combinations. I want to make layer1 alpha only by using layer2.

View 1 Replies

ActionScript 2.0 :: When Creating A Dynamic Square With The Api - Won't Drawing Api Square Object

Dec 2, 2010

when creating a dynamic square with the api. 400 by 400. I am not sure why it wont draw the object

[Code]...

View 2 Replies

ActionScript 2.0 :: Have An Enemy Square That Chases The Player Square?

Jan 15, 2010

I have this game, and some levels have a moving square as the player, you move the square with your arrow keys.... I want to have an enemy square that chases the player square.... They only chased mario when you didn't look at them? Kinda like that...... but in this regards:

I only want the enemy square to chase the player square when the player square moves.... soo say the player square moves 5 pixels per movement (know how to do all that), I want the enemy square to move when the player square moves..... towards the player square at like 7 pixels per movement..... so eventually you won't be able to avoid the enemy square....

View 4 Replies

ActionScript 3.0 :: When I Draw A Square Using The Colortransform.color Property The Color Always In Gray Scale?

Feb 18, 2009

i want to change a colors tint and store that color for later use to apply to dynamically created sprites, for some reason the code changes my place graphic as expect but when i draw a square using the Colortransform.color property the color always in gray scale?

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

View 2 Replies

Actionscript 3.0 :: Papervision 2.0 And Alpha Property

Jan 4, 2008

Do you know how we can modify alpha parameters on Plane object with the new release of Papervision (2.0 alpha)? Previously, I was doing something like that : Code: Select allplane.containers.alpha = 0.5; But containers property disappeared from Plane object in version 2.0; I browsed every property of the new Plane object and couldn't figure it out.

View 9 Replies

ActionScript 3.0 :: Alpha Property For Dynamic Text

Jan 20, 2009

How to apply alpha rpoperty for dynamic text.

View 1 Replies

ActionScript 3.0 :: Papervision Alpha Property Does Not Work

Apr 7, 2011

I have a papervision project and this problem has kept me from going for days. I have Text3D object in my project and I have to reduce and increase the alpha property of this object , and I do it by changing the alpha property of the ViewportLayer that contains this Object. everything works fine but when I change it's text property due to some circumstances I can't work with it's alpha property anymore.

I change it's text like this:
var text1:String = "second string";
mytext3D.text = text1;

I don't (and I can't) use "useOwnContainer" and I use a defined ViewportLayer for this Text3D which I've defined like this:
var textLayer1:ViewportLayer = viewport.getChildLayer(mytext3D);
And I change the alpha property of this "textLayer1" in order to change the alpha of my Text3D object. Everything works fine till I change the text property and after that when I change the alpha of my "textLayer1" nothing happens!

View 2 Replies

Actionscript 3.0 :: Adjusting Alpha Property Of Textfield?

Jul 29, 2011

I've seen a few posts about this, but nothing that explains this issue concretely. Can anyone tell me how to change the alpha of a textfield in Actionscript 3?, and more importantly a textfield that uses embedded text fonts? I've heard changing blendmode.

I know how to do this in Flash IDE, but not purely in code.

View 8 Replies

ActionScript 2.0 :: Smoother Increment On Alpha Property?

Apr 29, 2004

I normally spend hours battling with the simpliest AS and eventually work it out.I've trying to run the following AS applied to a button:

on (rollOver) {
i = getProperty(this.button01, _alpha);
while (i<100) {
if (i>100) {

[code]....

The action seems to work, however the increment is instant and I want to achieve a smoother transition.

View 10 Replies

ActionScript 3.0 :: Saving Alpha Property When Changing Frames

Mar 22, 2010

i have this little display and when you click on certain items their alpha changes to 0.1, this worked fine until i added another frame with a different display on another frame. so now when you change frames and go to the new display then go back to the old display on frame 1 the alpha properties are all reset back to 1. So to fix this i thought i could simply add all the movieclips with an alpha less than one to an array when i left the frame then when you come back to the frame you could reset all the moviclips in that array back to having an alpha of 0.1. But this doesnt seem to work. here is the code i used.[code]But this code doesnt seem to work, the strange thing is even when i add some trace statements they tell me that the alpha does in fact equal 0.1 but visibally they haven't changed.

View 2 Replies

ActionScript 3.0 :: Alpha Property On Dynamic Text Not Working?

Sep 25, 2008

I have generated several TextFields dynamically through a for loop. I would like all the text fields to have their alpha set to 0 so that each field can eventually fade in.

When I apply the alpha property by setting it to 0, or even .5 the text appears to still be at an alpha of 1. Does anyone know how to make the text appear with a low to 0 alpha?

I have attached the code from the function which runs the for loop to generate the text fields. Please not that the value of the text fields are stored in a global array, and the text format objects are also global and are declared in the main body of the class.

View 7 Replies

ActionScript 3.0 :: Changing Alpha Of Object - How To Define Property

Aug 15, 2009

I am very new to Flash and I have the following script:
mouseInterval = setInterval(changeAlpha,10);
function changeAlpha(){ fader_mc.alpha = Math.round(root.mouseX/550*100) }
This is simply to change the Alpha of my object as I change the X value of the mouse cursor. I keep getting the following error message:
1120: Access of undefined property mouseInterval

View 5 Replies

ActionScript 3.0 :: Change Alpha Property Of Button [from Post]?

Sep 7, 2006

I am trying to change the alpha property of a button using actionscript 3.I dont want to create external AS file. Can you guide me on this?

Code:
circle_mc.addEventListener(MouseEvent.CLICK, clickHandler);
function clickHandler(event:MouseEvent):void {

[code]........

View 2 Replies

ActionScript 2.0 :: Set Alpha Property In Flash Mx Without Using The Setproperty Action?

Jul 4, 2003

how can i set alpha property in flash mx without using the setproperty action. when i use setproperty action to change alpha value ,the graphic doesn't animate.

View 3 Replies

ActionScript 2.0 :: MovieClip Alpha Property Of Dynamic Masks

Oct 15, 2009

I am having problems with the _alpha property of dynamic masks. For some reason they don't seem to accept it. I have a holder mc that I use as a mask and the holder is full of dynamic mcs for which I would like to set alpha properties.

My code is:
_root.createEmptyMovieClip('holder',_root.getNextHighestDepth());
function init() {
for (i=0; i<100; i++) {
holder.attachMovie("msk","msk"+i,i,{_xscale:0, _yscale:0});
_root.holder['msk'+i]._x = (550*Math.random());
_root.holder['msk'+i]._y = (380*Math.random());

View 3 Replies

ActionScript 2.0 :: Can't Access Alpha Property Of A Movie Clip

Mar 1, 2005

I can't seem to access the alpha property of a movie clip. I can change it's y x position but not the alpha....

This works great: loader2.lettercontainer.letter_mc1._y=50;

But this doesn't do anything: loader2.lettercontainer.letter_mc1._alpha=50;

The movieclip "letter_mc1" contains a createTextField with one letter in it. I'm completely lost why this isn't working....

View 7 Replies

ActionScript 2.0 :: When A Button Is Pressed It Will Move To The Specified Location And Then It's Alpha Property Will Be Zero?

Mar 20, 2009

Basically I have a MC called "__root.T1" that when a button is pressed it will move to the specified location and then it's alpha property will be zero. the alpha property to the functionstartEasing(_root.T1, 50.4, 161.9, 10);

function startEasing(object, endX, endY, frames) {
yourTween = new mx.transitions.Tween(object, "_x", mx.transitions.easing.Regular.easeInOut, object._x, endX, frames);

[code].....

View 2 Replies

ActionScript 3.0 :: Alpha Property Causing Play() To Stop Working

Jan 21, 2009

I have a problem that is stopping my mc.play() stopping when I try to set the .alpha property of an object. I have attached the code and have rem // out the alpha lines. can send you the fla to see the problem occuring.

View 4 Replies

ActionScript 3.0 :: Error #1056: Cannot Create Property Alpha On Builtin?

Oct 29, 2009

I am trying to tween some text and keep getting the error.

ReferenceError: Error #1056: Cannot create property alpha on builtin.as$0.MethodClosure.[code].....

View 4 Replies

IDE :: Oval / Rectangle Tool And Oval / Rectangle Primitive Tool

Nov 14, 2010

I do know how to use the oval / rectangle and oval / rectangle primitive tools in the tool bar and find them quite useful, but one thing I find confusing is. A oval / rectangle primitive object can be edited later but the oval / rectangle can't. So the point is,how do we use them properly ? when to use ? Why does Adobe Flash still keep the oval / rectangle tool in their product instead of removing them with the oval / rectangle primitive tool ?

View 2 Replies

ActionScript 3.0 :: Error #1069: Property Alpha Not Found On String And There Is No Default Value

May 4, 2010

I have two movieclip in stage named home,home_mc . I want when mouseover on "home" it will change some property of "home_mc".But dont know how to write this code.I am trying like this......

import caurina.transitions.*;
home.addEventListener(MouseEvent.ROLL_OVER,over)
//home.addEventListener(MouseEvent.ROLL_OUT,out)

[code]....

but it is throwing--- Error #1069: Property alpha not found on String and there is no default value.

View 1 Replies

ActionScript 3.0 :: Error #1069: Property Alpha Not Found On String And There Is No Default Value?

May 4, 2010

I have two movieclips in stage named home,home_mc . I want when mouseover on "home" it will change some property of "home_mc".But dont know how to write this code.I am trying like this......

import caurina.transitions.*;
home.addEventListener(MouseEvent.ROLL_OVER,over)
//home.addEventListener(MouseEvent.ROLL_OUT,out)[code]....

but it is throwing--- Error #1069: Property alpha not found on String and there is no default value.

View 1 Replies

Actionscript 3 :: Unmasking A Oval Like A Clock?

Jan 4, 2011

i have an circle shape, and what i would like to achieve is that it gets masked and thenon enter frame it zhould get unmasked like a clock, so you get to see from 0 to 1, then from 0 to 2, 0 to 3, etc, i know it has to be done with radiants etc but math isnt really my cup of tea.

View 1 Replies

Possible To Tween Oval Primitive From Within Flash?

Jan 14, 2011

Is there a way to tween the oval primitive from within flash? I would like to do a tween where I move the start angle, but I can't seem to be able to tween the oval. Is this possible?

View 1 Replies

ActionScript 2.0 :: Random Movement Within An Oval?

May 28, 2005

I am looking at the Kirupa code for random movement (Random movement in Flash MX), and I am trying to figure out if I can limit the movement to the shape of an oval.

I want to do an overhead shot of a bunch of little people swiming in an oval swimming pool.

View 7 Replies

Professional :: Oval Buttons In Library Look Different On Stage

Jan 27, 2011

I'm using Flash CS5's common library to put some buttons on the stage. I've gone into the classic buttons folder and dragged and dropped a blue oval button onto the stage, and it appears in the library, but the button looks totally different to the one in the library. Where the one in the library has shading and a glow effect, the one on stage looks flat, with just a primary colour and no shading or glow. This occurs whether I drag straight from the common library tab to the stage, or from the library panel on the right to the stage.

View 2 Replies







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