ActionScript 3.0 :: Accessing Variables Of An Event Target

Jun 15, 2009

I have an instance of a movie clip called dirt I assigned a variable to dirt called dirt.val I also added an event listener to dirt that calls a function In the function I want to access the dirt.val property, but evt.target.val doesn't work.

View 3 Replies


Similar Posts:


ActionScript 3.0 :: Accessing Event Target And Other Class Instances?

Nov 6, 2009

I have mutliple instances on the stage of a custom ThumbNail class. As you click on a particular instance an associated enlarged external image will load. As this is happening I want to make sure that the ThumbNail class animations are inactive for all instances.

I was thinking of using a Boolean variable that would get set right before the image is loading. Using event.currentTarget should help with the instance that was clicked but how do I gain access to the instances that were not clicked?

View 0 Replies

Professional :: Event.target.data & URLLoaderDataFormat.VARIABLES?

Nov 17, 2010

i wrote an as3 and a simple php page.
 
whenever i use : URLLoaderDataFormat.TEXT i get all the content of the php file.
 
when i use the VARIABLES , i get this:

[Code]...

View 3 Replies

ActionScript 3.0 :: Access Event.target Outside Event Listener Method

May 13, 2010

how can i access event.target outside event listener method.say for example

my_mc.addEventListener(MouseEvent.CLICK, onC);
function onC(e:MouseEvent):void
{
var m:MovieClip = e.target as MovieClip;
}
trace(m.totalframes);/// not working

now what if i want to get totalframe property of m instance, in short for every movieClip clicked.

View 11 Replies

ActionScript 3.0 :: Add Event Listener On Parent For Event.target = Child?

Jul 30, 2009

I have these buttons in a movie clip and I would like to have only one event listener for the parent, using event.target to point to the children. I have also tried event.currentTarget, and it didn't work.here is the code that works:

test01.abtn.addEventListener(MouseEvent.ROLL_OVER, mouseHandler);
test01.bbtn.addEventListener(MouseEvent.ROLL_OVER, mouseHandler);
test01.cbtn.addEventListener(MouseEvent.ROLL_OVER, mouseHandler);[code]....

It is only targeting the movie clip, not the buttons inside the movie clip.

View 4 Replies

ActionScript 3.0 :: Difference Between Event.target & Event.currentTarget?

May 4, 2010

i'm new to AS3. Couldn't understand what some of the explanations out there are getting at, so i decided to post it here. In the code example below, what does event.target & event.currentTarget point to?

[Code]...

View 5 Replies

ActionScript 3.0 :: Event.target Or Event.currentTarget?

Jul 11, 2011

I have a Flex 4 List component which I have tied a click event to. In my event, my assignment of the source file paths works just fine --> my larger image displays just fine when a thumbnail click happens. My problem comes when trying to attach elements of the dataProvider to text inputs on another panel. Actionscript is throwing an error. Can someone point me in the right direction??

[Code]...

View 6 Replies

ActionScript 3.0 :: Mouse Event And Event Target

Nov 26, 2009

i have these 2 functions and both are the same:

as you can see disabledAction receives e.target as a paremeter from another function (click function actually).

is there a way to somehow call disabledAction from rollOverHandler ? (so that the code doesnt repeat)

Code:
function disabledAction(target:MovieClip):void {
var txt:TextField = Finder.findTextfield( target as MovieClip ) as TextField;
if (txt) {

[Code].....

View 1 Replies

Using Variables To Target An Array?

Jun 1, 2011

Its easier explained if I just write down the code:

function loadMc(frame:Number){
aNum = "array"+frame;
array1 = ["mcname", "identifier", "200"];

[code].....

View 1 Replies

ActionScript 2.0 :: Using Variables To Target Mc?

Feb 8, 2011

I am building a gallery that creates movieclips dynamically within another dynamically created movieclip. I tried to target those movieclips using variables the following way:

_root.mc_holder[parent_mc][child_mc].onRelease=function(){
//whatever
}

but it won't work. I have trace(_root.mc[variable1][variable2]) and it returns the right path, so why is the onRelease not working?

View 4 Replies

ActionScript 2.0 :: GetURL() Dynamic Variables As Url Target?

Mar 18, 2010

Here's my code:

Code:
// Set the position and nodecount variable here
var position = 50;

[code]....

View 6 Replies

Actionscript 3 :: Get Name Value Of Event Target?

Apr 16, 2011

I'm implementing a text display area inside an app that displays selected text when the user mouses over one of four elements. Rather than creating a handler function for each element, I would like to get the name of the instance that is calling the handler in order to implement a switch statement. I've tried two ways, but both aren't working:

//install event handlers
initialText.addEventListener(MouseEvent.MOUSE_OVER, mouseOverHandler);
timeText.addEventListener(MouseEvent.MOUSE_OVER, mouseOverHandler);
withdrawalText.addEventListener(MouseEvent.MOUSE_OVER, mouseOverHandler);

[Code]....

Both of those return undefined for the variable name. However, in the debugger, I can trace the event values through currentTarget.name, and that shows the instance firing the handler function, whether it be withdrawalText, initialText or timeText. So how can I apply the name value to a variable in order to determine which text block to display?

View 1 Replies

ActionScript 3.0 :: What's Going On With Event.target ?

Nov 3, 2009

I have a URLLoader and a Loader triggering the same function. If event.target is traced by this function it outputs [object URLLoader] or [object LoaderInfo].However, the if statements don't seem to know what the event is and won't output anything even though it traces fine in the first trace statment. What is going on here?

ActionScript Code:
xmlLoader.addEventListener(ProgressEvent.PROGRESS, preLoader);
photoLoader.contentLoaderInfo.addEventListener(ProgressEvent.PROGRESS, preLoader);[code]............

View 2 Replies

ActionScript 1/2 :: Accessing Variables From One .swf From Another .swf?

Sep 14, 2009

I have one .swf file inside a second .swf file. How do I have one .swf access variables from the second?

View 3 Replies

AS3 :: Flash - Accessing PHP Variables Using Without Using OO?

Apr 21, 2011

I have the following PHP file with a variable I am trying to access to place in a dynamic text box on my flash stage.

PHP code:

$returnVars = array();
$returnVars['username'] = "test";
$returnString = http_build_query($returnVars);
//send variables back to Flash

[code].....

The code was adapted from a tutorial using a class. However I do not get on with classes so wont be using any.

View 2 Replies

AS3 :: Accessing Variables Between 'movieclips'

Jun 16, 2008

I have finally started with AS3 and flip-'eck its a different animal that AS2

I have a swf called login.swf and in it have declared the variables var total:uint=0; and loginState:Boolean=false

All my scripts for logging in sending/receiving variable from/to server scripts are all working!

So... when a user supplies a correct password another swf (userLogged.swf) is loaded (note: in AS3 this process is seriously different than in AS2) swf dont seem to be loaded 'into' another movieclip anymore... and this leads me to the puzzle!

How do I access variables declared in the project.swf, from within the userLogged.swf!

the old AS2 way = trace (_root.loginState);

or trace (_root.project.loginState)!

I am stumped by this new approach of AS3 of loading in other swf files. The _root. options is no longer available in AS3 (that much I've descovered, some tuts say use root. but I cannot get that to work)

trace (root.loginState)
or

var userLoggedIn=root.loginState

gives me the error

1119: Access of possibly undefined property loginStatus through a reference with static type flash.displayisplayObject.

when I try to publish the userLogged.swf

View 4 Replies

How To Prevent Wrong Event.target

Dec 1, 2010

Now, when I click on the button in the area where the movieclip is it will register this movieclip as event.target. I would like to make the button the event.target regardless where I click and prevent flash from registering the movieclip inside the button as the target.

View 3 Replies

ActionScript 3.0 :: No Event.target Available On FocusOut

Mar 4, 2010

I searched the forum first to find similarities but I couldn't find one. Sorry if this is a double however. If you try to compare a widget's instance through "event.target" after it has raised a "focusOut" event, then you won't get the actual instance.

[Code]....

View 2 Replies

ActionScript 3.0 :: Remove Event.target?

Mar 11, 2010

My parent class adds bonus_mc It then adds an event listener to bonus_mc to listen for a custom event When the custom event is dispatched I want the parent_mc to remove event.target. But it wont, it's says 1118: Implicit coercion of a value with static type Object to a possibly unrelated type flash.display: DisplayObject.

View 3 Replies

ActionScript 3.0 :: Seeing Event.target Of TweenEvent?

Dec 29, 2010

The logic of the code is as follows (pseudo):
 
function X {
switch
1) tween1 -> on tween finish launch onTweenFinish();
2) tween2 -> on tween finish launch onTweenFinish();

[Code]....
 
results in: ReferenceError: Error #1069: Property name not found on fl.transitions.Tween and there is no default value.
 
What I want is to process all three tweens in a single function, but I need to know which tween it was. It is of course possible to make three separate functions, one for each tween, but that is just not proper.

View 3 Replies

ActionScript 3.0 :: Event.target Movieclip?

Jan 26, 2012

I have a movieclip named button1 that contains a dynamic text named txt in it.My problem is that if i try

if(event.target==button1)
{
}

[code]....

View 1 Replies

ActionScript 3.0 :: Simulate The Event TARGET?

Jan 27, 2009

Is it possible to simulate the event TARGET ?

dispatchEvent(new Event("doSomething"));

I want to simulate a click on a specific item of my menu.

View 9 Replies

ActionScript 3.0 :: Cant AddChild The Event.target?

Jan 29, 2009

i add eventlistener(MouseEvent.MOUSE_OVER) to some movieclip. but when i write: addChild(event.target) it doesnt work.

More info: i have several rectangles on the stage. when movie starts, they all get alpha 0.3, when you mouse over any of them they get alpha 1 with tween. But i made it so that, rectangles are located over the each other. and i want to make it so, that when you mouse over any rectangle it comes to front, but it doesnt work with addChild(event.target).To try it at your own, just create 3 different sized boxes and give then instance names: square_mc, square2_mc, square3_mc and copy+paste this code.

[Code]...

View 3 Replies

ActionScript 3.0 :: Event.target With Methods?

Oct 18, 2009

I am searching for a way to use one eventlistener with multiple buttons that bassically behave the same way.It works with event.target.(any movieclip property here, e.g. alpha).

[Code]...

View 2 Replies

ActionScript 3.0 :: Get Xml File Name From Event.target?

Nov 16, 2009

var urlString1:String="TestDrive/z05483205.xml";
var url1:URLRequest=new URLRequest(urlString1);
loader1=new URLLoader(url1);
loader1.addEventListener(Event.COMPLETE, test);
[Code]....

I expect to see this z05483205.xml

View 1 Replies

ActionScript 3.0 :: Change An Event Target's Name?

Mar 22, 2009

Can I change an event target's name? or it's an only-read property? I've been googling it but to no avail... For example, say this is my button code:

[Code]...

if trace the event target's name, you get buttonOne. But what I need to do is have the event's target's name to become buttonOne1. because I already have a button with the instance name. That's my setup, not the way I would do it OF COURSE, but this is the way the unique file is setup for my aunt, to have two set of buttons that calls the same image...(not the thumbnail issue I had before)... so the Question: is there a way to add a letter or remove a letter from the event target's name? You know how you can add a letter to the beginning of an array like buttonsArray.unshift(newButton)....can you do the same thing with an event.target.name?

View 3 Replies

ActionScript 3.0 :: Make The Target Of The Event?

Jul 10, 2009

I made this file, test1.fla where a movieclip named mc1 contains two other mcs. Then I wrote some simple code to make the target of the event (in this case a mouse event) shrink a little.

Here's the code I've used:

Code:
mc1.addEventListener(MouseEvent.MOUSE_OVER, onDown);
mc1.addEventListener(MouseEvent.MOUSE_OUT, onUp);
function onDown(evt:MouseEvent):void {

[Code]....

When I test this movie, only the selected mc that I hover is the one that shrinks, the other does not shrink (I am talking about those guys inside mc1). However I have done a similar file called test2.fla in which I replaced the nested mc's with shapes, the code is exactly the same, but in this case it's mc1 that shrinks, I mean no matter what shape I hover with mouse, both shrink.

I know (think so) that this is because of event propagation, but why do these two files react in a different manner? Is it becase the mc's inside mc1 can also be a display object container, but shapes cannot?

View 3 Replies

ActionScript 3.0 :: Difference Between Event.target And This?

Oct 22, 2009

i am a little new to this ActionScript thing, and I find problem trying to understand this one thing:When I call an event listener function, then sometimes we use

View 1 Replies

ActionScript 3.0 :: Event Target In XML Menu?

Jan 13, 2011

I have a Image XML menu that works well, but with a litle problem with target in TweenMax. I will post only the code that is relevant to resolve the problem, I hope .

I have a MC in library, and inside I have 3 movie clips, img_mc, bg_mc (this is a background for text) and title_mc (inside this mc I have a textfield named title-txt).

I create a for loop for the MC, and I use e.currentTarget in my tween animations.

When I hovered the title_mc is suposed to scale the background, but because bg_mc are in back of the text, the hover don't works. I do not know how to target the title_mc for on MOUSE:OVER scale the bg_mc.

Important Pieces of Code:

[Code]....

This Last piece of code don't works because title_mc is over bg_mc.

If I put in event MC.container_mc.title_mc.addEventListener(MouseEvent.MOUSE_OUT, out_bg); the Text will scale too, and I don't want this...

View 1 Replies

ActionScript 3.0 :: Accessing Parent's Variables

Mar 8, 2010

I'm trying to access the AchievementScreen's textfield from a medal object. Point being to have a mouseover event of the medal, change the content of the textfield shown. I tried a trace first: trace(this.parent.parent.parent.parent.textLineCon tainer); 1119: Access of possibly undefined property textLineContainer through a reference with static type flash.displayisplayObjectContainer. trace(this.parent.parent.parent.parent) shows me it is a AchievementScreen object. textLineContainer is the instance name of the MC nesting the textfield (I actually drew the achievement screen then exported it to actionscript.

[Code]....

View 11 Replies







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