ActionScript 3.0 :: Evt.target.name Only Works Once?
Jul 8, 2010
I have a simple event listener which calls a functions which first uses a switch case statement to determine what evt.target was pressed by name so I can assign info there--presently I just have trace statements--the problem is that it only works once and then I just get instance29 and the switch case evaluates to the default.
Code:
lifering1.addEventListener(MouseEvent.MOUSE_OVER, playSplash,false,0,true);
function playSplash(evt:MouseEvent):void
{
[Code].....
View 21 Replies
Similar Posts:
Apr 13, 2005
this.menu_buttons_mc.menu_01_mc.menu_01_btn.onRele ase = function ()
{
trace ("this.menu_buttons_mc.menu_01_mc.menu_01_btn.onRe lease CALLED");
[code].....
View 3 Replies
May 25, 2003
i have a main-movie with a movieclip called "area", into this movieclip is loaded an external movie.swf
a clip inside this movie.swf has the below script
onClipEvent (enterFrame) {
_level0.area.displayfield = "hello"
[code].....
View 3 Replies
Apr 13, 2005
I used as usual: this.menu_buttons_mc.menu_01_mc.menu_01_btn.onRele ase = function ()
{ trace ("this.menu_buttons_mc.menu_01_mc.menu_01_btn.onRe lease CALLED");}; But problem ist : it works only for one btn. Why? Try click the second flake from above and see AS layer please. I think it would be easy for you but diffic. for me.
View 3 Replies
Jul 27, 2009
I have the code that works for one button to find a cue point but how can I make this work for several buttons and their respective cue points?[code]
View 3 Replies
Aug 21, 2009
I've set up an event listener to check if an image has been loaded. If yes, then change the width and height of it. I achieved this by using .target.loader.content. It works fine on my machine, but things are different, when I upload the swf to the server. the images get loaded, but aren't resized as they were offline. What might be causing this? What changes should I do in the snippet to get it working.This is the function that is called using the eventListenerfunction setImage(evt:Event){ sig_txt.text =evt.currentTarget.content.toString(); var loader:Bitmap = evt.target.loader.content as Bitmap; gallery_mc.addChild(loader); var ratio:Number = loader.width / loader.height; loader.width = 100; loader.height = 100 / ratio; loader.y = total_height; total_height += loader.height + 20
View 11 Replies
Mar 17, 2010
I have the code that works for one button to find a cue point but how can I make this work for several buttons and their respective cue points?
seek-btn2" to find cue 2(named "lou2")
import fl.video.*;
// Video component instance namevar flvControl:FLVPlayback = display;var flvSource:String =
[code].....
View 1 Replies
Sep 29, 2003
On the attached exercise, is it possible to stop further items being dragged onto a target when the target box is full?
View 1 Replies
Apr 11, 2011
I have a movie clip (with instance name rectangle_mc) on the stage. Within this movie clip there are two separation animations on the timeline. The ROLL_OVER animation starts on frame "over" and the MOUSE_OUT animation starts on frame "off." If I roll over the movie clip, the initial animation plays, and when I mouse out the other animation plays to restore it to it's initial state. However, once the rollover animation has played once, it will not play again when I roll over it again, but for some reason the MOUSE_OUT plays every time.
[Code]...
View 1 Replies
Nov 28, 2011
What is the difference between target and currenttarget in flex?What is the difference between Target and Current Target in Flex especially in mouse events.
View 2 Replies
Aug 30, 2010
qi have a movieclip which is added to the stage:
var profileholder:profileHolder=new profileHolder ;
inside of profileholder is another movieclip(infoBtn) that acts as a button.when the mouse is over profileholder i want to do something with infoBtn like:
//profOver is the over state of profileholder
function profOver(e:Event) {
e.target.infoBtn.alpha=1;
}
this doesn't work and brings up this error:ReferenceError: Error #1069: Property infoBtn not found on flash.display.Loader and there is no default value.
at main_fla::MainTimeline/profOver()
i also tried:
function profOver(e:Event) {
var item:profileHolder=e.target as profileHolder;
item.infoBtn.alpha=1;
}
and get this error:TypeError: Error #1009: Cannot access a property or method of a null object reference.
View 1 Replies
Mar 14, 2005
i don't know why this isn't working.i got a button. and when it's pressed, i need it to go and play a frame in a movie clip. i'll test it and then when i click on it, i get this:
Target not found: Target="whoweare" Base="_level0.instance20.instance48.instance49"
this is the code that i am using:
on (press) {
tellTarget ("whoweare") {
gotoAndPlay (51);
}
}
View 14 Replies
Feb 16, 2005
so, i'm making an animated rollover, and i get an output error that says this:
Target not found: Target="_root.icon01" Base="_level0"
i have no idea what the base="_level0" means.
View 1 Replies
May 14, 2009
Through attachMovie I have loaded an mc from the library onto the stage into "holder_mc".
myButton.onRelease = function () {
if (currentWork != "holder_mc.myWork1_mc") {
holder_mc.attachMovie("myWork_mc","myWork1_mc", getNextHighestDepth());
currentWork = "holder_mc.myWork1_mc";
}
}
This works.
However, there are a couple of buttons (mc) inside "myWork1_mc" which skips through a few slides in the myWork1_mc clip that I cannot target. I thought using:
holder_mc.myWork1_mc.buttonName_mc.onRelease = function () {
trace("MC_pressed");
}
... would work. My curser doesn't even change to the hand symbol. How do I target an dymanically loaded MC from the library which is inside an empty holder MC on the stage via attachMovie? What am i missing? Believe me, I have spent hours trying to google it.
Note: at this stage there is no other script on "holder_mc", but there will be at a later date, but I'll cross that bridge when I get to it. Also, the buttons work when I place the MC onto the stage and not use attachMovie.
View 6 Replies
Jun 17, 2009
I have a simple button that goes to a URL when clicked, but it's opening a new window. I want it to target "_self"-- but I'm getting errors. How do I properly target the same window?
[Code]..
View 1 Replies
Jun 14, 2010
Seems like AS3 is more about writing code than AS2.I would normally write the code on the button:
Code:
on(release){
getURL("http://sample.com". "_blank");
}
Instead in AS3 I have to do this for a button action:
Code:
myButton.addEventListener(MouseEvent.CLICK, myButtonFunction);
function myButtonFunction(event: MouseEvent) {
var request:URLRequest = new URLRequest("http://www.sample.com");
navigateToURL(request);
}
How do I add the _blank target function to this AS3 code. I am still trying to get use to this AS3 concept.
View 1 Replies
Jan 10, 2010
I used to use an old school method in AS2 to talk to a movieclip to go to different states like on rollover but how do I do this in AS3 now?
Code:
on (rollOver) {
with (myclip) {
gotoAndStop("on");
}
}
I know that with went out a long time ago but it worked!I know in AS3 to handle a click you have to do this:
Code:
mybtn.addEventListener(MouseEvent.MOUSE_DOWN, mouseDownHandler);
function mouseDownHandler(event:MouseEvent):void {
gotoAndStop(1);
}
what I want to do with targeting a rollover with a button.
View 3 Replies
Oct 10, 2005
I need to have a button to target a movie clip in a separate swf placed in a separate window.
//
on(release){
getURL(theotherswf.html+nameof_mc);
}
View 1 Replies
Jul 30, 2007
I have a flash template that I added a flash and xml driven component to. The component is a carousel menu with a lightbox that displays images. The lightbox part of it keeps loading behind my flash page, no matter what I set the z-index to on the lightbox.css. Is there a way to control the z-index of the flash file in the website's style.css? I tried adding it to the Body of the css but that doesn't work. How do I target the swf? I've never used css before. How to get it to load the lightbox above the flash.
View 2 Replies
Feb 3, 2012
does anyone know how i can matching random value. what kind algorithm that i need to use? the value is no always close to the first value. ex : array 6 x 6. location first value is in 1.1 and the second value is in 3.4. the question is what algorithm i have to use to get value from target value?
View 4 Replies
Oct 19, 2011
I have some AS3 code that reads multiple xml files.On a Mac it runs fine.On a PC it runs in firefox and chrome, but not in IE9.It loads and hangs. The code is rather complex, so I'd rather avoid posting it.I'm just wondering if people have had this happen to them, and what the issue was so I can get some ideas of where to start looking?
View 2 Replies
May 22, 2009
The problem is that the buttons only work once, after that the event listener isn'ttriggered (I think) I have no removeEventListener in my code for those events so I'm totally lost as to why is this happening.
stop();var correr:Boolean = true;Globals.vars.videoP = CM_player;SnowManInst.addEventListener(MouseEvent.MOUSE_DOWN, mudarVideo_SM);bananaKingInst.addEventListener(MouseEvent.MOUSE_DOWN,
[code].....
View 1 Replies
Nov 10, 2010
I've been working on a flash animation with some actionscript 3, which basically is the main.swf that calls upon 5 other swf and txt files that I am embedding into a web template. It all works fine on my mac but when I test on a pc I am able to call upon the other swfs and it pops up but the close button does not work. I assume that it has something to do with my actionscript with the children swf. But just in case I will show both.[code]
View 2 Replies
Jul 7, 2011
This should work! I cant figure out why it doesn't. Fortunatley I discovered that it worked perfectly in Flash Player 9. But I guess it must run on FP 10, snice I was thinking to implement this in an AIR for Android application. On the stage I got a button with the instance name of: submit. In the library I have a MovieClip with the linkage of: radioButton. This MovieClip is just to frames with different grafics. It is supposed to work like a checkbox or a radiobutton.
[Code]...
View 2 Replies
Aug 21, 2009
I finished my website and uploaded to internet. And when I showed friends that use IE7, Chrome or any other browser besides Firefox it failed to work. The SWF gets stuck at the preloader at a certain percentage but the animation of the preloader still runs. Here is the link (try to watch from different browsers): [URL]
View 2 Replies
Apr 24, 2009
I have a monster_mc that shoots a bullet_mc at a target_mc.When I click the Keyboard.RIGHT the bullet jumps once then hesitates or pauses then continues -=25 pixels, instead of shooting smoothly.Am I missing something here?, can I make it perform better?
stage.addEventListener(KeyboardEvent.KEY_DOWN, keyPressed);
target_mc.stop();
function keyPressed(event:KeyboardEvent):void[code].....
View 1 Replies
Jun 28, 2009
I want to know why I can't use this code PHP Code:
[Code]...
I know the problem is Code: xml=e.target.data as XML; but I want to know why I can't use the as XML instead of XML(e.target.data)?
View 2 Replies
Jun 17, 2010
I am using AS3 and PHP. I have created a flash animation and and it put in a index.php file. Its a web site, some pages are in flash and some pages are (like shopping cart) not in flash. My problem is when i am in pure php page (cart page) when i click the link about us, it should go a particular frame or particular content in the flash, instead of running from the beginning.
View 1 Replies
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
Dec 8, 2008
I want to redirect the following code when the target isn't
available.
function buttonClick(event:MouseEvent):void
{
gotoAndStop(event.target.name);
[Code]....
The code works great but I'm building a large site and would like to have a default swf that loads when the target isn't available. I tried various if statements when event.target.name == null but haven't been able to get any of them to work.
View 7 Replies