ActionScript 2.0 :: Make A Button Change A Variable, And Add A Number And String?

Jan 25, 2010

I would like to make a dynamic button on a website I am working on. I would like one button to update a variable, and another set of buttons to add 1 or subtract one from the variable I have buttons on the left side of the page for some bands that load conent into an empty movie clip.

The website: [URL]

I would like to set up some forward and backward arrows above that content on the right, so users can also scroll through the content in order. So if someone loads the content for soul asylum, and click the back arrow, it goes back to the Wailers, and if they click the forward arrow, it goes to Swollen Members. So there is an order of pages: 1. Wailers, 2. Soul Asylum, 3. Swollen Members, 4. Passafire, 5. Beats Antique, 6. SFM Kind of an order of importance. The idea is if somebody starts by clicking #3 Swollen Members, my application will know that it is on #3 and the arrows will go to #2 or #4.

Is there a way for the main artist buttons on the left to reset a variable for the current slide? So if someone clicks on the Swollen Members picture button, a variable called currentselection equals 3 And then when the forward arrow is clicked, it will ad 1 to the current selection and load movie #4

So in VB the main Swollen Members button would be something like: im currentselection as int = 3 Which would reset the current page as 3

Then the forward arrow would have code like:

Dim Nextselection as Int
Nextselection = & currentselection +1 & ".swf"

And the button in flash would be something like:

on (release) {
loadMovie("Nextselection", "rightcontent_MC")}

Which would load 4.swf the slide for passafire.

So how would I do this in action script 2.0?

View 0 Replies


Similar Posts:


ActionScript 2.0 :: Random Number - Click On A Button The Variable Number?

Sep 18, 2005

lets say that when you click on a button the variable number goes up 1 or 2 but it picks it randomly
how would i do it

[Code]...

View 8 Replies

ActionScript 3.0 :: Change String Variable To A MovieClip Variable?

Oct 10, 2008

I have been banging my head against a brick wall regarding the following problem which must be very simple to fix, just can't see the answer.I have a class assigned to a movieclip called canvas. The class is called drawClass. I have called the instance of canvas on the stage 'drawingCanvas'.When I trace "drawingCanvas" I get object drawClass] which is fine. Tracing drawingCanvas.name gets me the instance name 'drawingCanvas'.This is a String variable.Basically what I am trying to do is pass the MovieClip name to another class. In my example the class 'toolBar', which can then interact with the MovieClip.

The problem is passing 'drawingCanvas.name' results in a String, so I get an error saying :TypeError: Error #1034: Type Coercion failed: cannot convert "canvasArea" to flash.display.MovieClip.I can't for love or money find a way to convert a String variable to a MovieClip variable! I have the name of the MovieClip, I just need to tell the toolbar class. But I can't find a way of doing this as the instance on stage is an object of drawingClass, not a MovieClip (unless MovieClips with attached classes are not treated as standard MovieClips?).

View 9 Replies

ActionScript 2.0 :: Variable Is Number But Acts Like String

Apr 15, 2006

So I load a variable, length, into a LoadVars instance.
Code:
trace(this.length); //outputs 3
var tempLength:Number = this.length; //tempLength should be the number representation of the loaded value
thisObj.buttonLength = tempLength+2; //I need to add 2 onto the this.length value
trace(thisObj.buttonLength); //outputs 32, which kind of makes sense, but I need it to output 5.
thisObj.buttonLength is declared as a number, and Flash does not output a type mismatch.

View 3 Replies

ActionScript 2.0 :: Changing A String Variable To A Number?

Sep 24, 2009

I want to add some input fields together and can't seem to do it..

test_btn.onRelease=function(){
total = Number(input1) + Number(input2);
}

In the total field I get 'NaN'

View 4 Replies

Actionscript 3 :: Function To Test If A String Variable Is A Number Value?

Jun 16, 2010

Is there a way to test a string, such as the one below to see if it's an actual number value? var theStr:String = '05'; I want to differentiate between the string value above and one such as this: var theStr2:String = 'asdfl';

View 3 Replies

ActionScript 3.0 :: Storing Number Inside A String Variable

Mar 16, 2012

For my calculator i am having trouble storing a number inside a string variable.

[Code]...

Calculator, Layer 'actionscript', Frame 1, Line 1441061: Call to a possibly undefined method append through a reference with static type String.

View 5 Replies

ActionScript 3.0 :: Flash Storing Number Inside A String Variable?

Mar 16, 2012

For my calculator i am having trouble storing a number inside a string variable.

Calculator, Layer 'actionscript', Frame 1, Line 1441061: Call to a possibly undefined method append through a reference with static type String.

Code:
var currentNumber:String ="";
function pressNumber(e:MouseEvent):void{
display_txt.appendText(e.target.num);
currentNumber.append(e.target.num);//error here
}

View 7 Replies

ActionScript 2.0 :: Number Variable Gets Converted To String When Reading From Textfield Of Numbers

Aug 20, 2010

I have the input textfield with instance name vIn, and the variable _vIn. (The textfield is empty.)[code]i have five other variable/textfield pairs were this works ok. I don't get why this pair doesn't work also, my textfields won't accept the subtraction operator, - , even though they're all set to vIn.restrict = "0123456789.-";It doesn't even work in the output textfields were there's no restriction (Negative results are displayed positive)

View 3 Replies

IDE :: Change Random Number Variable To Sequence?

Aug 20, 2009

the variable Im interested in is numSound which at the moment is a random number between 1 and 5, but it repeats too much and a sequence would be fine. I know very little actionscript and nothing I have tried works,the code, or what seems the relevant code, is

Code:
private function randRange(min:Number, max:Number):Number
{

[code].....

View 2 Replies

ActionScript 3.0 :: Act On Change In String Variable

Apr 7, 2009

What is the best way to listen for and trigger a function when a string stored in a variable changes? I have a variable named source which is a string. When its value changes I need to run a function newVideo. What's the most efficient way to detect the string has changed?

View 3 Replies

ActionScript 2.0 :: Change Random Number Variable To Sequence?

Aug 17, 2009

I want to change this bit of code

var numSound:Number = randRange(1, 5);

which I presume creates a random number between 1 and 5, to just a simple sequence of 1 to 5, or alternately, random would be ok if there was a way to preventing it from repeating numbers

View 9 Replies

ActionScript 3.0 :: React To A Change In A String Variable?

Sep 18, 2009

I have a large block of code in frame one of a movie. It executes, then the movie progresses to frame 2 and stops.I then have buttons at frame 2 that change the value in a string variable and send the movie back to frame 1 where it executes the code with the new value and proceeds to stop in frame 2 again.How can I eliminate this use of frame 2?How do I set it up so that I just re-run the code when the variable changes?I assume I can put all my code inside a function that gets called when the variable changes.

View 2 Replies

ActionScript 2.0 :: Change The Position Of One Of The Boxes With The Number Of The Box As A Stored Variable?

Jul 12, 2010

I have flash create an empty movieclip, screen_1, then attach 4 different colored movieclips to the empty one: box_1, box_2, box_3, box_4.Now I am trying to change the position of one of the boxes with the number of the box as a stored variable. So say:

boxNum = 1

this["screen_1.box_" + boxNum]._x = this["screen_1.box_" + boxNum]._x +1600

I can get this to work on the main movie clip.. but not on the movieclips inside of it.

View 2 Replies

ActionScript 2.0 :: Concatenate - Make The Variable Change With The Variable?

Jul 19, 2006

I'm trying to achieve something i thought would be extremely easy, but i can't get it to work!

[Code]...

View 1 Replies

ActionScript 3.0 :: Events To Change A String Variable In The Main Timeline?

Jul 14, 2009

I have a navigation bar movieclip that has the following EventListeners in symbol definition:
 
news_btn.addEventListener(MouseEvent.CLICK, clickHandler);function clickHandler(event:MouseEvent):void { event.target.root.gotoAndStop(1,"newsawards");
categoryName = "news"; <<<DOESNT WORK}
clients_btn.addEventListener(MouseEvent.CLICK, clickHandler2);function clickHandler2(event:MouseEvent):void { event.target.root.gotoAndStop(1,"clients");}

[Code]...
 
My question is, how can i cause any of these events to change a string variable in the main timeline? For instance, i would like the news_btn when clicked to change already defined variable located in the main timeline. Also, is there a more elegant way to code the above, i'm new to AS3?

View 2 Replies

ActionScript 3.0 :: Detect The Change Of A String Variable And Then Fire A Function?

Jan 9, 2010

It seems that this is quite easy to do but ... I can't get it.

I have on the stage 3 Btns that set my:

Templates.data.templateTxt :

my Templates.as package is:

ActionScript Code:
package {
public class Templates {
public static var data:Object={};

[Code].....

View 3 Replies

ActionScript 3.0 :: Flash Change String / Variable Color (textfield)?

Jul 21, 2011

I am building a project where I got XML text displayed on a textfield. How can I change a specific word's color through actionscript 3 instead of doing it on XML? I though of creating a String variable for my word and then using that variable in my textfield.text, it works but is it possible to set a color for that variable?

View 3 Replies

IDE :: Have A Button Evaluate Whether A Variable (textbox) Is Equal To A Number

Jan 14, 2009

In the attached CS4 file I have attempted to have a button evaluate whether a variable (textbox) is equal to a number. If so, I want another textbox to say "correct" or trace "correct" either way. However, it doesnt appear to be evaluating the variable. I receive the "correct" trace everytime the button is released.

I tried to upload the file but it is too large. The code in the button is as follows:

on (release){
if (phoneNumber == "911");
trace ("correct");
}

I have a textbox entitled numbers, in which the user presses buttons and the number is added to the textbox. The same textbox has a variable assigned to it entitled phonenumber. When the talk button is pressed the code above should check the variable to see if it == 911. However no matter what I enter into the textbox, the trace always pops up and says correct.

View 2 Replies

ActionScript 3.0 :: Change The Number In A Dynamic Text When Press A Button?

Dec 7, 2011

I wrote a code that's suppose to change the number in a dynamic text when I press a button,<br>What did I do wrong?

Object(root).currentNum=1;
Object(root).pageNum.text = Object(root).currentNum;
Object(root).arrowLeft.addEventListener(MouseEvent .CLICK, arrowLeftClick);
function arrowLeftClick (e:MouseEvent):void{
Object(root).currentNum-=1;
}

now it's only showing me the number 1.

View 2 Replies

Flex :: Make A Button Change It's Shape With Every Click (music Button)?

Sep 20, 2010

I want to design a music button for a game like geochallenge

View 1 Replies

ActionScript 2.0 :: Make A Button In Such A Way So That After Clicked On It The Button Will Change Colour Indicating That The Link Has Been Visited?

Sep 1, 2004

I am trying to make a button in such a way so that after you clicked on it, the button will change colour, indicating that the link has been visited.

View 3 Replies

Actionscript 3 :: Make A Button And When Click The Button It'll Change Direction?

Dec 18, 2011

by the way you need to make a symbol and need to export for ActionScript and class name is "ball". And the button instant name is:bButton. So here's the script I wrote so far.

var boundaryRight:Number = stage.stageWidth;
var boundaryLeft:Number = 0;
var balls:Array;[code]....

As you can see that code made the multiple ball go to left and looping over and over again. So here's what I want to do. I want to make a button and when I click the button it'll change direction like click and it change direction to right. I click it again and it'll go left again. How do I write the code for that?

View 1 Replies

ActionScript 2.0 :: Convert A String Ending In A Number To A Number?

Oct 9, 2006

how can i convert a string ending in a number to a number? lets say i have a string such as somestring3 how can i convert that to a number 3?

View 7 Replies

ActionScript 1/2 :: Change A Variable By Button?

Dec 12, 2011

I need to change one variable at the click of a button the problem is that when I enter the first frame i declared a _global var _global.conteudo =null;
 
In the second frame:
this equal a _global to :
_global.conteudo = "enterprise.swf";
 
But  when I click a button , i need change my _global var  for example:
 
on (release){_global.conteudo="my variable declared";}

View 18 Replies

ActionScript 2.0 :: Make The Button When Press It Do Not Load Movie Number Twice(x2)?

Jun 22, 2007

how i can make the button when i press it do not load movie number twice(x2)?. and when you press again the button load the movie ,i just want to load just one time, the movie and when u click on it don't play again.

View 3 Replies

ActionScript 3.0 :: Change The Value Of Variable By Clicking A Button

Aug 4, 2010

I have some buttons and movieclips. I want to create a variable. I want to change the value of this varible when I'm clicking a button.

View 5 Replies

ActionScript 3.0 :: Button Setup - URLRequest Variable Change

Jul 22, 2009

I this code a setup a button that calls a url request from another variable and that works fine:
var venue_www:String = "http://www....1";
var venue_url:URLRequest = new URLRequest(venue_www);
function venue_Click(event:MouseEvent):void {
navigateToURL(venue_url);
vInfo.highlight1.alpha = 1;
} vInfo.venue.addEventListener(MouseEvent.CLICK, venue_Click);

But later on I have a function that changes the venue_www variable among other details. But my button won't update with the new url variable. I've actually also already removed the event listener and re-added it through the script, for whatever its worth.
function setInfo1() {// one for each venue
if (currentVenue=="ATL") {
venue_www = "http://www.....2";
}}

View 3 Replies

ActionScript 2.0 :: If Statement - Change A Variable When A Button Is Pressed

Jan 29, 2009

I want to change a variable when a button is pressed. lingo: if this button is pressed then check varexample what number it has if it has a number then gotoAndPlay("example") and add 1 to varexample else, do nothing I'm sure if I get this kind of example down, I'll be able to figure the rest out by myself. =S

View 5 Replies

ActionScript 2.0 :: "Number Of A String VS Number Of A Number" AKA Conversion

Jul 14, 2011

Inside my code i have some variables declared as Numbers, and i get some others from an external source; these variables can either be Numbers or String representation of Numbers. Now, i have to implement some equality controls on these variables, and since i don't know in that moment which type are them of, i'm converting all of them to Numbers (i don't need and neither want to compare strings) via the Number() function which accepts either Numbers or Strings as an input. These controls can compare 2 single variables or a variable and a sum (or subtraction) of other variables, for example:

[Code]....

View 8 Replies







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