Flash :: Pass A String From A SWF Into Another SWF
Aug 3, 2011
I am using Flash CS5, never touched Flex. Also the SWF that is doing the loading will be a client SWF, so hoping for a solution that could work with a simple couple of lines.
Basically inside the SWF I am working on contains just a simple string:
var theString = "theString";
trace("theString = "+theString);
Now I've been working on a test loader SWF that will load my String SWF and get the variable in the simplest way. Any thoughts? Below is my current broken code:
function loaderComplete(event:Event)
{
trace("... in loaderComplete");
getString = loader.content.toString();
[Code].....
I've searched on Stack and found similar questions, but none are exactly what I need:
tracking video files - embedding flv to swf
^ Basically what I'm trying to do as well, no answers yet
to pass variable from one swf to another swf in as3
^ sounded just like my problem, but answer was a Flex application example
pass var values from one swf to another swf who is loaded inside the firts one in AS3
^ This was close, but am not sure how to implement the chosen answer, also seems a bit more intricate then I need
View 2 Replies
Similar Posts:
Jun 22, 2010
How can I pass a string from PHP to Flash?
I need to pass this to flash[code]...
View 2 Replies
Sep 11, 2009
How do you pass Query String in AS3 in FLASh CS4?
View 1 Replies
May 13, 2010
so I have my php API (html Get api for Flash builder and C# apps). So if you want to submit data to it you use string like
[URL]
If there are english letters in it its ok. But what if I need to pass UTF-8 string like this Русское Имя to my api what shall I do?
View 1 Replies
Aug 7, 2010
I want a way to pass a string statement from one base class to an other. The two classes are CLICK and READ.What's an easy way to do this? I haven't worked in classes that often to know some of the simple tricks.
[Code]...
View 2 Replies
Apr 29, 2010
Parent loads Child, and wants to pass text string to Child. How can Parent pass a string
to Child swf?
PARENT.SWF
//LOAD CHILD 'has a symbol on stage called LDR that CHILD loads into'
var loadCHILD:Loader = new Loader();
LDR.addChild(loadCHILD);
var bgURLTxt:URLRequest = new URLRequest("CHILD.swf");
[Code] .....
CHILD.SWF
'has DynamicTextfield called txtBuddy'
View 1 Replies
Jan 2, 2008
I've got an XML file that I get the URL for my server from and also get the names of videos to populate a list.I can get the URL into a string in my program (it traces fine). when i try to pass that string in my nc.connect(string) it doesn't work. Everything loads fine, but when you click a video, it can't connect to it. If I manually enter the URL into the connect field like this:nc.connect("rtmp://url") it works fine.Why can it take the URL manually entered and not from a string?
View 9 Replies
Jan 29, 2010
I am asking this question as a complete Flash novice, so please do point out if I'm doing anything wrong here (I suspect I am). I have a Flash MPU size animation with a link in it which has been created by using a full sized transparent layer as a button (is that the correct way) with the following ActionScript:
[Code]...
View 1 Replies
Dec 21, 2009
Is there any way that you can pass a string to a function and use its value as the variable name you wish to change. For example.
Code:
var text:String = "Goodbye World";
function myfunction ( varToChange)
{
varToChange = "Hello World";
}
myfunction("text")
View 2 Replies
Jan 27, 2010
I created 4 buttons with 4 animations each, one for each state (using tweens), so I have that imense list of 16 "addEventListeners" (don't know if there's another way to do it). But everything is working as I would like.
The problem is that I'm trying to create only 4 functions to take care of all the 4 buttons and those 16 eventListeners.
This is part of my AS3 file (still with the "traces", 5 secs of animation to check the animations and all).
[Code]....
View 10 Replies
Feb 13, 2010
So, I want to pass a string variable to a SWF so that I can specify a XML file to load without republishing the SWF. When I assign the string variable to a textfield it is correct. But when I use that variable in the loader it does not display the XML from that file. You can see below that I commented out the string "lesson_11/images/0301_objectives.xml". If I put this string in the loader it works, if I use the string variable in its place it does not work. Can anyone see what I am doing wrong
Code:
var xmlFileToLoad:String;
var myQueryString:Object;
[code].....
View 1 Replies
Oct 7, 2010
How to display the correct digits. For instance, if the answer is 97%, I want the display to show 97, not 11. Please feel free to view the SWF or look at the FLA file to see[code]...
View 5 Replies
Feb 27, 2011
How can I pass a string to an array?
What is the difference from doing:
Code:
private var myArray:Array = [{option: "MAR11 100 C", contracts: "-10"},{option: "APR11 100 C", contracts: "10"},{option: "MAR11 90 P", contracts: "-10"},{option: "APR11 90 P", contracts: "10"}];
[Code]....
How can I assign that "text string" to another variable and then pass it into an array?
View 2 Replies
Mar 12, 2006
I'm creating a webpage where all the content is within the same swf. In order to get things to work I have all my different content in different MC's. Each of those separate MC's have two frames inside. One where it's empty and the other where the content is displayed. To make this work I have a variable name 'page'. My menu is supposed to pass a string to this variable and at the same time trigger a transition to be played ('doors' sliding over and hiding the stage).
Then the transition sets all my content MC's to the hide position. Then it checks what the page variable is and sets the corresponding content MC to show before the 'doors' open again. At least that's how it's supposed to work in theory. But I haven't figured out how to do all this. First off I don't know how to get my menu to pass that string to the 'page' variable. Here's my menu with the problem area marked:
[Code]...
View 6 Replies
Mar 18, 2009
Is there any way that you can pass a string to a function and use its value as the variable name you wish to change. For example.
[Code]...
View 1 Replies
Jan 10, 2011
I'm a beginner that is stuck at the moment. I've made several comboboxes, and what I am trying to accomplish is add those values to an url and pass it.Example: In the first combobox I select year: 2009, second one I select genre: horror, third one I select language: us, which then should string those together and give me this url for example, "file.php?year=2009&genre=horror&language=us"I am working with an array, filling it with values and then stringing it together, but several problems arise, first one, I don't know how to skip the "&" for the first value. Also I do not know how to ignore undefined values in the array.Here is just one combobox I use and the handler:
Actionscript Code:
var seljaartal:Array = new Array({label:"Year", data:""}, {label:"1939", data:"jaar=1939"}, {label:"1940", data:"jaar=1940"},
[code].....
View 7 Replies
Mar 5, 2010
I've been searching ferociously and can't seem to find a solution that works for me. I am trying to pass variables via query string on a PHP page to Flash, and then have the swf add movie clips to the stage depending on the information it receives. Here is what the PHP outputs:
[Code]...
View 2 Replies
Sep 13, 2011
I cant pass the query string while using the debugger or else i cant debug when there is a query string. how to use the bothAm using a web application in flex using php for ex : [URL]
View 2 Replies
Mar 17, 2010
I'm fed up of having to import the tweener class every time I create a tween, so I want to create a global function that I can call which will import them for me, as well as executing a tween.[code]...
View 7 Replies
Jun 18, 2006
Can buttons take variables? Right now I'm trying to pass a string into a buttons text field with:
this.button_btn.one_txt.text = "hey";
It doesn't work, and the path is right? Is there something special I need to do?
View 3 Replies
Feb 4, 2008
I want to pass a series of properties as a string to a webservice:Version1: This works
Code:
var mxna_ws:WebService = new WebService(WS_URL);
var var1:String = "1";
[code].....
View 1 Replies
Nov 7, 2009
Is there a way for flash variables or text to become available to an external program? I have a flash projector and a windows program that I am writing and I need a way for the the windows program to recognize what the flash is doing (But the flash does not need to know what the windows program is doing.)
View 2 Replies
Mar 1, 2011
I have a very odd problem with Flash 10 and ExternalInterface. I am currently using a homemade bridge to use RTMFP with Javascript and whenever I try to pass data that contains JSON, I get a wierd Javascript error that comes from Flash[code]...
View 2 Replies
Jun 14, 2010
I want to pass a string variable to a SWF so that I can specify a XML file to load without republishing the SWF. When I assign the string variable to a textfield it is correct.But when I use that variable in the loader it does not display the XML from that file.You can see below that I commented out the string "lesson_11/images/0301_objectives.xml".If I put this string in the loader it works, if I use the string variable in its place it does not work.
Code:
var xmlFileToLoad:String;
var myQueryString:Object;
[code].....
View 1 Replies
Jun 12, 2008
I'm trying to pass a random string to multipe swf files using SWFObject 2.0 I'm able to pass the string to one file, but it wont pass to any other object (even if i remove the object that it works on, the string wont pass to the others )
here's the HTML / JS / AS
It only seems to work on mainStage....
ActionScript Code:
package {
import flash.display.*;
import flash.events.*;
[code]....
View 2 Replies
Jul 4, 2010
I have a Facebook application that has a picture gallery. It's build in Flex 4. I want to allow users to link to a specific image. How can that be done?
The only way I see this being done is adding a GET var like &my_picture=asd.jpg in the Facebook page URL, but I don't know how to read that from the iFrame.
View 2 Replies
Oct 11, 2011
i'm a newbie in Flex/Air. I'm developing an AIR web browser and i want to use a virtual keyboard to write in the HTML pages.it works well when i try to write in a text area, but i don't know how to write in the html page.EXAMPLE:To write in textarea, i just have to call this:textarea.text = event.keyLabel;
View 1 Replies
Mar 2, 2007
why wont this work?
some_mc["nested_mc_name"].onPress = function():Void {
trace ("test")
};
I'm trying to make a dynamic function so I can pass a string var for the name of any nested movieClip I want on the fly.
View 1 Replies
May 29, 2010
I am trying to pass FlashVars into public class EventDispatcher to set the path to data.xml. I need it because the name and path of the xml file will be dynamically created. I need to use Flashvar in order to access the correct path. I was able to pass Flashvar from html page on timeline this way:
PHP Code:
var Flashvars:String = LoaderInfo(stage.loaderInfo).parameters.xmlfile;
Then, I was able to use it for new UrlRequest;
PHP Code:
var request:URLRequest = new URLRequest(Flashvars);
This method works really good, but this solution only works on timeline. I need to implement this technique in the class. Before I setup a static var for with the path to xml file. I'd like to be able to get FlashVar withing this class and assign this string to 'public static var DATA_XML_URL:String' I have there. This way I can pass Flashvar to the project I already have.
Below is the class where I can implement it:
PHP Code:
import flash.events.Event;
import flash.events.EventDispatcher;
import flash.display.Sprite;
import flash.display.LoaderInfo;
import flash.display.MovieClip;
[Code] ......
View 3 Replies
Nov 15, 2009
i have a bitmap in the library with export name Dots
1. how do i take this and pass it to the class which expects a Bitmap as a parameter? if i load it externally i could say:
[Code]...
View 5 Replies