ActionScript 3.0 :: Way Else IF Function Should Work?
Dec 30, 2010
I've written the function below which is called when a button is clicked. I want to change the character image being displayed and change the number_txt variable each time the button is clicked.This works in the first instance (if char 1 is visible it hides it, makes char 2 visible and changes the variable as required). But having done this it wont work the other way (hide char 2, make char 1 visible, change the variable as required)I can only assume I'm missing something in the way the Else IF function should work? If there is a better way of scrolling through 4 or 5 'character' images and updating the variable each time.[code]
View 2 Replies
Similar Posts:
Nov 27, 2009
I have a set of Cue Points in an FLV I'm playing. It's an interactive quiz, so the idea is that flash will change a variable, theAnswer, to a different letter depending on which question it is. The answer to question 1 is B, question 2 is D, etc. Either the cue point event listener isn't working, or else it is working and Flash isn't declaring the variables. 1120: Access of undefined property theAnswer. I literally can't find a single problem with my code. I have an almost identical Event Listener further down which works.
[Code]...
View 4 Replies
Jan 3, 2012
I am working with AS3 to build a very simple mp3 player on my site. So far the play and pause button work fine, but when I try to move the slider then click the pause button, it doesn't pause, and then clicking the play button again causes it to play a new file.I'm assuming that for some reason when I call the playMp3 function from my MouseEvent, it's within an object or something and not at the root, so it's like loading a new sound file, but I don't know how to fix that.URL...
View 2 Replies
Dec 15, 2009
how do use a function from a doc class.... to call a function to work on in
[Code]...
View 2 Replies
Nov 21, 2008
<?xml version="1.0" encoding="utf-8"?>
<mx:Canvas xmlns:mx="[URL]"
xmlns:ns1="com.something.*"
creationComplete="init();">
<mx:HBox>
<ns1:MyButton label="ok" click="ok_()" id="OKBtn"/>
[Code] .....
View 2 Replies
Feb 12, 2011
this is my code..RollOver and Out works great, but I can't seem to get function DOUBLE_CLICK to work.
home_mc.doubleClickEnabled=true;
home_mc.useHandCursor = true;
home_mc.buttonMode = true;
this.home_mc.addEventListener(MouseEvent.DOUBLE_CLICK, click_home_mc);
[code]...
View 3 Replies
Feb 19, 2011
When I tell Flash to go back frames the buttons cease to work, in other words, the button only works once. I've tried tracing it to find the problem and when I tell it to go back frames it won't run the function. I'm using actionscript 3 on Flash CS4.[code]
View 5 Replies
Sep 22, 2011
I try to get the addCallback function to work but I don't get a working result. I allways get a js error 'callback is not a function'. I tried to put it on my local-webserver, to fake a domain name (www.localhost.de in hosts file).
Here is my code (the move has the textfield
import flash.events.Event;
import flash.events.MouseEvent;
import flash.external.ExternalInterface;
[Code]....
View 8 Replies
May 30, 2010
For some reason my TweenLite function won't work. Doesn't give any errors, but it just doesn't do anything and thus the onComplete function won't work to continue the script.
[Code]....
View 3 Replies
Mar 16, 2010
The Function is:
Code: Select allfunction Click_Die () {
this.gotoAndStop(die111+die11+die113);
[code].....
View 3 Replies
Jun 1, 2004
I was reading Kirupa Chinnathambi's function tutorial and I was trying to make my own function, but it's not working! Here it is:[code]
View 9 Replies
Jul 1, 2004
hive just started actionscripting instead of tweening so be gentle. i use mx 2004 but i cant get the trace function to work.., here is the code form a kirupa tutorial...
_global.myvar=5;
trace (_global.myvar);
why does this not work?i thought it shud display 5.
View 2 Replies
May 5, 2011
By chance does anyone know if there is a way to make a set function for my class that will run regardless of what variable is being set? like if someone does..anInstanceOfMyClass.anyVariable="whatever";it will always run function X.I want my code to have a function that runs every time someone tries to set the value of a variable in my class, or create a new variable that does not even exist yet in the class.
View 8 Replies
Aug 30, 2004
I tried using this code because I need some mc to scale, others to fade, and others to move; but it won't work. It only allows the last function to work (in this case alpha).
[code]...
View 5 Replies
Apr 10, 2009
I'm making an educational software by AS3.I call "part1Act()" from frame1 and everything works very well.But when I call the same "part1Act()" from the frame 58, flash throw me this error.
TypeError: Error #2007: パラメータ child は null 以外でなければなりません。 at flash.display::DisplayObjectContainer/addChild() at L_oni_fla::MainTimeline/loadSnd()[L_oni_fla.MainTimeline::frame2:699] at L_oni_fla::MainTimeline/part1ActT()[L_oni_fla.MainTimeline::frame58:6 7]
I only called the same function from different time frame.The script I wrote is following.
//--------------------- code ---------------------------------//
var progressBar:progressBarL=new progressBarL();
var context:LoaderContext = new LoaderContext();context.applicationDomain=appDomain;var ldSnd0:Loader = new Loader();var ldSnd1:Loader = new Loader();var ldSnd2:Loader = new Loader();var ldSnd3:Loader = new Loader();
[code]....
View 9 Replies
Sep 25, 2009
I am trying to link a button via AS but I need to use a function that is on a different time line for it to work. I have no idea how I am going to do.
[Code]...
I am trying to use the "var flvControl" but that function is located on a different timeline.
View 7 Replies
Jan 13, 2010
When you are dragging a movieClip on the stage, it generally works fine. But if you are performing some calculation or hitTest while you dragging, the location of the cursor and the movieClip starts to go unsynched. For example, in the following code, I am running an ENTER_FRAME handler while you drag a box, and this onEnterFrame_Box method contains a bogus for loop to slow down the process. The drag & drop works snappy if you comment out that for loop... But if you bump up that 100 to something like 200, Flash Player runs quite slow, and the location of the box won't match where your mouse cursor is...
ActionScript Code:
var box:Sprite = new Sprite();
box.graphics.clear();
box.graphics.beginFill(0xCCCCCC, 1);
box.graphics.lineStyle(1, 0x999999);
box.graphics.drawRect(0, 0, 100, 100);
[Code] .....
View 2 Replies
Sep 6, 2011
Lets say that I got movieclips A,B,C,D in my scene and E,F which only come into scene when A hitTest B and C hitTest D.I was able to make the A+B and C+D hitTest functioning properly. But when E,F came into the scene, I tried to make E to hitTest F to get something else function but they won't work.# note that there is some short animation before E & F come into scene.I am pretty sure all the instance names are named properly.
View 5 Replies
Sep 10, 2007
my problem is that my onPress function doesn't want to work. Here�s the script: PHP Code:
[Code]...
the hilite function should let the buttons disable or not, but it just will not work.....
View 1 Replies
Jun 10, 2008
I'm programming a dinamic flash/xml website. up until now I've kept the info for the menus and the one for the gallery (the site has a gallery that displays both text and images) in separate xml files. but I'm trying to make all of it work out of a single xml file. I've managed to make the menus and the gallery all go get the info correctly to the xml (text and images), but then I came up with a problem that jeopardizes the whole show: a path inside the xml's onLoad function refuses to work! the code that bears the function has to be placed into the same clip as the clips that contain the text fields to wich info will be passed or it won't do a thing.
supose this is my actionscript code:
Code:
var contentSubMenu = new XML();
contentSubMenu.ignoreWhite = true;
contentSubMenu.load("example.xml");
[code]....
no information is passed to that clip. If the path targets that clip one should expect it to, right? even if all this code is placed on _root, right? well, it doesn't happen...I tried tracing for info that comes from the xml, but nothing is displayed in the output window.
I've attached a zip file that contains a fla file, an xml file, a txt file with the full chunk of actionscript code and the fonts you'll be needing should you decide to take a look (they're only two).
The fla file has been built in the following manner:
_on the right side, the clips that hold the text fields to wich the contentSubMenu.onLoad function will pass info to are directly placed upon _root (so, following the code example from above, it would be like having var buttonList = _root;)
_on the left side, the clips that hold the text fields are down into buttonListSlide_mc and the contentSubMenu.onLoad function is there as well, only commented so it doesn't display anything.
View 1 Replies
Mar 10, 2009
I'm trying to get the height of the (external) text in textfields to display them vertically on top of each other with a space in between. At the moment I am adding the textfields with predefined heights, so if item1 is 2 lines and item2 is 4 lines then there is a lot of space between item1 and item2
ActionScript Code:
var my_tf = new TextField();
my_tf.text = "Hello";
my_tf.appendText(" world!");// my_tf.text == "Hello world!"
my_tf.x = 100;
addChild(my_tf);
[Code] .....
View 1 Replies
Mar 15, 2009
I can't seem to access functions (methods) of my document class from any other class in the same package. What i need to do is create some global functions like menu reset, title change, etc. Maybe i'm not fully understanding the OOP concept, because this seems simple and it should totally work, but it doesn't and no documentation has been able to tell me why.
I have a document class called Main.as like this:
Code:
package
{
import flash.display.Sprite;
[Code]...
View 5 Replies
Mar 19, 2009
I am calling a xml file from intranet by using
xmlLoad("\serverfolderfile.xml")
i am building a application for local intranet.
View 5 Replies
Oct 2, 2010
I am trying to stop a function in as3, I tried: delete.functionName - but it didn't work, I tried to achieve the same things using addEventListener and then removeEventListener, but that is not what I need that function has caurina tweener inside it and it has multiple tweens with multiple delays seconds, so all of the tweens are started and the seconds continue to tween but what I want is to simply stop that by stopping the function which holds the tweener so it should stop everything what is inside that function for example it could stop that function when it is mouse hovered on any object
View 11 Replies
Feb 16, 2011
I'm now learning about class function on AS3, and I have little problems that may appear as a noob question, but I have searched everywhere else, and still found nothing.I make a function class separate on .as file, then I call the class fuction to attached the class function to a MovieClip.The class function working fine when I tested on TestMovie ( Ctrl+Enter ) The movieclip can be dragged.but when I double clicked it from .swf file (from windows explorer) , the movieclip function didn't work at all? And it works well also on .EXE file, just didn't work on .swf file ?
View 1 Replies
Nov 2, 2009
So I'm making a music box in flash, I've programmed the forward button just fine so if I press the next_mc it skips to the next song, but my prev.mc is an issue! I only have 6 songs.
[Code]...
View 1 Replies
Jun 15, 2010
Is there a way to make the onMouseDown function also work within the MovieClips area in this code example? It seems like the two functions are conflicting.
attachMovie("nutrition","nutrition",4,{_x:715, _y:370});
nutrition.gotoAndPlay();
nutrition.onPress = function():Void{
[Code].....
View 2 Replies
Dec 14, 2009
I have a function ("advance_slideshow()") that ticks a slide show up by one, then it loops back at the end. It works when called from the key listener I set up for debugging. However it does not work when called from setInterval. I added a trace to the function to confirm that it was being called, which it is; it just doesn't work when called via the interval
Code:
//////////////////////////
/* IMPORTS AND INCLUDES */
[code].......
View 1 Replies
Jan 14, 2010
Here is my scenario
1: I am using custom hand cursor in my application
2: When the mouse leaves the stage I am making my hand cursor invisible
3: Further I am using PV3D for animating plane.When the mouse moves in the stage the camera rotation is changed
4: When mouse moves out of the stage.the camera rotationY is set to zero
Problem:I am using
ActionScript Code:
stage.addEventListener(Event.MOUSE_LEAVE,hideMouse);
stage.addEventListener(MouseEvent.MOUSE_MOVE,moveMouse);[code]....
There are other animation added to this function also.So the function works well but sometimes when I move the mouse out of the window from middle of stage to its out,the function doesn't work.Meaning it works for some fraction of time and then hand cursor is shown and camera rotation is not set to zero.Is there any trick that must be done to force Event.MOUSE_LEAVE work properly.
View 3 Replies
Dec 10, 2010
i want when press a button on that flash header the test.php is redirect to another php page without the flash header be reloaded , and i actually made it but with form buttons and ajax ofcourse , so all i need is when the flash button is clicked a javascript function in the test.php work ?? --> here is my try : i passed a url variable from flash to the same page to say which button is pressed through this code
ActionScript Code:
var vars:URLVariables=new URLVariables();
var url:URLRequest=new URLRequest("test.php");
[code]......
View 5 Replies