ActionScript 2.0 :: LoadMovie With Query String On Local Machine?
Nov 27, 2007
I've been given a bit of a dog to work on. I'm upgrading a flash presentation that runs via an xml feed. I've added several dynamic flash graph generators external swfs through this data feed but can't seem to pass a query string to the flash presentation via this xml feed. This query string provides an alternate XML datasource for the graph generator.s
I would really like to be able to pass this query string as the current flash graph generators are running off a hardcoded xml filename and I would like to offer some flexibility. I've investigated further and the main presentation loads these extra "slides" with the loadMovie AS which should accept query strings but NOT locally. Is there a workaround to make loadMovie work with query strings locally? I can't run the presenation on a server!!
For example. This XML works locally with the flash presentation;
<slide>
<name>Chart 1</name>
<bullet>chart01.swf</bullet>
</slide>
[Code].....
View 1 Replies
Similar Posts:
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 26, 2010
I am successfully Passing HTTP Query String to Flash Query String.
Resuming:
inside html
Code:
' <EMBED src="Film1.swf'+document.location.search+'"
'+
inside as3
[Code].....
Then Film1.swf can't grab no more the userName parameter.
View 4 Replies
Aug 26, 2010
I am successfully Passing HTTP Query String to Flash Query String.Resuming:inside html
HTML Code:
' <EMBED src="Film1.swf'+document.location.search+'"
'+
[code].....
View 1 Replies
Oct 3, 2007
I really don't understand why this won't work? I've made a test which sends some POST data to a script on my page which works fine.[code]
View 14 Replies
Jul 9, 2011
Error: Error #2101: The String passed to URLVariables.decode() must be a URL-encoded query string containing name/value pairs. at Error$/throwError() at flash.net::URLVariables/decode() at flash.net::URLVariables() at flash.net::URLLoader/onComplete()
[Code]...
View 1 Replies
Aug 15, 2010
I get following Error when trying to pass variables via URLRequestMethod.POST;
Error: Error #2101: The String passed to URLVariables.decode() must be a URL-encoded query string containing name/value pairs.
Is there a method for string URL Encoding?
View 4 Replies
Oct 18, 2009
I have an xml driven swf enbeded in xhtml page that plays fine when tested on local machine through dreamweaver CS4 but once uploaded to site, swf won't load. The music plays however so I know it's not about the linking.
Here's the xhtml code:
<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="[URL]" width="500" height="400" id="mymovie" align="middle">
<param name="FlashVars" value="xmlFile=VVsite/robshow/virtual_tour.xml&preloaderBackColor=0x0099ff&prelo aderBorderColor=0xCCCCCC" />
<param name="movie" value="VVsite/robshow/virtual_tour.swf" />
[Code] .....
View 3 Replies
Mar 23, 2010
flash works on local machine but not server?
View 1 Replies
Jul 2, 2009
Is it possible to save images in to local machine while loading images in a flash component from a server. I think it's possible to save images in to local machine using actionscript3. I want to know whether its possible by actionscript2. While searching i got some tutorials regarding this but its using actionscript3.
View 2 Replies
Jul 14, 2009
how to save my drawing (image or movieclips) to my local sytem without any server side script . i m using player 10.
View 1 Replies
Aug 24, 2010
is there a way to save, not save as, from an online flex app onto someone's local machine?asically, if a user opens a file local to their machine in an online flex app, is there a way to allow them to save it locally without going through dialog boxes and picking file names?
View 2 Replies
Aug 29, 2011
I placed google map in the local machine. But I can't see any placemakers in the output. But it is displaying well in google map.
View 0 Replies
Mar 7, 2012
I wen through the flare 3d tut and got everything working in Flash Player 11.1 embedded in a HTML document, however it does not work when I try to view it once it's been placed on a web server. I can open the html page from my local machine and it runs just fine.
View 6 Replies
Mar 10, 2004
I have made a preloader showing the progress of dynamically added images. The code works fine when i play the movie on local machine, but when i play the movie from the server bytesTotal is always 0. It even says 0 after the images has finished loading. what i'm doing is basically: createEmptyMovieClip() , i then use a movieClipLoader to load jpeg into that empty movieclip. the movieClipLoader has a listener attached and with the listener i use the function onLoadProgress() to display bytesLoaded and bytesTotal all of these things occur within one function.. bytesLoaded works fine both on local machine and from the server
View 2 Replies
Jan 19, 2007
i wonder if it's possible to load an image to a flash movie from your local hard drive without uploading the image to the server?
eg: loadMovie("C://yourImage.jpg");
it works fine locally, but once i upload it to the server, the image won't be loaded.
the reason is, i want to build a flash site that allow users to create an e-Card using their own image from local drive. i don't want users to upload anything to the server.
View 4 Replies
Feb 13, 2009
I am working on a flash application on my local machine. It involves reading and writing to an xml file. I am facing a lot of security problems because of flash sandbox. In order to get around this I have installed php+apache to call an external file that writes to a file. I have created the crossdomain.xml and put it in the root of the web server on my local machine.
However, I can ONLY run the flash file in the flash program AND IT DOES WRITE TO A FILE. If I publish it as a html I still get the security error msg. Now another requirement of my program is as the user interacts with my flash application it changes an xml and the page should refresh to show the changes. But because I can't run my flash program as a html file I can't refresh the damn page! I'm half thinking of setting up a vm machine as a pretend server to get this damn thing working. Then I at least have the server + client model.
View 3 Replies
Mar 10, 2004
I have made a preloader showing the progress of dynamically added images. The code works fine when i play the movie on local machine, but when i play the movie from the server bytesTotal is always 0. It even says 0 after the images has finished loading.what i'm doing is basically: createEmptyMovieClip() , i then use a movieClipLoader to load jpeg into that empty movieclip. the movieClipLoader has a listener attached and with the listener i use the function onLoadProgress() to display bytesLoaded and bytesTotal
View 2 Replies
Jun 21, 2009
I am trying to make a contact form. When I test the form, I get the following error message in the Output:
[Code]....
View 9 Replies
Jul 10, 2011
Error: Error #2101: The String passed to URLVariables.decode() must be a URL-encoded query string containing name/value pairs. at Error$/throwError() at flash.net::URLVariables/decode() at flash.net::URLVariables() at flash.net::URLLoader/onComplete() _____________________________________________________________________ ________________________________ stop(); var DepartVars:URLVariables = new URLVariables(); var DepartURL:URLRequest = new
[code]....
View 9 Replies
May 4, 2010
Error: Error #2101: The String passed to URLVariables.decode() must be a URL-encoded query string containing name/value pairs.
[Code]...
I'm not where error exactly the error happen so I post the whole thing. As far I know bottom code that relate to send_loc.php works fine, get_loc.php is having a problem. The output from get_loc.php is
[Code]...
View 2 Replies
May 4, 2010
I need to be able to pass some variables FROM flash and append it to the end of my address. I assumed that if I used LoadVars, I can append the vars to the end of the string like this:
ActionScript Code:
send_btn.onRelease = function ()
{
var my_lv:LoadVars = new LoadVars();
[Code].....
View 4 Replies
Mar 21, 2010
I am building a site off of a template and I have a major issue. The site looks fine when previewing it on my computer or in flashBut as soon as it is uploaded it distorts the siteNotice the non-centered tabs and messed up text
View 3 Replies
Aug 6, 2011
I have an actionscript file which provides me with xml data. But I m not being able to save it to the local host machine. The code i m using to save the file is just the normal one i.e
var xml : XML = <save><instruments/></save>;
var fileRef:FileReference = new FileReference();
fileRef.save(xml,"NewFileName.xml");
I've tried saving the data as byteArray first n saving it in a xml file. That didnt work. I've flash player 10 installed and I m working in Flash Professional CS5. I have also used a hex editor and changed my swf file's 7th and 8th bits from 09 to some A0 as directed in a website but I m always getting an error which is
1061: Call to a possibly undefined method save through a reference with static type flash.net:FileReference.
View 2 Replies
Feb 1, 2012
I am new to Flash/ActionScript, and I am having a lot of fun creating a project in Flash. am working on a character tracker (yes I am totaly geeking out) an I was wondering how to save the data I have entered into the project (hit points etc...) and load it back next time I opened it. The data would be saved on my local machine. How can I get Flash/ActionScript to do this?
View 11 Replies
Feb 13, 2009
I am working on a flash application on my local machine. It involves reading and writing to an xml file. I am facing a lot of security problems because of flash sandbox.In order to get around this I have installed php+apache to call an external file that writes to a file. I have created the crossdomain.xml and put it in the root of the web server on my local machine.However, I can only run the flash file in the flash program. Even if I publish it as a html I still get the security error msg.Now another requirement of my program is as the user interacts with my flash application it changes an xml and the page should refresh to show the changes.But because I can't run my flash program as a html file I can't refresh the damn page!I'm half thinking of setting up a vm machine as a pretend server to get this damn thing working. Then I at least have the server + client model.
View 0 Replies
Jan 11, 2005
I want to use this Flash MP3 player URL...on my website to play my music compositions. It is a fantastic player, but it is caching the mp3 files to location "C:Documents and SettingsuserLocal SettingsTemporary Internet Files" on the user's machine.Is it possible NOT to cache the mp3 files to the user's local machine.Pls let me know if there is any other flash xml mp3 player which has the same functionalities.
View 14 Replies
May 28, 2005
I want to know how to save some variable values into a local machine... as for example a save button. Then the user plays the movie again the variables show up as he left them. I think this is done by SharedObject or something like that...
View 2 Replies
Feb 19, 2010
Is it possible to turn off sandbox checking when developing on a local machine? I know this could never be allowed on a production version but publish and upload after every edit?
View 5 Replies
Apr 29, 2009
I have an action script that plays flv files when I run it on my local machine (no web) server then it playes well but if I run it on the server it does not
Code: Select allvar netConnection_:NetConnection = new NetConnection();
netConnection_.connect(null);
var netStream_:NetStream = new NetStream(netConnection_);
[code].....
View 5 Replies