ActionScript 3.0 :: Adding Two Functions?

Aug 30, 2009

I'm making a multiple choice game and I have a dynamic text bok which says "correct" or "incorrect" accordingly. also want to make it automatically "gotoAndPlay" the next scene but I can't figure out how to tell it to both change the text in te text box and move to the next scene after they have answered the question. The "gotoAndPlay" always seems to overwride anything elseso I have the following so far:

ans3.addEventListener(MouseEvent.CLICK, checkquestion1c);
function checkquestion1c(event:MouseEvent):void{ ans1.removeEventListener(MouseEvent.CLICK,checkquestion1a);

[code].....

View 1 Replies


Similar Posts:


ActionScript 3.0 :: Adding Functions As A Property?

Oct 8, 2009

I want to add a function as a property something similar to this is what i'm looking for (only that this generates an error).

ActionScript Code:
function getPosition():Point {
return new Point(this.x, this.y);
}

[code].....

And i know i can create a class in an external file. But this is supposing i want to keep it in the same file. And i know that is not a good idea either, but just assume that i have a valid reason.

View 3 Replies

ActionScript 2.0 :: Adding Functions To A Dynamic MC?

Feb 15, 2008

i were trying to add onRollOver to a movieclip that i loaded with loadMovie(). But i were unable to give the MC functions. How would i add functions to a external MC? I did like this (Wrote from top of my head, sry for syntax error)

ActionScript Code:
container.loadMovie("dummy.swf");
container.onRollOver = function (){

[Code]....

The onRollOver function do not work,but the movie gets loaded, how to work around it?

View 7 Replies

ActionScript 2.0 :: Adding Functions To Dynamically Created MC's?

Oct 11, 2005

I am having trouble accomplishing the following:

Code:
var some_xml:XML = new XML();
some_xml.onLoad = function(success) {
if (success) {

[Code]....

This works fine if I use a number, but as soon as I try to use "n" within the function it throws an error. Would eval do this for me? I haven't used eval before.

View 7 Replies

ActionScript 2.0 :: Adding Items To A Listbox Using Functions?

Apr 11, 2003

i am learning to work with sharedobjects in flash mx, and i am trying now do to a little application, and in this application i will use a listbox to do some things, i have a message board that will keep the messages in the sharedobject named "visitas", i add data with a function, ,here it is:

function salvaMensagens(){
var num = Number(_root.entradas.text);
visitas.data.mensagens[num] = _root.mensagem.text;[code]....

it had to add the name digited in the input text field name, and the same with the email, respectivelly , label and data, but my listbox is still empty after several tryes..

View 2 Replies

ActionScript 2.0 :: Adding Listener To MC With Picture Management Functions?

Oct 5, 2010

I have what I think is a scoping issue with a listener. I have a movie clip which contains several picture management functions. I want to add a listener to it so that the next image loads before it is processed. Where do I put the listener - In the MC or in the root? At the moment, I have it in the MC but it does not run the function. I created a test function in the root which runs the listener no problem.

View 2 Replies

ActionScript 3.0 :: Understanding Doc Class And Adding Functions Via External .as File?

Sep 9, 2010

Say I have 3 fla files, each with it's own document class. I want to define some unique variables in each of those 3 files.Now once the variables (unique to each fla) are set, I want to call the same function - setting up the files. I want this function in a separate as file so i only have to make changes in one spot.How do I link the 1 .as file to each of the 3 doc class files and have it's function called in the constructor of each on

View 2 Replies

ActionScript 3.0 :: Adding Two Functions To One Button (gotoAndPlay - Stop Sound)

Dec 10, 2010

I`d like to say that i`m total newbie regarding to as3. Ok, lets look at my problem.. I have 2 scenes (first is main menu with New Game button; second scene is intro for game). I`m having difficulties to make two functions within one button. Why do I need that? First function is to go to next scene (in my case, IntroScene). Second is for turning off sounds, so I can`t hear them in next scene. Here is the code:

[Code]...

View 9 Replies

Adding OnPress To Mc, It Kill's The AS On The RollOver And RollOut Functions Of The Button Within?

Jul 13, 2003

I have an mc with a button nested inside and on this button I have AS for the rollOver and rollOut to play certain frames of the mc. The problem is when I use this mc (called 'mybutton_mc') in a menu system and I want to add AS to it to navigate to different areas, ie adding onPress to this mc, it kill's the AS on the rollOver and rollOut functions of the button within.

View 1 Replies

Actionscript 3 :: Flex Adding Event Listeners With Callback Functions Which Have No Arguments

Jun 10, 2009

fileReference.addEventListener(Event.COMPLETE, uploadCompleteHandler);
private function uploadCompleteHandler(event:Event):void {}

Above is one way to add an event listener in Actionscript. By default the callback function needs to have an argument with name event and type Event. Is there a way to declare this function without any arguments :

private function uploadCompleteHandler():void {}

Edit : It's possible to add an event handler without any arguments in mxml. So one student wanted to know, why isn't it possible to do the same in actionscript?

View 2 Replies

AS3 :: Flash - Adding Event Listeners To An Array That Execute Drag And Drop Functions?

Mar 21, 2011

This is my first real programming endeavor and this is the last thing holding my little project back from being a success.

My goal with this code is to add event listeners to an array of Movie Clips that will drag and drop them on the stage.

Here is the code:

var itemBank:Array = new Array(d1_anim.drawer1.test01.movieClip_1, d1_anim.drawer1.test01.movieClip_2);
for(var i:int = 0; i < itemBank.length; i++) {

[Code].....

View 1 Replies

ActionScript 3.0 :: Access Child Vars/functions Without Adding Code To Child?

Mar 11, 2010

I've seen some discussion on how to load a child swf using swfLoader and accessing it's variables but I am wondering if it is possible to do this without adding any code to the child swf.Either accessing public vars or listening for funciton calls would work fine

View 2 Replies

Actionscript 3 :: Calling Functions In Functions And Avoiding The Player To Crash / Hang?

Oct 6, 2011

I have a series of calculations i'm doing over a bunch of objects stored in a array. Each function is pretty CPU demanding but if you only run one function, it just works fine.

[Code]...

View 2 Replies

ActionScript 3.0 :: Import Vs Include - Basic Functions To Be In BasicFunctions.as And The Make A Library For More Specific Functions

Jun 6, 2010

I've got a project thats getting a bit big, so Im taking the actionscript out into separate as files. I want all the basic functions to be in BasicFunctions.as and the make a library for more specific functions. I find that a lot of people use the import statement but I cant get that to work with a simple Hello World trace, yet the include statement works fine (see attached). I understand that import/include work differently, but which is the better method? If import, then is that heavier to work with. Any rate, what's the best way to organise code when it gets to the 1000+ lines?

[Code]....

View 9 Replies

ActionScript 3.0 :: Mimicing The Until Functions - Load Of Global Functions In One File?

Nov 4, 2009

I'm trying to find a way to have global functions in my as project, similar to how flash does with stuff like the util functions (describeType()...), where you can just call the function wherever you need it. For example:

[Code]...

So when I call Test(), it prints out "hello world" fine. My problem comes in that I can't change the name of the Test function, and I can't add any other functions without compiler errors. Is it possible to have a load of global functions in one file, or do I have to split them up into separate files like in the example? Also, I know that I can make a Global class and call static functions like Code: Global.doSomething() but I'd like to know if there's a way to do it as flash does it (describeType(), getDefinitionByName(), etc), or rather, how does flash do it?

View 9 Replies

ActionScript 2.0 :: Call Other Functions From Generic Mouse Event Functions?

Nov 25, 2010

Is it not possible to call other functions from generic mouse event functions?

Code:
_root.myButton.onPress = function(){
hide();

[code]......

View 6 Replies

ActionScript 2.0 :: Functions And Sub-functions - Button Doesn't Work OnRelease?

Jun 17, 2004

I have one function that puts text in a text field and makes a button goto a url onRelease.The code is like this:

Code:
item.onRelease = function() {
myButton.onRelease = function() {
getURL("http://google.com", "_blank");
}
talk = this.txt;
}
the only problem is that the button doesn't work onRelease. i think that it is because there are too many functions there, but at the same time,

View 5 Replies

ActionScript 2.0 :: Multi-functions -values Of (12) And (21,39) Are Lost At The Geo And Geo1 Functions ?

Dec 2, 2004

in this example why the values of (12) and (21,39) are lost at the geo and geo1 functions

[code]...

View 11 Replies

Flash - Add Functions To Playerglobal.swc Or Allow Compiler To Pass Own Functions

Oct 25, 2011

Im adding lot of simple functions to prototypes of top level objects ( Object , Array , String ...) and have 2 questions :

Is possible to add functions to top level's classes in compile-time ?

If not , is there a way to allow this functions to compile ? I dont like to turn off strict mode

ex:

string.removeWhiteSpace();
string.sliceStr("." , "end");
textField.scrollBottom();

this return compile-time error , cause there is no such function , i have to write it in braces :

string["removeWhiteSpace"]();
string["sliceStr"]("." , "end");
textField["scrollBottom"]();

and i like to aviod it )

View 2 Replies

ActionScript 2.0 :: Calling Functions Within Mouse Event Functions?

Mar 16, 2003

Is it not possible to call other functions from generic mouse event functions? Surely it is !!??ie....

Code:
_root.myButton.onPress = function(){
hide();

[code]........

View 11 Replies

ActionScript 3.0 :: Functions Embedded Inside Other Functions?

Jan 14, 2011

Functions embedded inside other functions?  In all my years of ActionScript programming, I've never seen this (this is part of legacy code written by someone else which I am adapting):

[Code]....

View 6 Replies

Actionscript 3 :: Prototype Functions Off Custom Functions?

Mar 19, 2010

Its a complicated senario for me. I have a sound management singleton with an asset like dictionary storing all referances to my urls and assets and the guff inside it-

I have a function called addItem(id:String, url:String):Object

I would love to do something similar as soundManager.addItem(id:String, url:String).play() or soundManager.addItem(id:String, url:String).stop() of which it'll both add my item to my dictionary, and begin playing the sound

[Code]...

View 2 Replies

ActionScript 3.0 :: Passing Functions Through Functions From Different Classes?

Dec 27, 2009

Let's I have a class Square that has a several functions. I want to call it from a class Grid, which is a group of Squares.So in the class file for Grid, how would I do this:

Code:
public function doSquareFunction(thisFunction:Function):void{
square1.thisFunction();

[code]......

View 8 Replies

ActionScript 2.0 :: Functions Passed As Arguments To Other Functions?

Nov 9, 2005

I have a function with 4 necessary arguments (aka parameters) in order to perform the actions. I would like to have the ability to pass the same function to itself as an argument (sort of like a recursive function) along with its arguments. Basically I want to "base" to engage an onMotionFinished event handler if there is another function passed as an argument. Something like...

[Code].....

Would there be a way to use listeners to do this or the AsBroadcaster?

View 6 Replies

ActionScript 2.0 :: Functions And Sub-functions?

Jun 17, 2004

I have one function that puts text in a text field and makes a button goto a url onRelease.The code is like this:

Code:
item.onRelease = function() {
myButton.onRelease = function() {[code]....

the only problem is that the button doesn't work onRelease. i think that it is because there are too many functions there, but at the same time, i think it's just me..

View 5 Replies

Flash :: Adding Child To Document Class Vs Adding Child To Stage?

Nov 24, 2011

The name of my DocumentClass is Main. So, what's the difference between :

var myClass:Main = new Main();
var mcInLibrary:MovieClip ;
/////////////////////////////////////////[code]............

View 1 Replies

ActionScript 2.0 :: Adding Links On "Adding Thumbnails" Tutorial?

Jan 11, 2007

I've stumbled across a very interesting tutorialBut, I've noticed a little detail. When you click on the big image of the finished example on the first page of tutorial, it acts like a link. When I have downloaded finished .fla source, links are nicely written in the images.xml file, but the links in the .fla file don't work.

View 2 Replies

Tweening In Functions?

Aug 4, 2009

I have some buttons on a stage that when click change the scale and the position of another movieclip sitting on the stage. All works well but I'd like to make it bit more....cool
 
Is it possible to tween, maybe with an ease, between the current position and the position when the button is clicked?

[Code]...

View 10 Replies

ActionScript 3.0 :: Set And Get Functions?

Feb 22, 2012

I have these following Classes
 
package
{
import flash.display.*;

[code].....

View 1 Replies

ActionScript 3.0 :: Use XML In Other Functions?

Nov 19, 2009

I'm loading XML into a file, and then I want to replace the onscreen text with different snippits of text from the XML based upon button clicks.

However, I keep getting an undefined property error every time I try to use the xml in another function other than the load function, because the variable doesn't exist until the load function runs. I get that part.

First, I couldn't pass it to the function that parses the XML and puts the content on the screen (adds the text to the text box and inserts line breaks). So, I added an XML property, so that works finally. However, now I'm passing to a button event. I can't require an XML property there. To get around that, I've tried to encapsualte the XML into every variable type I can think of, and it doesn't work, because it's coersion. It's like a regressive issue now. So I'm screwed? I hope not![code]...

View 2 Replies







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