Actionscript :: Loading Variables From Html Into Swf?
Oct 19, 2010
I have this project where I need to load 3 external variables into my swf-file on a webpage. The wierd thing is that I got this to work before, but now it suddenly wouldn't :
I use swfObject to setup the variables like this:
<script type="text/javascript">
var flashvars = {page:"page1", box:"head2"};
var params = {};
I have a html/flash site now, [URL]. i access email from my site itself by giving the userid and pwd text box which i copied from the actual website hosting my email access. i copied the entire <form...></form> tag to my page and thus was able to put the name and pwd in my home page only and access the email in a separate window. now i have redesigned my webpage using only flash. i would like to know how i can implement the same using flash. as i have not much experience using action scripting i am a bit stuck about how you pass the hidden form variables. the below is the the exact form syntax:
when you go to the home.html page an animation will play from start and then stop at the end of it. However, for all other pages i.e contact.html aboutus.html we need the animation to skip to the end straight away and not to play the whole animation through. I was thinking this would be controlled by a variable or some kind of external text file ect. Basically in the first frame the actionscript needs to basically say
"if this html page is aboutus.html then go to the last frame and stop" and with the index page it would say "if this html page is index.html then keep playing"
I've been making a thumbnail gallery which I want to replicate for lots of similar php pages. I don't want to have to make a new swf for every page though.Am I better to say in actionscript something equivalent to:
[varying which xml document I load by taking a var from the url, and having lots of different xml documents- in which case... how do I retrieve a var from a url and write that in actionscript?should I just have one xml document, but run some sort of foreach statement to dynamically output the relevant info in xml...- in which case... how do I write a foreach statement in xml? can I embed xml in a php document?
Then perhaps in the swf with as3 using something like this?
var myloader:URLLoader = new URLLoader() myloader.load(new URLRequest(this.root.loaderInfo).parameters)) myloader.addEventListener(Event.COMPLETE, onLoaded)
[code]...
Unsure how to access it using the correct path to the param and then how to get the php variable $myVariable into myloader.data?
I was just wondering what would be the "best" way to pass a variable that's in a swf to another swf located in another html.
something like index.swf embed in index.html and sends a value to a variable to index1.swf embed in index1.html.
What I'm trying to achieve is have a user select the language he wants, plays the rest of the swf and when it reaches the last frame it does something like
Code: //this is the last frame of splash.swf if (language == "fr") { _root.container.loadMovie("about.swf"); //_root is on index.swf
[Code]....
so that works perfectly when splash.swf is loaded into index.swf but now I want the same result but having splash.swf and index.swf on different html
I have a header with tab buttons--- When you are on a certain page the coorisponding tab is a different color(as a locator). Right now I have like, 7 or 8 different headers that are the same thing minus the colored tab of the current page.Is there a way to code the flash so that I only need one header, but still keep the off-colored buttons when on the coorisponding page?Apparently, from what I have gathered I need to Send a variable to the SWF from the embedding HTML using FlashVars or SWFObjects' 'addVariable' method etc so the SWF knows which tab/color to use.But, I have no ideal where to start...u
how do I passing variables between two swf (html) files For instance how can I request the variable "var_1" in the file blikvanger.swf (or blikvanger.html).Here is my code of one as file (contact.as):
I'm trying to create a reusable button like it was possible in ActionScript 2 using the Var of a dynamic text box, hence allowing me to chose the name of the button and its link inside the HTML and pass these variables on to the swf file. This therefore means less traffic, and faster load times.
I have a Flash movie (shell.swf) that loads in an external movie ("home.swf"). Within home.swf, one of two different swfs can load and I'd like to use a query string to determine which one loads.
In many tutorial i have find how to use FlashVars in embed or object tag of html. I used the FlashVars in an html file as follows:
[Code]...
Then in the fla I tried to display the userName in a text field. But its displaying undefined. Should I define any method in fla to access the FlashVars variable.
I have a flash file in a div. This div is set to visible (display:block;). The div has two sister divs. All three divs are controlled by custom built jQuery tabs, so when another tab is clicked, the currently visible div turns display:none;. When the tab is reclicked to set the flashes div to display:block, the flash file loses all its values that are stored (for example in a textarea, all the text gets reset, and where a element stores a path to the image, that gets reset).
I have tried other methods like width:0; height:0;, which sort of works, but as the flash file is larger than the other two divs, it is still visible underneath. So then I tried overflow:hidden; but the same issue still occurs as above (losing values).
visibility:hidden isn't applicable as there is a large white space where the flash file should be.
I've got a flex app that is basically completed it uses Zend AMF to connect/supply data.My app does have a login screen which seems to work fine. Now I'd like to add another login form on my site that would allows users to enter in username/password. When submitted form should pass the data to the flex app and bypass the application's login.
I've read tutorials everywhere which use PHP scripts etc.etc. to send data between the web page and flash. I am planning to play music from a web-page which is shown inside the flash application. The user clicks a hyperlink, and the url is given to the flash application, and the song is automatically played.
I am makeing a flash css generator to cusomize myspace profiles, I am up to the point where the full css code is generated, and then assigned to a variable. I am trying to make a preview button that will open a new browser window with a sample myspace profile but using the css defined in the flash variable. I can't seen to figure this out, I have found that the only way might be to use fscommands and a javascript gateway, but I am not well versed in javascript. Im at a standstill, I don't want to release my flash program until I have all its features operational, I have spent the last 2 weeks pulling allnighters from concept & design, to deciding features, and everyone who has beta tested for me says it can't compare to the other editors without a preview option. and I agree.
I'm having a bit of a problem with external vars and timing.I'm building a custom FLV player. In the parent HTML I have some boolean variables that I'm passing to the SWf, stuff like autoStart and loopPlayback.[code]The problem is that line gets executed before the external var gets in, I think. If I place a dummy var at the top of the AS then everything works fine. And the external var is definitely getting passed in, I have setup a check for that.I would need something like loadVars.onData ...but I'm not using loadVars, I wnat the vars to come in from the SWFObject HTML, or maybe a query string.
I'm looking to send variables from text fields in an HTML source and direct them to a SWF object on the same page. The variables would be sent once the user hits a send button.
I've got a main movie (main) loading another movie (forms) that includes a listbox (listBox) inside a empty movieclip (comboloader).. When I test this out using a getURL?variable="+ _root.variable it works fine in the flash test but when I run it from the site the variable is "undefined"
Here's my code for the button which makes all this happen.
(all variables are set to global) on(release){ formData = new LoadVars();
[Code].....
am I missing a _parent somewhere? Is there any reason this thing would work standalone (in flash) and not in the final file (when its loaded into another clip)
I am working on creating a Flash menu that, depending on the page calling the swf file, will show a specific frame just for that page. It works almost perfectly except for the very first time you access the swf during a given browser session. If you refresh the browser window, it will start working just fine after that as long as you stay in that same window.Incidentally, this is only for IE. It won't work at all in Firefox. It pulls the first set of frames, which is a template menu for one of the departments.The HTML code providing the variables:
*********************START HTML CODE*******************************
is it possible at all using Flash/AS to get the html source code of a webpage and parse it to get some variables from a specific part in the html code..?
I've got a main movie (main) loading another movie (forms) that includes a listbox (listBox) inside a empty movieclip (comboloader).. When I test this out using a getURL?variable="+ _root.variable it works fine in the flash test but when I run it from the site the variable is "undefined"
Here's my code for the button which makes all this happen.
(all variables are set to global) on(release){ formData = new LoadVars();
[Code]...
am I missing a _parent somewhere? Is there any reason this thing would work standalone (in flash) and not in the final file (when its loaded into another clip)
the button is set to: getURL("javascript:openNewWindow(movie,'thewin','h eight=400,width=400,toolbar=no,scrollbars=yes') ");Movie being the name of the variable set up earlier in the project to randomly choose my swf movie that I want to play. Then of course I have the function set up in the HTML page to listen for the variables for the URL, name and windowsettings. I can get the whole thing to work with an HTML page in the URL,
I want to have links on several pages of my website which, when clicked, take the user to an html page called "portfolio.htm" which has a flash portfolio on it. This portfolio is set up with a series of buttons which load external .swf files for each project. How do I tell flash which .swf to load when the flash file opens.
ex: user clicks on "project x" on a web page called print.htm. The user should then be taken to portfolio.htm where a flash file resides and loads "project x" into a movie clip called "content_mc".
All the other posts I've read make reference to PHP. Is it neccesary to use PHP, or can I achieve this without PHP?