ActionScript 3.0 :: Access Files Vs Access Network
Jul 2, 2010
My flash movie loads config.xml from the file system. Inside config.xml are urls and the base url to other xml files that I wish to load in to the flash movie.
These urls in config.xml are requested by the flash movie providing my flash movie with data. Again these are .xml files how ever they are being accessed using the network. EG " http domain dot com slash data dot xml"(i cant post links yet)
I know that I cant access both network and local files in the same movie so my question is this. What is the best way to pass in the base url dynamically to the flash movie so i can cut out config.xml?
View 0 Replies
Similar Posts:
Jul 27, 2009
The reason Ordinarily I would just host everything on the server, the swf file and images and serve them out using something like apache. However, we're working with an embedded device with hardware limitations. So we thought we could avoid this by hosting the images locally on a cd.But Flash player moans about the security settings. I know a way to overcome this would be to give the user instructions to change the global security settings- hence allowing both network and local access. But we feel that this would be too much to expect the end user to do.We want our model to work out of the box so to speak. Or as best as possible.
View 1 Replies
Jul 13, 2010
Is it possible to access both network and local files, flash player 9/10?
Here is the situation:
I have an SWF which runs locally on the client's machine.
It communicates, via XML socket, to a C++ server.
It also needs to read some configuration files from the local file system...
c:config.xml <---> test.swf <---> C++ server
So I need the SWF to be fully trusted, as if it was ran from the Flash IDE.But I can't tell my clients to set it to be fully trusted using Adobe's Global Security Settings Panel
What I can do is alter my C++ server code, somehow granting permissions to the SWF.
View 3 Replies
Feb 26, 2011
I've got a Flash Banner worked with AS3.0. It loads XML and then load the Jpegs. At the beginning, the SWF accesses the files under the same directory. So the code goes like
[Code]...
View 6 Replies
Nov 26, 2009
im testing out some AS3 and working on my first preloader. Ive run into the file access problem and looked about for a while and found that locally I can get files to load with the compiler flag -network=off. To put this online would I have to do a compile with the network on but with a Security.allowDomain("myDomain") line. Would this then work online so long as all the required files are in the same place.
View 3 Replies
Feb 14, 2011
In a plugin context (a swf loaded by an another swf), is there any way to restrict access to file system and network in the same time to the loaded swf?Compiler option "-use-network=true|false" does not fit because you cannot restrict both file/network.[code]The loaded swf is in user's document folder, outside Air app folder. Currently, the loaded swf is abble to load "c:/Windows/regedit.exe" and I don't want it (neither sending informations on the network).
View 2 Replies
Oct 13, 2010
Are there no ways to access CS3 files in CS5 at all? Any alternative ways to access the files without getting CS3/CS4?
View 1 Replies
Jan 18, 2010
I have a .flv file that has several images in it. However, I do not have the original images. There is an image in the .flv file that is a transparent image. How am I able to copy and paste it or do whatever I can to transfer it to photoshop so that I can save it as a transparent image?
It appears there is no way to do this. It looks like I must have the original images in a .flv.
View 7 Replies
Nov 18, 2009
Is there a way to deny direct access to a XML file without affecting access to the SWF?
View 2 Replies
Feb 24, 2010
I'm using SWFKit to create a native windows app from flash project. I want to embed video in project via SWFKit and then use it in flash.
Looks like I've found a way to embed external file but I can't find manual about how to access this embedded file via ActionScript in flash movie.
So the question is how can I access file "bridge.flv" in compiled project using ActionScript?
View 1 Replies
May 14, 2011
I have my main file (Main.mxml), and I have a main AS file (main.as). main.as is included by Main.mxml via <fx:Script source="main.as"/>. In main.as, I want to change the currentState of Main.mxml. How would I go about doing this?
Things I have already tried:
this.parent.currentState = "c_main";
this.parentDocument.currentState = "c_main";
this.parentApplication.currentState = "c_main";
View 3 Replies
Dec 21, 2011
I'm building a small game in AS3, and I have a lot of helper functions, so I've created Helper.as, just to clean it up.[code]...
View 1 Replies
Feb 10, 2010
I am looking for a way to access contents from LMS within a Web Server by a AS3 based AIR App. I have e-learning courses setup up already in my LMS. People usually access these courses through their web browser, now I would like to create a AIR desktop App by using AS3 to access those courses in the LMS. What steps should I do in my AS3? Those course made by Flash. Is that possible that the completed AIR App can show up those courses through the AIR App instead of through web browser?
View 1 Replies
Aug 19, 2010
Been tearing my hair on this problem for a couple of days.I'm trying to access a PHP file on the server to get access to a SQL database but for some reason I don't seem to get contact.[code]...
View 3 Replies
Oct 20, 2010
It's too complicate to explain but I'll give you an example
I have an AS3 ResultEvent Object and this object has several propeties which can be accessed by this like:event.result.name or event.result.age and, I have this String variable: eventProperty:String that contains "name" or "age" How do I access to event.result. with the variable?
View 2 Replies
Jun 5, 2010
I'm still a newbie at flash, but is it possible to have Flash get files from the server it is currently on, and then send those files somewhere?
View 1 Replies
Oct 24, 2011
I have a flash player which play mp3 files from xml. at now mp3 files are downloadable with software like internet download manager. if i move mp3 files to out of www and change xml location attribute to '../mp3filename.mp3' player can not play mp3. my question are
1) flash file can access files out of root folder
2) what is best way to protect files from download?
View 2 Replies
Oct 25, 2010
without explaining why, I need to run a flash slideshow from a live web page and it is for a photo exibition: The problem is that the slideshow, while running on a love site, must read the image files from the local computer that it is browsed from. If the computer is always the same and the files are in the same directory when it was developed, how would I tell flash that the files are not on the server, but on the local computer?
View 1 Replies
Nov 17, 2010
I have a number of actionscript 3.0 external script files in my game. They all contain functions that do various stuff like "load level buttons" and "go to selected level". I have a different external script file for each function. How do I link to those files and run the functions inside them.
View 3 Replies
Sep 16, 2008
I've written a content management system that writes(creates) xml files and uploads images to a directory outside of the webroot. I need to load these xml files into a flash application that resides within the webroot. The xml files contain tags that point to images that are used by the flash application.Having tested this successfully locally, I am using this directory structure:
/cms
/images
/xml/webroot
[code].....
View 1 Replies
Oct 22, 2010
So, you have a sprite, you draw some graphics, you set cacheasbitmap=true... I can't seem to access the newly created bitmap data, to access the dispose() method.
[Code]...
View 6 Replies
Mar 20, 2010
When I compiled the following code I had some problem.[code]...
View 12 Replies
May 17, 2010
There is a web game that I play and I used fiddler to see what temporary files it downloaded. While I was playing I deleted all those temporary files including the sounds and flash files. But it didn't affect the game at all. Why is that? I checked in fiddler and it doesn't look like the files were redownloaded.
View 1 Replies
Jul 30, 2010
Just put our new site live, and having trouble with one of the swf files playing. Using the colorbox jquery plugin throughout the site and this works fine. However a movie on [URL] (qcf engine movie) gives out a repeated javascript 'Access is denied' error everytime you close the colorbox?? Perhaps because the swf file is hosted on amazon s3, although other movies are playing fine from S3,
Example: [URL]
And the error: [URL]
View 1 Replies
Jul 29, 2011
How do I get round the following error: Access of undefined property pMatrixBack . How do I access this component from within the ascript file?[code]...
View 2 Replies
Feb 4, 2007
I have this situation (simplified):
MC-A.swf opened from local computer (C:/) and loads MC-B.swf which is hosted on a server.
When MC-B.swf is loaded, it tries to access file called "loader.swf" which is also on local computer (C:/).
When it tries to access the "loader.swf" I get the following error message:
*** Security Sandbox Violation ***
Connection to file:///C|/loading.swf halted - not permitted from [URL]
-- Remote SWFs may not access local files.
I read discussions concerning this issue, and as I understood, I could use:
System.security.allowDomain("[URL]");
to solve this problem, but it didn't work.
I wouldn't like to change the loaded file to load it's resources also from the web, since it can find them on the local machine.
View 4 Replies
Aug 13, 2009
How to access a variable in all class files. Is there is any tutorials or sample files.`
View 2 Replies
Aug 18, 2009
lod.load(new URLRequest(str2));how to unload the lod when second time i cal that function.how to over come this (*** Security Sandbox Violation ***SecurityDomain )
View 1 Replies
Mar 20, 2010
When I compiled the following code I had some problem.
private var image_loader:URLLoader;
public function loadImageData():void {
image_loader=new URLLoader(new URLRequest("studentphotosBlue hills.jpg"));
[code].....
View 8 Replies
Feb 17, 2009
i have a little issue, this is the script:
import flash.net.navigateToURL;
import flash.net.URLRequest;
button.addEventListener(MouseEvent.CLICK, action);
function action(e:MouseEvent):void
{ var request:URLRequest = new URLRequest("novosti.php");
navigateToURL( request, "_self");
}
button is instance name of symbol - button, and like that script doesnot work there is error 1009:cannot access.....but when i put symbol with instance name button in form of movie clip, script works.
View 2 Replies