ActionScript 3.0 :: Search Local Hard Disk To Display Txt Files And Or Jpgs?
May 14, 2010
Is it possible to script a flash application to search the local hard disk to display txt files and or jpgs? I would like to be able to enter some text in an input text field then have flash search my hard drive for what i typed into the txt field.
View 3 Replies
Similar Posts:
Nov 7, 2011
how to store data local hard disk in flash applications
View 1 Replies
May 1, 2010
MMO best practice. Download music and heavy files to users hard disk? I have just downloaded a Hello Kitty MMO app for research (for my kid of course).I am developping my English teaching app with LOADS of classical music, mp3 sentences and heavy background bgs. Would the best idea be for client to download these to their hardisk ie I would not need to stream them and therefore save a fortune on bandwidth charges from my ISP?
View 3 Replies
Jul 26, 2011
I've posted this in the AS3 forum, but I was told its supposed to go here...I need to know if it is possible to do this in AS2...
Code:
w w w.kirupa.com/developer/as3/loading_files_disk_pg2.htm
(cannot add links... since I have less than 50 posts)
[code].....
View 5 Replies
Aug 20, 2010
Im not sure if this is possible in AS2 but i will ask anyway! Would it be possible to have a standalone SWF which gives the user the ability to browse their computer files and then load a picture for example? I know this can be done in AIR but im restricted to AS2 only!
View 1 Replies
Nov 14, 2011
I got a very nice article to load files from local disk to flash movie directly.
article link : [URL]
i want to do same thing using as2.0
View 8 Replies
Feb 19, 2010
When I download the following flash animation with swf catcher on my harddisk and open it, then I cant view it.[URL]..
View 3 Replies
Aug 4, 2011
I'm using action script 3.0 compiling the code to flash 10 how to get hard disk serial number with action script?I want to get this info without any security requirement. Is there a way to do it?
View 2 Replies
Feb 22, 2009
i want to find the windows path on hard! it may be c:windowsor e:folderwindowshow can i find this path with AS2?
View 1 Replies
Mar 24, 2012
FMS receive livestream (on Media live encoder or other way). Output device in my program [url]...
How i save permanently this media stream to hard disk?
View 1 Replies
Jun 2, 2006
in writing XML File on hard disk ... i make a xml object on runtime .. menupulat it and then i want it to save on hard disk of the client .... i want to used this for both online and offline flash aplication.
View 2 Replies
Nov 16, 2010
I wonder how can I download/save/write a file from my server to a client's computer using flash or flex.
Sign up
Sign in
Click on the ("FREE") button placed on the right of the page. (the
orange button)
[code]....
then you'll see a confirmation popup for the download, then you choose where do you want to save the file, and the flash movie saves the file!
View 1 Replies
Mar 7, 2009
I want to know the 'file path' when an user selects a file from 'any location' on his hard disk. I like to know is it possible to fetch the entire file URL instead of the file name alone?
Code:
var fileRef= new FileReference();
fileRef.addListener(mylistener);
mylistener.onOpen = function(file){
[Code]....
View 7 Replies
May 9, 2011
i am currently building an application ( projektor) which loads big local files (no webserver) for some reason the flash player freezes until the whole file is loaded. i cannot display the load progress. the same code works fine when used with streaming from a server.
View 2 Replies
Jul 4, 2010
I'm trying to load a local xml file:
xmlLoader.load(new URLRequest("../xml/xmlData.xml"));
But I'm getting this security sandbox violation:
#2148: Only local-with-filesystem and trusted local SWF files may access local resources.
I don't get this error when I embed the XML file directly with the EMBED metadata tag.
View 3 Replies
Jan 19, 2010
I would like to save a webcam captured video to the local disk using AS. The application is running in a standalone Flashplayer 10. I can save pictures from ByteArrays using file.save, but I can't find a way for doing this with video. There is a nice implementation for that using AS and AIR at http:[url]...I don't want to have to install AIR before running the app.
View 2 Replies
Feb 22, 2011
I am currently an English teacher and I am familiar with programming in DOT.Net platform. I am completely new to Flash. I turned to this platform because I thought that would be the best way to prepare interactive computer based exams in English. My real problem is, I don't have the slightest idea as to how I can create a Flash application which records the sound through the microphone and saves it on the local disk.
View 1 Replies
May 11, 2004
Is it possible to use flash to record from a microphone to local disk? I mean audio from a user - using local shared object or something?
View 1 Replies
Feb 22, 2004
I want to do a stand alone application in wich you can select a mp3 from local disk with Flash MX. I've been searching for a function or a method who allows to open a "browser window" or to have a string with the filenames but I haven't find nothing. I also have searched for an argument for fscommand but nothing. Does someone know if some function exists in javascript to give a string with the filenames of a folder? And in this case, how to integrate it in actionscript? I know that I can use a explorer to do that with javascript, but I need to do it without browsers.
View 3 Replies
May 11, 2004
Is it possible to use flash to record from a microphone to local disk? I mean audio from a user - using local shared object or something?
View 1 Replies
Jun 14, 2004
I need to save data to the local disk and then load it back up again as required. I'm using a local shared object to save data to and this works fine. Getting it back out again seems less straightforward. This is the code I'm using:
//Saving
myLocal_so = sharedobject.getLocal("flashcookie","/");
datastring = "anyoldstuff";//sample data to save
myLocal_so.data.savegame = datastring;
myLocal_so.flush();
//Loading
myLoadVars = new LoadVars();
myLoadVars = myLocal_so.data.savegame;
myLoadVars.onLoad = function(success) {
if (success) {loadgame = myLocal_so.data.savegame;
trace (myLocal_so.data.savegame);
} else {trace ("Error!");}}
Nothing appears to happen at all. The program continues with no traced output at all.
View 3 Replies
Aug 17, 2010
How to create a folder on your local hard drive via flash AS3, the name of the folder will depend on what you enter on the textfield in the .swf file.
View 2 Replies
Jun 28, 2011
I am currently using filereference in as3 to load a file from the users local disk and display instantly within a loader on the stage. This works fine but i am now needing to load files that are already stored on a server not the local disk, is this possible?
I have tried loading the url into a loader object but this takes far too long if the image is quite big where is filereference is almost instant.
My current code is:
Code:
var mFileReference:FileReference;
browseButton.addEventListener(MouseEvent.CLICK, onBrowseButtonClicked);
function onBrowseButtonClicked(event:MouseEvent):void {
[Code]....
Is there anyway i can take out the browse and selected stages and just load the server based image?
View 3 Replies
Sep 28, 2010
I am a developer in Web Flash Game.(I use AS3.0) I want to save and load the swf-file to a local disk of any user,Because I want to decrease the time for loading a flash movie from site.Is it possible?If it is possible, I hope the swf-file has only one loading from site and it will be loaded from a local disk of any user after that. (I know a concept of Internet temporary file. I want to know the other techniques of only using AS3.0.)
View 3 Replies
Apr 8, 2010
I would like to play AAC audio format file from local disk. I got example to play through netstreaming but I need to play it from local disk. I got an example to play mp3 file from local disk using Sound class.URL...
View 1 Replies
Jan 19, 2011
We have a Web login feature. We will offer Free calls to a large campaign.
Scenarios:
Because of free calls, we will offer a unique file to be downloaded and stored After a week or month we will call them and offer them our desktop application to scan and see how trusted, the user is If we dont find the same file again, we will never start business and more our own statistics Based on that report we want to do some follow ups campaign We can do this with cookies but we want user experience and trust analysis
Example: if you play a music in youtube.com, without notice your file is actually in /tmp/Flash....flv with lot of data on it.
Question: How can i do the similar using Flex/Flash from the web browser ?
View 2 Replies
Jun 2, 2011
While trying to develop some Android app I ran into the following problem:I load an swf file to a WebView, that makes js calls. I want to catch those js calls, so I useWebViews.addJavascriptInterface() to do so.Everything worked just fine when i loaded the swf file from a remote server, but when I load the same swf file form the Android file system, the javascript methods seem not to run (at least I cannot see them).
View 1 Replies
Jun 14, 2011
I got the code
var mic:Microphone = Microphone.getMicrophone();
mic.setUseEchoSuppression(true);
mic.setLoopBack(true);
when I browse thru adobe documentation for microphone access. But I could not find a way to record the sound and save it in the local drive.How to store the sound in local drive???
View 2 Replies
Aug 17, 2010
Does anyone here have an idea on how to create a folder on your local hard drive via flash AS3, the name of the folder will depend on what you enter on the textfield in the .swf file.
View 5 Replies
Oct 20, 2010
If a user in the web browser creates some sort of file using my swf and I then want them to be able to store that file on theyre local disk do I -HAVE TO- make a round trip to the server first or is there another way without having to send the file to the server and back to the client again?
View 5 Replies