ActionScript 2.0 :: Variables Not Staying Defined?
Jan 15, 2009
All of the variables that i define in frame one appear to no longer be defined in frame 2.
Here is a snippet of the actual code from frame 1 and frame 2 in case I'm missing something.
Frame 1:
ActionScript Code:
function init() {
var markedFrom = myVariables_xml.firstChild.childNodes[0].firstChild.nodeValue;
//trace("Marked From: " + markedFrom);
[Code].....
View 9 Replies
Similar Posts:
Sep 28, 2010
What I mean by that title is, how would I define a variable name, with a variable, and some text, for example.
ActionScript Code:
var i:Number = 0
var ["test"+i] = "Test"
Where i changes to continually give me different variables, and, in this case, I would have the variable test0.
The above gives the error "Identifier expected". Oh, and it would also be useful to know how to do it in AS3, but I mainly need to know it for AS2.
View 2 Replies
May 3, 2010
Trying to find the best way to use the xDoc variable in the newImg function without adding the newImg eventListener to the xmlLoaded function
var myXML:XML;
var xDoc:XMLDocument;
var xmlLoader:URLLoader = new URLLoader();
[code].....
View 5 Replies
Jun 15, 2010
I am trying to add an init() function to a MovieClip, but when I run the function from scene1 the variables that were set in the MovieClip are not defined yet... The MovieClip was dragged to the stage from the library.scene1:
mc.init(null);
MovieClip:
var _default = 5;
[code].....
View 1 Replies
Aug 10, 2009
I have been playing around with combining flash and PHP/Mysql for some time now, mainly sending one flash variable to a PHP file and then retrieving a result and turning it back into a different flash variable. My problem is i've got to the stage where I need to access these variables from other functions. Now I think I need to find some way of defining them outside of the function, maybe using global vars? Well i'm not gonna pretend I know anything about it. The two functions from which I access my PHP variables is as follows:
ActionScript Code:
function btnDown(event:MouseEvent):void {
var variables:URLVariables = new URLVariables();
var varSend:URLRequest = new URLRequest("http://localhost/test.php");
[Code]....
So I need a way to access the phpVar1 variable in a totally seperate function
View 6 Replies
Aug 23, 2009
The problem which i have is about using variables (specifically "myVar") defined in one as3 class file, in a separate class file. After searching for this via google and on this forum i have not (maybe because i have been searching for the wrong thing), so here is my situation which i think should be simple to solve: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:
ActionScript Code:
package com{
import flash.display.MovieClip
[code]....
View 6 Replies
Aug 29, 2005
it's not working. why not?
[Code]....
View 8 Replies
Aug 22, 2009
Here is the problem:I have 2 external as3 files in a "com" folder next to the FLA within which i am working. The first of these ( "Main.as") is the document class. The second ("events.as") contains variable definition "myVar:Number = 0" which i want to be able to access and change inside Main.as. I am sure that this is possible, but i can't get it working (flash very keeps pointing out that I have made an error. Specifically that old classic: "1046: Type was not found or was not a compile-time constant: myVar." which has puzzled me since the dawn of time.
View 3 Replies
Aug 22, 2007
I've been trying to get these variables that are defined inside this XML Array, outside of the XML array using _global, so that i can use them else where in the animation, but i'm not getting any purchase.
[Code]....
View 2 Replies
Jun 5, 2009
The following bit of code outputs that 'myRequest' and 'i' are not defined.
Code:
//Load external asset
function loadfail():void
{
[Code].....
after a bit of reading I find that it is because 'myRequest' and 'i' are defined within functions, and so those variables are not available outside those functions. How can I get around this? Make a class?
View 2 Replies
Aug 4, 2010
What im going to be doing is replacing the bottom info with just a link-strip, unfortunatly I didn't want to have to sift through ten dynamic text fields re-animating every one with tweens to the way I wanted them so I set them all to a parent variable defined as "mt", such variables being as follows:HomePortfolioDocumentationDev BlogCase StudiesSupport For
View 4 Replies
Aug 7, 2008
I have completely hit a wall. Here's what I'm after. I have two sets of radio buttons, each of which controls what loaded swf appears on stage. Then, depending on which button is clicked in group one and which button is clicked in group two, a third swf appears. I can access the value of each radio button, and I'm passing it into a variable (I think - the trace command works) but when I drop it all together into an if/else statement, no data is passed.
Here's the code:
//printArea is a movie clip on stage, which has dynamic mc's attached via code
var thisFront;
//function for what happens when fronts radio buttons clicked
frontListener = new Object();
frontListener.click = function(evt) {
[Code] .....
View 3 Replies
Feb 9, 2010
I am using flex builder 3.2, Action Script 3 and develop for Flash Player 10 and am quite new to it. when I call a method of a self defined class, I get the 1061 error (not defined). But the class and the method exist and are public, so what the hell am I doing wrong? Flash Builder is even offering me this method in the auto-completion, so at least the builder knows it... I have already tried cleaning the project (as this is the common source of strange errors when working with java/eclipse),
edit: solved... The problem was that a package had the same name as the variable I used for the class. Very strange error message, thumbs down for this .
View 0 Replies
May 16, 2011
I am trying to use buttons to jump to frame labels. They jump to the label just fine, but they won't stop when pressed again. Below is the code I am using to have the button rest when pressed again.
getting_btn.addEventListener(MouseEvent.CLICK, gettingStarted);
function gettingStarted(evt:MouseEvent):void {
gotoAndPlay("ipad_in");
[code].....
View 2 Replies
Sep 9, 2010
My flash document that has multiple frames that the user can navigate by clicking buttons. Each frame has unique symbols that will zoom to full screen when the user mouses over the thumbnails. The problem I am having is that the LAST picture that is "rolled over" stays on the page, no matter the frame.
For simpicity's sake let's say one frame has pictures of dogs that go fullscreen on rollover. The second frame has pictures of cats that go fullscreen on rollover. So when you go to the cat page, you will still have a symbol of the last dog picture you moused over from the previous frame sitting there on the cat page.The way the rollover effect is being done is a movie clip symbol. The actionscript is as follows:
stop();
this.onEnterFrame = function(){
if(zoom == true){
prevFrame();
}
[code]...
I think it has something to do with the "this.swapDepths(100)" command. keep the symbols from "following" the user around multiple frames and, instead, just stay to their propper frame?
View 1 Replies
Apr 1, 2005
how to make a button stay in its over state when it's clicked, and then go back to it's up state when another button is clicked?
i can't remember how to do this.
View 4 Replies
Oct 23, 2010
i am making this simple drag and drop game using flash cs3 using as2.i got 4 games and it has the same codes but different game type.. basically it uses drag and drop.here is the problem, when i finish the game, and press the back button to go to the selecting game scene, the last object dropped in the previous game stays and appears in the scene after that.
below is the as2 code i am using.
---
// global variablesvar tabbingON = false;var draggingON = false;var selectedPiece = 0;var totalPieces = 10;var total = 0;var mySound = new Sound();var origPos:Array = new Array();var justHit = false;var offset = 50;var counter = 0;
// function callsinitGame();
[code]....
View 4 Replies
Oct 23, 2010
okey i am making this simple drag and drop game using flash cs3 using as2.
i got 4 games and it has the same codes but different game type.. basically it uses drag and drop.
here is the problem, when i finish the game, and press the back button to go to the selecting game scene, the last object dropped in the previous game stays and appears in the scene after that.
below is the as2 code i am using.
HTML Code:
// global variables
var tabbingON = false;
var draggingON = false;
[Code].....
View 0 Replies
Mar 23, 2009
I have a new web page I've doing that works fine except that when one clicks on a link then you have to go all the way back to the introduction of the site. What would the code be for allowing one to "stay in the same window" after clicking on this link?
For example:
<a href="http://www.angelfire.com/in/HansonArtGallery/stephenportrait1.html"><u>"View From the Past"-Self-Portrait</u></a></font><br><font color="#ffc56c">
View 10 Replies
Jul 19, 2010
I have a flash intro and when ever I preview it,the intro background turns to black instead of staying the way it should be.Can somebody please help me out here,I need this flash intro for a website.Please explain this to me in simple terms because im pretty NEW to adobe.
Note I've tried everything to make the flash background stay the way it was but nothing I do works.
View 6 Replies
Jul 24, 2008
I have an image that will double as a button to make it larger if you click it. on the rollovers I have a plus and minus sign depending on which size the image is currently.if you click the image and it gets larger the cursor will probably still be on the image. Therefore the minus_mc won't play until you move your cursor off then back on the image. How can I have the rollover refresh without having the cursor move off of the image?
View 1 Replies
Apr 1, 2010
I have an image that I want to make into a button/movie clip that starts out color then fades into black and white (that has text on top when it fades into black and white) when its clicked, and stays that way.....how can I achieve this?[URL]His is reversed from B&W to color, and stays in color after it clicks. I want something like that but B&W when its clicked instead (with text on top)
View 6 Replies
Feb 8, 2010
I am trying to simulate adjusting an LCD screen's contrast using two buttons.
The LCD is one graphic on ONE key frame that runs the entire length of the timeline.
Not sure how to start with the action scripting for this... i would like to use hex values if possible, but had no luck so far with my AS2.
The hard part is that i have a text box on top of the LCD on many different keyframes and the color / brightness of the this will have to change accordingly with the LCD screen.
View 32 Replies
Jul 12, 2010
I am making flash segments for one of my professors for online teaching and the way he has his server set up, whenever there are interactive segments, the segments are done on one frame. Right now I am trying to make an interactive segment where you click on input variables to an AND gate (in circuitry) to change the input from 0 and 1, and then based on these inputs it will show the output.
Basically I want to start out by having them all display ?'s, and then if you click on the ? it turns into a 1 and then clicking again goes to a 0 and 1 and 0 etc. How can I either change what these buttons look like or how can I change the buttons to go from the ? button to the 1 button while all staying on one frame? I am very very new to actionscript (I know how to AddEvent Listener, etc, I just need to know what to write for my function)
View 9 Replies
Jul 23, 2010
I trained on flashMX back in the day and haven't done anything since so now I've got CS5 it's a bit like being at school again! I have a circular dial sat in the middle of the screen with an arrow placed on it's edge. How do I get the dial to rotate so it always faces the mouse pointer?
View 7 Replies
Nov 15, 2010
I have two identical-length videos that I need to stream and play back concurrently while staying in sync. The best I can do so far is keep them about a second apart, but I'm wondering if there's a way to force them to actually stay in perfect sync? Oh yeah: I'm using AS3. (Ideally, I'd just have a series of JPGs instead of the second video and load the relevant image via cuePoint, but that aspect is out of my control.)
Second, what's the best/ideal method of knowing what I can only think of as "percent buffered"? These videos I'm loading are hosted on a Flash Media Server (which I don't have control over or access to, short of loading files from it), and while bytesLoaded/Total works for progressive stuff, I know it doesn't work for streamed stuff. Full disclosure: I know very little about working with serving video in Flash (obvious, I'm sure)(I'm not using the FLVPlayback component.)
View 3 Replies
Aug 1, 2009
By typeing the text in the input box while staying on frame1, DOSEN'T show on the dymanic_text_box2 on frame 5?? How to make the dymanic_text_2 apply it's text when the text is been typed staying on frame 1?
View 3 Replies
Feb 1, 2012
It is called Play_button. This time I ran it and got a different error, (Access of undefined property Play_button)but is still in the same direction as the first one.
View 1 Replies
Apr 30, 2010
I have seen a few posts regarding: ReferenceError: Error #1065: Variable is not defined, but none solving this issue.I have just upgraded to CS4 from CS3. I compiled and run the projects built in CS3 and get this error on loads of MovieClip classes available in the Library.ReferenceError: Error #1065: Variable Movieclip_mc is not defined.Sounds like there is a difference in the compilers that is kicking this error up. I have tried creating a new central .fla document in CS4 and stil no good.
View 4 Replies
Oct 10, 2011
I'm building an AIR application with Flash Builder 4. in the application descriptor I set the minimum AIR version to 3.0 I'm building against Flex SDK 4.5.1 which I overlayed with the AIR 3.0 SDK
I have this line of code in my app:
var nativeWinOpt:NativeWindowInitOptions = new NativeWindowInitOptions();
nativeWinOpt.renderMode = NativeWindowRenderMode.GPU;
this compiles fine, but when I run it in ADL, I get:
ReferenceError: Error #1065: Variable flash.display::NativeWindowRenderMode is not defined.
NativeWindowRenderMode should be available in AIR 3.0?
View 1 Replies