ActionScript 3.0 :: Pass Variables From .as To Main Project
Nov 11, 2009
Im trying to pass a number to 1 function in my .as... In 1 part of my project i want to sent a number to .as function, and in another part i want to receive another value... like this.... The sintax is wrong, but i think i can made myself easier to understand...
Im trying to pass a number to 1 function in my .as...
In 1 part of my project i want to sent a number to .as function, and in another part i want to receive another value...
like this....
The sintax is wrong, but i think i can made myself easier to understand...
----------------------------------------------------------------------- In this part i want to send a value to my .as function... Ultimo(var int guardaultimo = 1);
how to pass variables from one Movie clip's AS file to my Main AS file. Let say my Movieclip's AS file is calling damage = 1; so how the Main AS file retrieve the damage value from the Movieclip's AS?
Code: public class robotMC extends MovieClip { public function robotMC() {
I'm trying to do a demo with a fastforward button and a rewind button that will go to the next scene and previous scene...however, due to the format that my predecessor created used...I'm stuck with alot of scenes. The navbar (ff and rewind buttons) is in a .swf file called main. The actual demo is in demo3.swf. I created a loader scene to redirect to the correct scene (when ff and rewind are hit), but I'm not sure how to pass the variables needed from the main movie.
Make things very simple, I need to pass variables between different movie clips (.swf's) on my main movie. It seems as tho my variables are only local, not global, i just need to know how to initialize global variables, and how to use the global variables in my other swf's.
I have been trying to figure out the following: main.swf - contains my photo gallery application preloader.swf - loads the main.swf file and on COMPLETE event displays it
At the moment the gallery list is in the XML file and the XML file is loaded from the main.swf file. However, as the XML file will grow, I want to preload the XML file along with main.swf file in the preloader.swf and then pass the XML data to the main.swf file so that main.swf file can use this XML data and can create the galleries from there. I am using AS3 Project in Flex Builder 3.
Does anyone know how to pass a "page" variable thorugh link to a main .swf file (index.swf)? The file would normally load "home.swf" into it if accessed by But I would like to able link to a different .swf determind by a varible like "page = contact.swf"
how to bind two variables in AS3, but for a Flash project instead of a Flex project. I found references to binding with Flex, but I assume this should be somehow possible in Flash as well.
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 and pass the variables to a text box in the new window.
I have a main swf that loads different swfs files, one of this swf files is the homepage with navigation items, how can I pass a reference to the loaded home.swf of the main.swf which contains the load methods?
I try creating a var in the home.swf class with the main.swf class type, but the home.swf give me errors that cant find other objects contains in the main.swf
I have a variable in an as2 movie, urlwholoadedme =_level0._url; , that i need i need to pass to an as3 swf that gets loaded ((loadMovieNum("movietoload.swf", 1); ). what is the most efficient way to do this?
I am using CS3 and I write the following code as to pass variable to flash from PHP
Actionscript
var myLoader:URLLoader = new URLLoader(); myLoader.dataFormat = URLLoaderDataFormat.TEXT; var myRequest:URLRequest=new URLRequest("http://localhost/moodle/value.php");
I am trying to load an AS2 swf from an AS3 swf. The AS2 swf which was written long back, expects parameters from the timeline(_root). These were passed to it before from HTML using flashvars. Now I am trying to get rid of the HTML pages, by directly loading the AS2 swf from the AS3 swf. However, when I try to load the AS2 swf using the Loader class, the swf loads fine, but the parameters are not getting passed on.
I tried to add the query string to the url parameter I used in the URL request used for the Loader, but that did not work.(Adding URL variables as data to URLRequest did not work either.)
I want to have a button and when clicked, it does the equivelent of going to this php address and executes the php, as it would by typing into address bar. Simply activates php script with variables.
I 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.
In Flash CSn/AS3 you associate a Main class with a flash file which when loaded in the flash player "automatically creates an instance of the program's main class."I'd like to know how to pass arguments to the main class, since you don't write it yourself (you put its name in the Document textfield in the IDE).
I am trying to build a AS3 only project in Flex....I have tried debug mode, but seems like it takes so long to compile....I can't use trace or check variables...Are there anyway to do debug??
i like to know how do u pass variables from flash to another html. mine is just one simple variable.what i get from flash Help is using GET and POST(after declaring the variables)
I am generating a url from another application that looks like this: I am trying to pull the variable "mark" into a swf and display it in dynamic text box. The URL will change depedning on the user and I plan on adding additional variables to the string as well (lastname, state, age, etc).
I have a real simple request for some reason cannot pull it off. I have a url that looks like this: [URL]
I am trying to pull the variable "mark" into a swf. The URL will change depedning on the user and I plan on adding additional variables as well (lastname, state, age, etc).
I use actionscript 2 but would consider myelf a novice as I am more into design.
I have been grappling with this problem for days now. I want to set two variables in a SWF and have them passed to FlashVars PHP page. I can get it to work when I just send one variable with this code:
So I have an SWF8 file as a player on one domain (unsecure). It loads and plays an SWF8 from another (secure) domain. So far so good. Trouble is, I need the player to send variables to the files it's playing so that links in that SWF will, well, link. I also need the player to receive some movie control commands in return. There must be a rule or two I'm violating, because while the file plays, anything that depends on a variable is just dead.
A note: Both files started out as SWF6. I understand I can only do what I'm trying to with SWF8, so I went through the code and fixed the case sensitive issues and did the conversion.