ActionScript 3.0 :: Pass A String Variable To A SWF So That Can Specify A XML File To Load
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
Similar Posts:
Nov 17, 2004
I have a movie player that works fine when i hard-code the url value in the video function, but when i try to pass that url/file path from an external file, the video doesn't load. I suspect that there is something i'm doing wrong with the quotes. What am i doing wrong?
[Code]...
View 5 Replies
Nov 29, 2010
What I want to do is load the contents of a file and sent it to an mxmlc compiler as an argument parameter. I can load and read the contents of a file using loadfile and setting a property value say propery="filecontent". But the problem is I can pass it into the mxmlc (flex) compiler. I'm not able to pass it (tried with ${filecontent}) to the arg line. Its gives an error: "value contains unknown token 'filecontent'" How will I pass the contents of the file as a argument value to a compiler argument? Edit: The problem is with the include-resource-bundles arguments. When using command line it works. But using ant build doesn't. Do we need to manually provide the name of resource bundles by generating the resource file?
<exec executable="${MXMLC}" dir="${APP_ROOT}/src" >
<arg line="-locale 'en_US'"/>
.. .. ..
<arg line="-include-resource-bundles
[Code]....
which doesn't work and gives and error -> command line: Error: configuration variable 'include-resource-bundles' value contains unknown token 'resources'
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
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
Mar 5, 2010
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].....
View 8 Replies
Sep 21, 2011
I have a String variable in my flex (flash builder 4) application containing CSV data. I need to allow the user to download this data to a local file. For example, giving them a "csv" button to click and it might present them with a save file dialog (and I would be sending the contents of my string variable).Is this possible / how ?I am using the ResuableFX component for the datagrid to csv. This the code I ended up with that works to save the string to a text file for the user (in a web browser):
var dg2CSV:DataGrid2CSV = new DataGrid2CSV();
dg2CSV.includeHeader=true;
dg2CSV.target=adgEncounters;
[code]......
View 1 Replies
Aug 29, 2002
Here's what I'm trying to do:I have a parent container movie that has several buttons on it. As it stands now the buttons trigger an instance of a MC on the main timeline to play using the "with" action (no biggie)I would like to put a frame action in that MC instance that uses the "LoadMovieNum" action to load a particular external SWF movie into the container movie depending on which button the user clicked.In theory I guess I need to somehow associate each button with it's corresponding SWF child movie that is to be loaded (SetVariable?)Then I need to pass that information to the MC instance in the main timeline that actually uses the LoadMovieNum command to load the SWF file.
View 7 Replies
Apr 8, 2009
I am trying to send a single variable from a flash application to a php file. The user input field in flash will send a variable to the php file for purging of the database. The following returns nothing. There is no error. I believe the error is in the php and not the flash. Here is my actionscript for the flash[code]...
View 7 Replies
Nov 2, 2011
I'm trying to pass a variable from my main swf to another one that's being loaded in a container in the main swf.I follow this Link,Its Working Fine,My problem is, if i declared the variable within the function i Cannot Access the Variable.
[Code]...
View 2 Replies
Nov 1, 2011
I have main in .as file, in that file i loaded the .swf file now i want to take the values from .swf and pass it into .as file how can i do this? Here my Coding !
[Code]....
View 6 Replies
May 1, 2009
How do I pass a variable between .AS file and .fla file?
View 7 Replies
Nov 1, 2011
I have a main in .as and I load .swf in my .as.It's Working fine,Now I want the take variable From .swf and Pass it Into .as.
My .swf file coding
function formatMessage(chatData:Object)
{
var number:uint = chatData.user;
trace(chatData.user);
[Code].....
View 2 Replies
Jul 30, 2009
I have a simple menu class for site navigation[code]...
I would like to be able to listen to the value of 'btnName' inside my .fla and respond accordingly.
Is it possible to pass this variable from an external .as file into my .fla?
View 10 Replies
Feb 12, 2007
i am creating a variable MCount which will increment each time the button is pressed... in turn it will then load the next movie in the folder.[code]
View 4 Replies
Mar 7, 2012
I'm beginner in actionscript 3, and I'm trying to pass a variable from the main fla to external as file.
View 1 Replies
Dec 21, 2011
I 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.
View 1 Replies
Dec 13, 2009
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]....
View 1 Replies
Feb 17, 2010
I'm trying to create a simple SWF file that can receive the name of a FLV file in the HTML file and play it since I have many FLV files. Basically using the technique of FlashVars. I've set the contentPath/source in the components to be blank, and set my actions in the first frame to be player.source = filename, as was instructed to do so in a Flash book I am reading. I then set the "filename" variable to a file in the same path as the web page in the HTML file, however, all I get is a blank Flash player skin. The FLV file will not load. I also tried setting the "filename" variable to load the FLV from a public website in the same domain and on another domain, but it still doesn't work.
View 5 Replies
Oct 7, 2009
I am trying to grab a string that is loaded into my dynamic text field and use it as a variable.
The text field is populated when another button is pressed first which says input_txt.text = "myInput"
...I gave my dynamic text field the instance name input_txt
So I wrote out (on a separate button):
on (release) {
var input:String = input_txt;
trace(input);
}
I get "undefined" as my output
View 1 Replies
Jan 19, 2011
So i have an external text file organized like this:
/* $file: data.txt */
&title0=Sacrum
&detail0=Detail text for Sacrum
&title1=L5
[Code].....
There are 28 of these 'title' and 'detail' pairs. The 'title' text is to fill a dynamic text box and the 'detail' to fill another dynamic text box depending on which section the user is mousing over.
My issue is getting the text from the file stored into arrays. For my test loop I keep getting undefined as the stored value, and i know it has something to do with converting a string value to object..
var lv:LoadVars = new LoadVars();
lv.onLoad = handleDataLoad;
lv.load('data.txt');
function handleDataLoad (success:Boolean) {
[Code]....
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 14, 2004
i want to load variable from text file to my main movie (swf file).what should i put in the second parameter of the function loadVariables ("target" parameter) - should i insert _this? _parent? _global? (nothing works.
View 3 Replies
Sep 14, 2009
I'm completely new to Actionscript 3, and I can't seem to figure out how to do nothing more than load a string of text into the code and into a variable.
I just need a way to get the contents of "somefile.txt" into the variable "someVariable".[code]...
View 2 Replies
Apr 6, 2008
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.
View 1 Replies
Oct 3, 2011
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]....
View 3 Replies
Jan 3, 2006
f you know PHP...then you know that you can create a string variable...and then use the value of that variable to declare another variable. like this:
PHP Code:
<?php$foo = "haha";$i{$foo} = "success";print $i{haha};?>
and it would display "success"...or like this:
PHP Code:
<?php$foo = "haha";$$foo = "success";print $haha;?>
and it would also display "success".
View 6 Replies
May 17, 2002
I load a variable from a txt file.The dynamic text box has html turned ON.All characters are embeded.Here's the problem:In the txt file I have a text that contains an html link:
myVariable=Hello! This is my text! Click <a href=http://www.uachq.cjb.net>here</a> to visit my site!
However the swf displays everything up to "Click" ie before the link:
Hello! This is my text! Click
And that's it. I heard that Flash can recognize a simple html command like <a href> but this seems odd to me... Why isn't this working?
View 10 Replies
Dec 22, 2004
I have an external SWF file that is a dynamic chart. It normally requires (in the object and embed tags on the HTML page) a variable passed to it that points to an XML file.
What I want to do, is create a "container" program that simply has a few buttons, that when clicked load up that same chart.swf and point it to a different XML file.
What I can't figure out is how to get that external file to recognize it's dataURL parameter that it normally receives off the html tags. (BTW, I can't edit that chart.swf, it's a purchased product.) I tried setting a root variable of the same name in my container to point to a new XML file, but that doesn't work. I tried setting that variable, and using loadMovie with a GET to pass it the name, but that just looks for a string that flash seems to be interpreting literally, so it can't locate the file at all (I.e. it's looking for the literal name "chart.swf?dataURL=datafile.xml")
View 6 Replies