Actionscript 3 :: How To Pass A Class As A Variable
Feb 10, 2011Is there a way to pass a Class as a variable in Actionscript 3.0? For example:
[Code]...
Is there a way to pass a Class as a variable in Actionscript 3.0? For example:
[Code]...
I am newbie in the actionscript, and i don't know how to pass a variable from one class to another![code]...
View 2 RepliesI have a document with main class.I also have some movieclips which have their own class and functions.I am trying to pass a variable from my main class to one of these MovieClips.I tried some stuff, nothing worked.
View 11 RepliesI am adding some movieclips dynamically to stage. If we click on the movieclips, they goto and stop at frame 2. The Click Event for the Movieclip is defined in the base class
Code:
package {
import flash.events.MouseEvent;
import flash.display.MovieClip;
[Code].....
But, I cannot figure out how to get the name of the movieclip.
I cannot add click event for movieclips in flash, because there is already a click event in the class file.
I need to pass a variable value contained within a MovieClip to my class file. The MovieClip is my preloader, to which my code will show that upon the initial launch of the SWF. Until the variable is sent, my code assumes the preloader is still running and therefore will not progress. Originally, it was working when I had my class file extend MovieClip and then used this code in the preloader MC:
[Code]....
My doubt is this:I have this variable in this class A
var obj:Object = new Object()
and its structure:
obj.name = "John";
[code].....
I have a movieClip named MC, and it's enabled with action script, with the class name MC_Rectangle and a Stage.I override the MC_Rectangle class file in a mc_rectangle.as external file.here is the code:
package{
import flash.display.*;
import flash.events.*;[ code].....
I have new a object in the main stage var
mc_rect:MC_Rectangle = new MC_Rectangle()
in main stage:
1. how can i access the variable "sequence" in "mc_rect"
2. how can i pass parametre from main stage to mc_rect via function setSequence(data:int)?
3. how can i call the function in addSequence() in mc_rect.
in asp.net, i usually use mc_rect.sequenct,mc_rect.setSequence(data), mc_rect.addSequence() to achieve my goals......btw, can function in mc_rect return out result to main stage?
Trying to pass a variable as well and cant seem to escape to pass it. How can I pass using window.open as such: Trying to pass (pid) all i get back is (pid) and not actual pid.How to on a jscommand?
Code:
something.onRelease = function () {
var jscommand:String = "window.open('http://www.someform.php?proj= + (pid)','win','height=200,width=300,toolbar=no,scrollbars=yes');"; getURL("javascript:" + jscommand + " void(0);"); }
I can do a standard getUrl("http://www.someform.php?proj=" + (pid), "_blank"); works fine but no control over window properties.
I'm trying to pass the contents of variable playnoyes to the long line of code below to decide whether or not to autoplay the flash movie, but doing it as I have below, the resultant line of code has the variable in quotes and therefore the code doesn't execute it as expected. My question is, how can I pass the variable so that the resulting line of code doesn't have the quotes around the variable value.
var playnoyes='true';
var testtext = "<script type='text/javascript'>AC_FL_RunContent ('codebase','http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.[code]....
I am trying to do is declare a variable in PHP and pass that variable to my flash file. Right now i am simply trying to do 1 easy variable, more will happen in the future but i need to figure this out first.I have used other forums and they say try this and that, but nothing i do seems to work. here is my code.
PHP Code:[code].....
I have a custom class created by a main document class, and I want the custom class to run a function in document class after some time.
How can I sent the instruction from custom class back to the document class?[code]...
I am trying to pass a variable with brackets in the variable name. Example
productoption[]="value";
Whenever I publish the file flash gives me an unexpected "]" error code. Is it possible to have a variable name with brackets? I tried to use the escape codes %5B%5D to pass the brackets but that didn't work also.
i write my own code for php and actionscript...and i had a problem with it.. How to pass php variable to action script variable?
[Code]....
The question is a bit silly. I am trying to implement a skill updating system. So to explain.There is a class
class AppInfo
{
public static var power:int = 10;
[code]......
can i pass variable from one swf to another swf. each swf is in separate html page.
View 3 RepliesI am able to pass a variable from an html link that loads a separate html file and instructs the embedded file to go to a specific frame. But - I now need a link within an swf file on one page to open a new page and tell that swf to start on a specific frame and it is not working. Here is the code I use for the first example - works like a champ:
[Code]....
I want to put a variable at the end of a URL and have Flash "find" that variable. The url would be: [URL] "Campbell" is the variable I want to pass to Flash. I then have this script in the root timeline:
loadVariables (""+agent".txt", this);
I want "agent" to be replaced with Campbell. That way I can have it read a bunch of variables from the txt file. I tried this as well:
loadVariables (""+_root.agent".txt", this);
What am I missing in this?
I have declared one variable in one.fla file on a button press i am opening another swf file. [code]...
View 1 RepliesI use AS3 to pass variable to PHP. The script is as follows
<<Actionscript>>
var urlFailLoader:URLLoader;
var urlFailVariables:URLVariables = new URLVariables();
var urlFail:String;
[Code]....
However, nothing is displayed as I type "http://localhost/moodle/flashtophp.php" in browser. Why is that?
Now I understand this has been asked to go from Parent to Child before, which is all well and good, but what I want to know is, how do I go about passing from a Child SWF back to the Parent?[code]...
View 2 RepliesI have a main swf in as3 and I load another swf in as3 in it. Now I want the main swf to pass variable to loaded swf.
View 2 RepliesI want to pass a variable from one swf to another that will be embedded in an html page that the first swf will open. Basically, I want to pass a variable with the URL of the image that the second swf should load.
I respect people that have this knowledge, and I am not asking you specifically for the code, but for some directions on how to make this happen.
i write my own code for php and actionscript...and i had a problem with it..How to pass php variable to action script variable ?
e.g my php code (test.php) is
Code:
<?php
print"&phpVar=1";
?>
My action script code is
Code:
loadVariablesNum("test.php", 0, "POST");
if(phpVar == '1')
{
[code]....
The output should be "Condition A" Since phpVar = 1 ......The output of this script is always "Condition B" Means this script not detect "phpVar = 1" how to show this output "Condition A" by using php variable ?
I have two swf(a.swf anb b.swf) in as3 . Now I want pass variable From a.swf to b.Swf. i used the Loader Class.[code]...
View 6 RepliesI have 2 SWF's on my website. They are separate though - not using loadmovie. I'd like to have my first SWF play and then trigger the 2nd SWF to play when the first one is done. How can I pass a variable from the 1st SWF to the 2nd? Is this possible?
View 1 RepliesI have been looking for this couple hours and still can't find the answer. I need to pass variable BUT only through URL as I need to use it as a target link in html (so I can't use <object> flashvars), look below.[url]...
View 2 RepliesI have 2 SWF's on my website. They are separate though - not using loadmovie. I'd like to have my first SWF play and then trigger the 2nd SWF to play when the first one is done. How can I pass a variable from the 1st SWF to the 2nd?
View 1 Replieshow I can pass a variable calculated in a function, to the stage.
View 9 RepliesI would like to pass an imported XML value to MC's for display, but I either get an error stating the variable doesn't exist if declared XML or a conflict error if String.[code]...
View 1 RepliesI have one swf with a button which, when clicked, needs to go to another swf in a different php page but to a specific frame, not the start of the movie.In the first swf I have:
register_btn.onRelease = function() {
getURL("http://www.myurl.co.uk?f=register");
}
[code].....