ActionScript 3.0 :: Resetting MovieClip Between Levels And Passing Required Variables
Nov 25, 2010
I'm currently working on my first flash game and have managed to near enough get everything working. I can play each level individually by manually changing the variable 'level =' (to whichever level I want to play) in the actionscript. Now I need to find out the correct way to reset the movie after each level but still pass the 'currentTime' Timer variable and the 'level' variable over... Would I use variables I have saved in the init() function...
View 16 Replies
Similar Posts:
Aug 21, 2010
PHP Code:
myImages_mc = myGallery_mc.createEmptyMovieClip
("myImages_mc", myGallery_mc.getNextHighestDepth());
var myMCL:MovieClipLoader = new MovieClipLoader();
var myPreloader:Object = new Object();myMCL.addListener(myPreloader);
for (var i:Number=0; i<myImagesTotal; i++) {
[Code] .....
The problem is everytime I click on the image_mc, it traces "undefined". I need to know the value of "image_mc.main" when I click the image_mc. The "main" variable should be the "i", which is the number of loops. On the loop, it traces correctly, but when I put it on the onRelease function, it traces undefined.
View 1 Replies
May 27, 2008
What I'm trying to do:
1) Have a textfield that counts from 1 to 315
2) Once the value of the textfield reaches 315, pause for 2 seconds, and loop.
3) Do this until 15 seconds have passed, then stop.
What I've done so far to try and get this to work:On frame 1, I set up a little script like so:[code]The problem is, once it loops back to frame 1, my textfield that is being displayed continues to display 315, it won't display the counter going from 1 to 315. EVEN THOUGH IF I TRACE IT, you can see the script is working in the background just fine counting from 1 to 315 3 more times before 15 seconds is reached.Any idea why my textfield would be displaying the end value and not displaying the start (counter) value as it should?
View 9 Replies
May 21, 2007
is SWFliveconnect required to pass variables from HTML to Flash?
If so, what is the proper way to enable it??
View 2 Replies
Aug 15, 2009
The question is about producing a learning package for users to improve their mathematical skills.One part of it is for times tables. So the user will enter their name and then a question will appear e.g. "What is 6 X 9?" The user then inputs their answer and the system will compare and process the input, storing the incorrect and correct responses and then giving a final score at the end.The question is to; identify the names of the likely variables and processes required for the system generation of a question and the subsequent processing of the user's response.(10 marks)Then it asks to write some pseudo-code to describe 10 consecutive question/response activities and their final results showing their name too. (15 marks)
View 4 Replies
Dec 25, 2010
Actionscript Code:
if (Key.isDown(attack2Key)&&shot2reload == 0) { for (i=1; i<2+1; i++) { shot2++; shot2reload = 30 var newname =
[code].....
View 1 Replies
Nov 9, 2005
there is the main SWF which loads and external SWF. On the external SWF through XML I post a variable on _level0 like this:_level0.selection = arg;the "arg" is another external SWF, trace works fine. Then I`m trying to load this SWF that is defined by the "arg" (_level0.selection) into a container.
This:
_level0.containerMC.loadPic(3);
works, this:
[code]......
View 13 Replies
Jan 16, 2006
I know there are similar questions here that have been answered, but after trying to make sense of it, I still can't get this to work.Based on an array, I attach a number of MovieClips from the Library.On release they go to a certain frame, representing the "pressed" state of the button.The problem is, that I can't figure out how to reset the last pressed button back to it's original state...Here is the Actionscript code I have so far:
ActionScript Code:
stop();
daCap.play();
scrollUp._visible = false;[code]......
View 5 Replies
Sep 13, 2011
I have a XML schema.I want to read only table tag and its geometery tag using action script3 code.Any Idea.
<table name="TableBase 1" id="TableBase3010" overflow="false" direction="lr-tb" suppress-empty-lines="false">
<style-ref name="default"/>
<geometry size="absolute" position="absolute">
<location left="117" top="102"/>
[code]....
View 2 Replies
Jan 9, 2005
I believe that my question here is a little hard, or maybe impossible. But here it goes:
How can I, in Flash, get the levels of volume (peak levels) of multiple sound frequencys from an audio file, so that flash would recognize them?
View 1 Replies
Jan 6, 2004
I'm making a slider which will eventually control the alpha levels of a movieclip of mine but I'm having trouble controlling the parameters in the startDrag() function. Here is the code:
[Code]...
This seems to work ok, however, the problem is encountered when I go to drag the MC...for some unknown reason it ventures off its slider bar and goes to the left. I will attach the .fla.
View 2 Replies
Feb 8, 2009
I have a swf with an input text box and a button. When the button is clicked, I need it to open another swf in a new window on a different domain and pass the variables to a dynamic text box in the new window. I looked at local connect but I wasn't sure it would work because the two windows wouldn't necessarily be loaded at the same time and they are on different domains.
View 4 Replies
Sep 9, 2009
I am loading images into a movie clip dynamically from an XML file. Based on what image the user clicks, I would like to be able to open a separate window, displaying a different image. Ideally, I'd pass the variable of which image was selected to the new open window.I've done some research online, and am thinking I'm making this harder than it needs to be.
Actionscript from main movie
Code:
chosenImage.onPress = function() {[code]......
I've also seen where I could possibly pass a variable through ASP.NET, but am experiencing the same errors when trying to pass the variable. I suppose I could embed the popup.swf file in a new .aspx page, that would probably be acceptable.
View 1 Replies
Jan 6, 2010
I'm using IE 8 and trying to open an HTML file. All files are either local or ran on a server. Problem is I use the URLVariables object, and they still won't get passed. for example:
Code:
var req:URLRequest = new URLRequest("Y:/htmlFile.html");
var urlVars:URLVariables = new URLVariables();
[code].....
View 14 Replies
Jul 21, 2010
I just want to show the contents of the input data in Movie Clip Movie Clip A into B which is still in one layer.
View 2 Replies
Sep 6, 2010
I'm trying to develop a site map, which draws a tick over the sections of my app that have been completed. I've figured out how to draw the tick and how to pass variables from root to the MovieClip that the function is in.
To make the tick appear only after an mc has been watched, I tried setting a variable equal to 1 ino the last frame of the MovieClip, and telling the function to run if that variable was 1.
I'm not getting compiler errors, but I'm also not getting the tick. And I'm definitely completing the Movie
Here's what I've got so far: In root
Code:
var xcoord = 125;
var ycoord = 300;
var WaterComplete = 0;
In WaterMovie
[Code].....
View 3 Replies
Nov 25, 2008
I am trying to pass value and string from AS3 main.swf to AS3 child.swf loaded in it. But, Nothing is working and i can't get the value from one to another. As Beginner in AS3, i was working for a long time and
still i face these problems and no output yet.
[Code]...
View 1 Replies
Nov 17, 2010
I am having some trouble in passing variables from AS3 to PHP. I am using flash and php both in the same file [try.php]. I've stuck with this for two days.. Here's what I have done. header.fla [Actionscript in the timeline]
[Code]...
View 5 Replies
Sep 4, 2010
Creating a flash project where users can visit the site, and turn off/on objects in a house (ie. lights, tv, computer, etc.) The next user who will visit the house in the website, will see what lights or house appliances were left on. Flash variables are passed to PHP, and those variables are saved in an XML file. (For testing to see what is being saved to the XML file, on each click --vars.xml opens.) In the vars.xml file, I see that the house objects that were last turned on--are saved in the XML file- But in the SWF file, only one of the objects that are listed in the XML are turned ON. Only the last object that was clicked on would show ON--not all the objects in the XML file.)
package {
import flash.display.MovieClip;
import flash.events.MouseEvent;
import flash.events.Event;
import flash.text.*;
import flash.net.*;
public class House extends MovieClip {
[Code] .....
View 1 Replies
Nov 19, 2010
I am having some trouble in passing variables from AS3 to PHP. I am using flash and php both in the same file [try.php].
I've stuck with this for four days.. Here's what I have done.
header.fla [Actionscript in the timeline]
Code:
stop();
import flash.events.Event;
import flash.display.Sprite;
[Code].....
View 5 Replies
Sep 4, 2005
I am using FLASHVARS to pass a variable (Status) from ASP to Flash.This piece of Flash (named Header), calls another SWF (named InOutPencil) using this command:[code]My problem occurs when I try to use the Variable 'Status' in the InOutPencil SWF (below).[code]I need a way of passing the value of the variable 'Status' from Header to InOutPencil.
View 3 Replies
Feb 24, 2006
I need to pass the following php information into flash...
<?php
defined( '_VALID_MOS' ) or die( 'Direct Access to this location is not allowed.' );
$link = "<img src ="$mosConfig_live_site/images/comprofiler/tn";
$link_gallery = "<img src ="$mosConfig_live_site/images/comprofiler/";
[Code]....
This php script displays the top 20 users from a database based on their hit count. The script passes their avatar (image), username and link, as well as total hits.
I wanted to create a flash file with one movieclip that would parse the php file and display the results in an i++ fashion, so that I could make changes to only one mc instead of 20, when needed.
I have tried making a dynamic text field an mc, and assigning the loadvars object to that mc... but can't get any information to display... and I know the php file works like a charm.
View 10 Replies
Nov 21, 2007
in my main movie, i have done a survey, see my previous thread which collects data from a series of radioButton groups. i can display this data using dynamic text boxes no problem, however i also wish to display this data in a separate swf which has been loaded into the main movie via a movieclip using
Code:
_root.cm_handler.loadMovie("movie2.swf");
View 1 Replies
Aug 31, 2008
i got this working in AS2 and PHP, but i can't use the VAR option on the dynamic text ... so how would i do this in AS3 ?
here's the simple code
using AS2 and PHP 5.2.6
ActionScript Code:
//
// create an object to store the variables
varReceiver = new LoadVars();
// load the variables from the text file
[code]....
and the PHP Code in info.php
PHP Code:
<?php$fName = "nuno";$lname = "mira";$age = 24;// echo or print the variablesecho ("&fName=$fName&lName=$lName&age=$age&");?>
View 6 Replies
May 11, 2002
I'm trying to get one movie to send a variable to another movie. how to check the string that's being sent, and have the movie do stuff based on what string is being sent (if (string=="bla"){gotoAndPlay("bla");}.
View 5 Replies
May 21, 2009
I have a flash file that I made that displays a scrolling newsfeed (I'll call it newsfeed.swf)... I published it to an SWF. Now, I created a new flash file that I would like to use to show many instances of newsfeed.swf. In my new flash file, I have the following code:
this.onLoad=function(){
mcNewsfeed.loadMovie(http://www.whatever.com/newsfeed.swf?s=MSFT);
}
In theory, when newsfeed.swf starts up, the ?s=MSFT variable should be passed in at the _root level such that I should be able to reference it and build the newsfeed to be displayed dynamically. I've tried several different things, but no matter what I do, the following code (the _root.s part) in newsfeed.swf returns "undefined":
newsfeedURL = "http://finance.yahoo.com/rss/headline?s=" + _root.s
I would prefer to not have to pass XML files between the swf files or use system objects as that would add a level of complexity I'm not ready to deal with (I'm a total noob at this stuff)...
View 2 Replies
Aug 7, 2009
So, I read the tutorial about passing variables by changing the url of the .swf with the following code:
Code:
if (movie==1 or movie=="") {
trace("default");
}
[Code]....
My question is, is there anything special if I want it to respond to the url of a .php page? So, if I have a page that ends in "?page_id=2" could I do the same thing or does it have to be an .swf?
Code:
if (page_id==1 or page_id=="") {
trace("default");
}
[Code]....
View 2 Replies
Feb 25, 2010
i have even hardcoded in data and it wont pass through. i have 5 other variables that pass through and i cant get these other 2 to pass.
View 1 Replies
Jun 11, 2010
I have been trying to pass a variable to a SWF. From the research I have done it seems pretty straight forward, but I cannot seem to get it to work. I am wondering if it has something to do with the way the SWF is added to the HTML page. Would someone take a look at this for me?
[Code]...
View 2 Replies
Feb 14, 2008
I have a problem using a very simple URLVariables script with php.The thing is this sample do works on some servers and doesn't on other:Instead of having the correct values with trace, I get the php code itself.That means I get the following string in trace():[code]I know it comes from the php configuration on my server because I tested it on another server and it works, but I can't find what I must change in my php.ini file to get the good results in trace();
View 3 Replies