ActionScript 2.0 :: [CS3] OnEnterFrame Inside 'if' Statements?

Jan 28, 2009

I'm making a small movie in Actionscript 2, but have found a problem related to the scope of my functions.Figure I have an audio/mute movieclip, with a global variable called "elaudio" (boolean). When "elaudio" == true , the volume is up, when "elaudio" == false, the volume is muted.I'm attaching sounds from the timeline using Actionscript with an object sound, this way:

Code:
_root.audio.attachSound("myWav");
_root.audio.start();

[code].....

View 2 Replies


Similar Posts:


ActionScript 2.0 :: OnEnterFrame=null - OnEnterFrame=undefined & Delete OnEnterFrame

Mar 29, 2008

onEnterFrame=null, onEnterFrame=undefined & delete onEnterFrame....

Which one to use??? What are the performance considerations. If all my movieclips on-stage are running a MovieClip.prototype.onEnterFrame = function() {run initial stuff before setting onEnterFrame=null/undefined... }, will there be performance hits? It's sad that delete onEnterFrame doesn't work unless I delete the prototype enterFrame as well, which would make the clips reinitailise itself again once you declare the enterFrame prototype again (i need to do this since there's more movieclips that end up appearing on-stage, and they need to automatically initialises themselves the moment they appear).

[Code]...

View 5 Replies

ActionScript 3.0 :: Statements Directly Inside Event Listeners?

Jan 7, 2011

I'm writing the flow for some navigation functions. There are a lot of tweens involved, so I'm grabbing the onComplete events from them. But I often find I'm referencing a tiny statement that I've had to wrap in a function, like this:

Code:
mc.addEventListener(SOMEEVENT, tinyfunction);
function tinyfunction(e:SOMEEVENT):void
{
mc.visible.false;
}

It seems messy to me. Is there some way to plug simple statements like that right into a listener (rather than a function call)?

View 1 Replies

ActionScript 3.0 :: Make KeyboardEvents Inside A OnEnterFrame?

Dec 11, 2011

am trying to make a class file Event.Enter_Frame inside a class file function with inside an if statement that would enable key down presses. but i have no idea how i could get it to work cuz i get constnt errors. this is what i tryed

this is a snipet of the code:

package Classes{
import flash.display.Stage;
import flash.display.MovieClip;

[Code].....

View 4 Replies

ActionScript 2.0 :: OnEnterFrame Inside Prototype Doesn't Work?

Aug 22, 2005

Check my little piece of code. Everything's going well, until the onEnterFrame. My MC instances aren't doin' anything!

Code:
colors = [0x66FF00, 0x20DFD0, 0xEE1164, 0xDAE31C];
MovieClip.prototype.drawCube = function(_moveY, _amount) {
for (i=0; i<_amount; i++) {

[Code]...

View 11 Replies

ActionScript 2.0 :: Creating And Deleting Movies - Increasing The Variable This.speed Inside Interval Statements

Jun 14, 2006

I am trying to make a simple game where there are five balls that bounce around the screen and speed up at set intervals. You have to dodge them for as long as possible. Right now I have the game set up so that you dodge for 15 seconds and you win - but I can't delete the balls that are bouncing around, and I don't know how to put in a reset button. I have also tried increasing the variable this.speed inside my interval statements but it doesn't work.

View 3 Replies

ActionScript 2.0 :: OnEnterFrame Inside A Class - Functions CharactercamX And CharactercamY Are Not Running Every Frame

Apr 15, 2009

I've been trying to run some functions in my class every frame and have come up with this code:

[Code]....

I get no errors, but the functions charactercamX and charactercamY are not running every frame.

View 3 Replies

ActionScript 3.0 :: OnEnterFrame - The OnEnterFrame Is Not Triggered Automatically By Flash Player At Run Time

Feb 1, 2010

i'm very new to Flash (although have plenty of experience in Java, C++, PHP, etc). For a University assignment, I am creating a World Cup Guide and i'm creating a countdown to the tournament. I've followed a tutorial and modified it slightly but i'm receiving an error message. The error message is:

[Code]....

View 1 Replies

ActionScript 2.0 :: Delete OnEnterFrame Start OnEnterFrame?

Sep 26, 2008

any consise methods to restart a deleted onEnterFrame that has been deleted?

View 3 Replies

ActionScript 2.0 :: If Statements Within If Statements?

Oct 7, 2004

If they get a question wrong in my quiz ( weakest link) the money clip goes to zero and it goes onto the next question. If they get it right the money clip advances and they go onto the next question. I want to include each time that it should only go onto the next question if all questions have been asked. SO i want an extra if clause in both sections, saying if current question is more than 11 go to '#game over"The questions are saved in the frame of the quiz

_root.qArray = new Array("question: A;B;C;D")
_root.qArray.push("Question?:A;B; C; D")

There are 11 questions.At the moment at the section with choosing answers I have

function selectAnswer(n) {
// correct
if (answers[n] == correctAnswer) {
_root.money.nextFrame();

[code].....

View 1 Replies

IDE :: Use If And Else Statements And Failing?

Apr 15, 2009

I am trying to use if and else statements and failing. I am either completely missing their purpose, or just not writing the correct code. Scenario: I have designed a gallery that consists of animation in movie clips that are placed on the time line. With the if/else statements I need Flash to know what movie clip the user is on, so that the users next action loads the correct movie clip.

[Code]...

View 4 Replies

Double Up If Else Statements?

Apr 18, 2009

Is it possible to double up If Else statements? [code]...

View 2 Replies

AS2 :: If Statements On Buttons

Sep 14, 2009

how do i create an if statement for some buttons to say something like:

-if button1 is pressed go to frame1
-if button2 is pressed go to frame2 etc.

i know i could use button1.onRelease = function(){blah blah;} but i would like to start using if statements and this is a good place to start i guess

View 1 Replies

ActionScript 1/2 :: Join Two If Statements Together?

Dec 3, 2006

I want to join two if statements together and I'm unsure of the syntax. This is what I have but it is obviously wrong. if (Key.isDown(Key.RIGHT) or if (moveRight_btn.onPress){

View 7 Replies

ActionScript 3.0 :: Cannot Get If Statements To Work

Oct 6, 2009

How to do a rollover button where you rollout and it doesn't another option depending on the current frame. So I decided to open up another actionscript file and do a test so that I knew that I could make an if statement work in a barebone state. And I can't get it to work

First I stated my variable to be 0. I added 3 buttons. Button One makes the variable unit "myVar" to 1 and Button Two makes it 2. And my output button reacts to these variable changes. But it doesn't work.

ActionScript Code:
One_btn.addEventListener(MouseEvent.CLICK, OneV);
Two_btn.addEventListener(MouseEvent.CLICK, TwoV);
Output_btn.addEventListener(MouseEvent.CLICK, OutputV);
var myVar:Number = 0;
function OneV (event:MouseEvent):void {
[Code] .....

View 4 Replies

ActionScript 2.0 :: Cannot Retrieve Statements Value

Nov 20, 2009

well after I made all of the conditional statements I came to the conclussion and the annoyance that I cannot retrieve the statements value, I need help:[code]it does not return the value.. why?

View 5 Replies

ActionScript 2.0 :: Functions With If Statements?

Mar 3, 2011

I was wondering if anyone would be able to shorten this.All of my attemts at it have resulted in errors/not working.

ActionScript Code:
enemy1.onEnterFrame = function() {
if (this.hitTest(p1)) {

[code].....

View 1 Replies

ActionScript 3.0 :: How To Apply The Get / Set Statements

Aug 25, 2009

After searching for how to do this i discovered the Get/Set functions of as.3. The only problem is that i am not experienced enough with this kind of statement to get it working, so i have come here to seek from the wise and masterful members Here is some more info:Inside a fla called "Main" i have 2 MovieClips. The first is called Main and has a class linking to the com/Main.as file which has this code:

Code:
package com{
import flash.display.MovieClip

[code]....

View 10 Replies

ActionScript 3.0 :: Using Variables And If Else Statements?

Apr 19, 2010

used to be able to handle variables and if else statements back in AS2.0, but I don't know how to go around them in AS3.0For instance, a code like this:

stop();
var pageNum = 1;
var pageAnim = 1;

[code]....

View 7 Replies

ActionScript 3.0 :: If Statements In Flash

Apr 12, 2012

i have got a project im working on that requires if statements

basically im wanting to create 2 or more statements detailling if an answer is right, to move onto the next question but before it does that, to play an audio clip then move on. the next statement will be similar, but i cannot remember how to create them i.e. the syntax.

if i could get a response ASAP that would be gr8, as i have 2 weeks to get it done.

View 3 Replies

IF Statements - Creating Next Track Button

Apr 25, 2009

I'm trying to make a "next track" button. "T" is meant to be track number, and every time they click this button, I wanted "T" to increase by one until T>4 where I need it to go back to T=1 (I've only got 4 tracks). Then, I want, depending on what "T" equals, for it to start playing Track"T" and stop playing previous track. I also want the track playing to be looping continuously. At the moment, everything is muted, until I press the button; where it then plays all four tracks at once. I also have a problem with the mute button, but I've got a strong feeling both are of the same reason. I think my problem is that it does not know what "T" equals to begin with so it accepts all if statements; playing all tracks. But I'm new to Flash (my second project) so I'm not sure.

on (release){
stopAllSounds();
T =T+1
if (T>4){
T=1
} if (T = 1){
_root.snd1.start(0, 100);
[Code] .....

View 3 Replies

Paused Statement & Button Statements

May 5, 2009

How do you script a Pause of X Seconds on X Frame and also on that frame have a button release statement that can take you forwards or take you backwards, elsewhere in the timeline - Without affecting the 'Pause' statement... therefore not mucking up the timeline and causing it to jump around at the end when all catches up?I take it once a pause has taken place - a button that can take you elsewhere, if clicked on - does not Cancel the initial pause and therefore lies my problem?

View 3 Replies

ActionScript 2.0 :: Flash 8 - Using This With Conditional Statements

Sep 28, 2010

When use the full path name and the identifier of a movie clip, my conditional statement works fine. However, when I swap the identifier out with "this", it no longer works. This script is contained within the movie clip I am trying to reference. I have found that, "this" works fine by itself on the timeline. It just stops working when I place it within a conditional statement.

Here is my script:
function functionOne() {
randomX = 550*Math.random();
randomY = 400*Math.random();
} functionOneInterval = setInterval(functionOne, 1000);
function functionTwo() {
[Code] .....

The reason I am trying to use "this" instead of the identifier name is because the movie clip it is referencing will be duplicated. This script here generates a random destination point for an enemy spaceship and tells it to constantly move to the changing points. This script is contained within the enemy spaceship movieclip, and I am planning on duplicating several of them at once.

View 1 Replies

ActionScript 3.0 :: Add Tween To Switch And If Statements?

Mar 10, 2009

In this example, is there anyway to fade in and out 'mcContactAmer' and 'mcY' as well as place them at specific coordinates, other than externally load them as swfs? This is the only thing holding me back from moving forward on this project and my boss would like to move forward,

View 3 Replies

ActionScript 3.0 :: Button Functions In IF Statements?

Aug 30, 2009

This time I am trying to use button functions with in IF statements.  However I am having trouble with the if statements regonizing the currentFrame(); or currentFrameLabel();.  I want diffrent button functions depending on what frame the playhead is in.  But the frames are in diffrent movieclips and what not.The next problem is that I do not full understand the way to do frame paths (IE Root.Movieclip.Movieclip) in AS3. series of tutorials that I could read and follow,

View 12 Replies

ActionScript 1/2 :: Comparing Two Variables With If Statements

Jan 11, 2010

I'm working with 2 global variables and I need to compare them on 6 different button function clicks for a lot of different scenarios.[code]My function is starting to look like this;[code]only problem i see is that there are many different scenarios and this if statement could get very long. Is there a way to combine it somehow so there wouldn't be that many else if's?

View 3 Replies

ActionScript 3.0 :: Conditional Statements With Numbers?

Jan 25, 2010

I want to write AS3 code that has 2 variables;  one that acts on odd numbers and the other that acts on even numbers entered into a text field ?(sorry I'm not making much sense here! Will explain the context further)I'd like to use an XML calendar in my Flash project that shows the odd or even dates in the calendar depending on what number you enter in a field being either an odd or even number. (This is based on ACT Water Restrictions odd and even watering restrictions)It means that if your street number is an odd number you can use water as per restrictions when the date also is an odd number. Similarly, if your street number is an even number you can water as per restrictions when the date also is an even number. You're probably familiar with this system.
  
The context is for my Adult Migrant students to understand the concept of our water restrictions here which is governed by this odd and even system.So what I'm doing to do next is buy a cheap XML calendar online which I can adapt for my project but I'm not sure whether I should be approching this code problem with an  if/else statement to get the results or something else?how to write the code!!
 
if my number I enter is an even number then display (in an XML calendar) even days
else
if my number I enter is odd then display (tin an XML calendar) odd days

View 5 Replies

Professional :: Multiple Statements One Drop Box?

Apr 9, 2010

So I am creating a drag and drop game but the thing is that there is not one question for each statement. Is it possible to have say... 10 statments on the right and one "box" on the left where the statements can be dragged to, if its correct it stays there, if its incorrect it goes back to its original position.

View 12 Replies

ActionScript 3.0 :: Timer Method And If Statements?

Jun 15, 2010

I am interested in have a dynamic text field display three quotes at different intervals. I thought I could use the Timer to trigger these quotes by loading them into the dynamic TextField.
 
However, I cannot seem to get it going. I try to attach a number from the timer but that throws an error /1176: Comparison between a value with static type flash.utils:Timer and a possibly unrelated type int.

[Code]...

View 3 Replies

ActionScript 1/2 :: Way To Write A Bunch Of IF Statements?

Oct 4, 2010

if(bookmark == "Q3")  movieHolder.loadMovie("Q_3.swf");}else if if(bookmark == "Q4"){
movieHolder.loadMovie("Q_4.swf");
}else if if(bookmark == "Q5"){

[code].....

View 3 Replies







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