String Variable With GotoAndPlay?
Apr 8, 2009
I am trying to go about a "smarter" way of setting up multi paged full flash sites. This has got to be something very simple that i can't seem to put my finger on.
I'm trying to create a variable called 'currentScen' that i can declare off the start and change depending on what page the viewer goes to in the site.
I could put a bunch of 'if' statements saying that 'if the current page is this page then do this, if it's this page do this' etc. for each individual page but i thought there must be an easier way.
I am trying to get the following to work:
Code:
// declaring what the starting page is
var currentScen:String = "welcomeMovie";
//function fading in called page with animation used on the 'over' frame label
function animateOn(page:String) {
[Code].....
View 1 Replies
Similar Posts:
Jan 3, 2006
f you know PHP...then you know that you can create a string variable...and then use the value of that variable to declare another variable. like this:
PHP Code:
<?php$foo = "haha";$i{$foo} = "success";print $i{haha};?>
and it would display "success"...or like this:
PHP Code:
<?php$foo = "haha";$$foo = "success";print $haha;?>
and it would also display "success".
View 6 Replies
Sep 20, 2009
I just want to ask if is it possible to call a movieclip using the String Class together with it's instance name to use gotoAndPlay() method. I know how to use the instance name and the method but then what if I want to use a string together with the instance name and the gotoAndPlay.
View 1 Replies
Sep 21, 2011
I have a String variable in my flex (flash builder 4) application containing CSV data. I need to allow the user to download this data to a local file. For example, giving them a "csv" button to click and it might present them with a save file dialog (and I would be sending the contents of my string variable).Is this possible / how ?I am using the ResuableFX component for the datagrid to csv. This the code I ended up with that works to save the string to a text file for the user (in a web browser):
var dg2CSV:DataGrid2CSV = new DataGrid2CSV();
dg2CSV.includeHeader=true;
dg2CSV.target=adgEncounters;
[code]......
View 1 Replies
Mar 16, 2002
If i have an ASP page that is returning variables (and I can see them in the debugger) how do i consentrate a string to call that variable?
ie:
variables being returned are named:
"res1", "res2", "res3"...etc
for (var i = 0; i < 10; i++) {
[Code]...
View 4 Replies
Sep 21, 2005
Im working on a flash menu right now and I wan to create a dynamic gotoAndPlay. but I need to insert a variable into the target path right now here is what Im doing.
Code:
MyVar="FirstMC";
_root.Nav.MyVar.gotoAndPlay("out");
and right now Flash doesn know what to do with it... I would like to make this variable global also which is nothing more than throwing the _global command before my variable right?
View 2 Replies
Feb 10, 2012
Trying to replace a portion of a string with a "-" if it matches a string variable in AS3.
var re:RegExp = new RegExp(imageArray[j][1],"gi"); trace(imageArray[jTemp][2].replace(re,"-"));
imageArray[jTemp][2] is a string imageArray[j][1] is a string as well I'm not getting the result I expect. I would like trace above to return 'permanentContainer-' Here are the traces for the above variables
permanentContainer-temporaryContainer- temporaryContainer
View 2 Replies
Jul 19, 2009
for (var i=1; i<=arrayCount; i++){
var temp:String = "editremove_mc";
temp += i;
[code].....
View 2 Replies
May 2, 2011
Haven't touched Flash in years... trying to do something simple, but it isn't working well. Guess I'm REALLY rusty. I have a flash video with 3 button. Initially, I set a variable (frame 2)
Code:
var x = 0; Then I have the 3 buttons. One of the buttons has the following code (the two other buttons have similar code, but set different variables)
[Code]...
View 4 Replies
Feb 23, 2004
I try to include a variable in gotoandplay(); like:
on (press) {
gotoAndPlay(_root.strScene, 1);
}
it gives me an error and say it must be quted, i tryed everything and im sick of it and i will breack my pc
View 1 Replies
Nov 25, 2009
So I've defined my variable:_global.current = 1;And below i am accessing an MC called 'carousel_holder', which has an MC named 'bar' and inside this MC is a final MC named 'bar1'.So ive tested my path and can hard code it fine, so its not a paths issue but i think my syntax is incorrect:_root.carousel_holder+".bar"+current.gotoAndPlay(" start");
View 4 Replies
Apr 28, 2004
I have set the variable in my page using <param name="flashvars" value="menustate=<?php $pagename; ?>"> which works perfectly fine when I use a dynamic textbox in flash with the var name menustate.
But I need to send a MC to frame 2 if 'menustate = 2'. Anyhow, I just want to know how to control a MC with an external var. I can't use loadVars () because this var is coming from any page, not just one.
View 5 Replies
Sep 22, 2005
In my movie I load a swf to a movieclip with this code
PHP Code:
_root.ImageViewer.loadMovie("deneme.swf");
Now can I do this? before calling the swf named deneme. When I press a button If I attain a number to a global variable with this code
PHP Code: on (release) {_global.myVar = 5;gotoAndPlay("CloseUpAnimation");}
Can I read this variable from the swf which I load into my movie?If I can read how can I write a If Statement that will gotoAndPlay according to that variable?
PHP Code:[code]...
View 4 Replies
Mar 25, 2012
I have trouble with a script for my game project. I can't figure out what I'm doing wrong. This is the code I'm using:
[Code].....
Now, if the variable enemie_life drops to 0 (which I'm tracking with a dynamic text box) it just ignores frame 241 and continues with the second part of the code. There I have another problem: from my understanding (and the way I'd like it to be) it should give me a 3/1 chance to go to 126 and otherwise go to 181. The latter almost never happens. It seems more like a 100/1 chance (and I tried it often ...).
View 6 Replies
Mar 7, 2012
how you would target a function's local variable through a concatenated variable string.For example:
var txt = "Hello World";
function testing(msg) {
var test1 = msg;[code].........
I'd expect the trace to be "Hello World" but rather is given "undefined". So if variables created outside functions are created on the main timeline, where are local function variables created and how would you access them?
View 2 Replies
Jul 12, 2009
When a variable reaches 0 gotoAndPlay frame 4
ActionScript Code:
//Variable Name: ammo
if(_root.ammo = 0;
_root.gotoAndPlay(4);
Doesn't work maybe?
View 1 Replies
Sep 27, 2010
i'm getting a value from a class that gives me e.g "icon1" as data. i want to use this within a function to control the visibility of an item nested in a movieclip on the stage. the nested movie has the same name as the data being sent.
// here's what i want it to do:
mymenu.icon1.visible = true;
// but i cant append the 2 together as flash will see it as a string not read it as path.
[Code]....
View 1 Replies
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
Jan 2, 2012
This is sort of difficult to explain but I'll do my best. I've got 6 score variables that go up over time.
[Code]...
Each corresponds to a different color of "Monster" class I reated. "GreenMonster", "BlueMonster", etc. are all custom classes. Each class has a string property called "MonsterColor". So "Blue1.MonsterColor = "Blue".
To save lines of code, and learn, I'm trying to use a local string variable to take the place of whichever of these 6 int variables I need. So inside a for loop, I've created a variable called "colorscore".
[Code]...
View 5 Replies
Jun 11, 2002
I would like to dinamically create array variables, depending on a XML file. The problem I have is that I don't know how to create them dinamically using a name I have constructed into a string variable. What I would like is something like this:
var strVarName;
...
strVarName = "Var" + i;
var strVarName = new Array();
...
So I would have n arrays called Var1, Var2, ... Varn.
View 1 Replies
Jul 27, 2009
ok , i dont know if i am speaking the alien language trying to explain this: i have a string below
Code: Select allvar IncomingData:String = "";
whenever i trigger an event , this Variable will write a string "ABBAJOHN"
Code: Select all//when i traced the var
trace(IncomingData);
//Output will be:
ABBAJOHN
if i trigger the event and IF the String starts with "ABBA..." , it will gotoAndPlay("NewFrame")
View 1 Replies
Feb 7, 2009
I very new to AS. I'm getting an error with the below code: gotoAndPlay("scene2", 1); Error: 1067: Implicit coercion of a value of type int to an unrelated type String. Go I want to do at this point is jump to 'scene2' when the time line hits a certain frame on scene1. Is this the correct way of doing it,
View 4 Replies
Nov 9, 2007
For some reason i'm having problems swapping scenes in my flash movie. At first i put the action in a "actions" named layer and a link to a button. So basicly when scene1 loads the frame 1 action is "stop ();". The viewer clicks on button1 which has a code of;
[Code]...
View 1 Replies
Sep 11, 2009
Is it possible to convert a given variable name to a string?
Code:
function vartostring(mystring:String) {
//something like var newstring:String = parsevarname(mystring)
[code].....
View 3 Replies
Sep 23, 2010
Example:
public var myVar:Object;
// now I want to get the myVar string
// myVar is not instanced*
public var whatINeedIsThisVar:String = 'myVar';
View 1 Replies
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
Sep 9, 2009
Compare a string to a variable name. Is there anyway you can do that?[code]...
View 1 Replies
Nov 9, 2009
having an issue with a variable set. It is set as a string to default "no" on the very first frame of my movie, as follows:
var myaccess:String;
myaccess="no";
Within my movie, there is an object. When this object is pressed, it is to change the _root.myaccess="yes"; I am tracing the variable within the movie clip and it shows me: I do not understand why it is changing my string definitition from "no" to false. Because of this, my variable does not seem to change to "yes' on object (button) pressed.
View 1 Replies
Jan 22, 2010
I have a movie clip on the main timeline that includes a button.When pressed, I want this button to conduct an if statement to check the contents of a textbox on the main timeline and if equal execute the statement.So far I have this but the text does not seem to 'read'. Do I need to pass the textbox contents into a string variable rather than read directly from what is in teh text?[code]
View 2 Replies
Jul 14, 2009
I have a string that stores an object's instance name: var instName:String = e.target.name; and now I need to use its information to do something like this: instName.alpha = 0.3; but since it is a string it causes this error: 1119: Access of possibly undefined property alpha through a reference with static type String.
View 1 Replies