Flash :: Adding New Files To Application Storage Directory With AIR Application Installer

Feb 4, 2011

I have an AIR app that gets bundled with XML files that the app needs. These get put into the APP Storage Directory, of course. Works great. But when I install a new version ( which includes new XML files) , the new files don't get added or overwrite the ones from the previous version. It seems that if that directory is there from a previous install, the installer will ignore the part where it moves included files.

View 1 Replies


Similar Posts:


Flex :: Delete Application Storage Directory Instance / Data When Uninstalling Any Air Application?

Dec 22, 2011

how can i delete storage directory instances or folder while uninstalling any air application. In my application when i first time run my application, application copy some data from application directory to application storage directory. now i want to delete all data and application directory folder also while uninstalling application.

I am doing that because when i launch any update then application is accessing old data which conflict with my application new features.

View 1 Replies

Actionscript 3 :: Error #3002 In Writing To Application Storage Directory

Apr 2, 2012

So I'm trying to copy a file selected by the user into the AIR application storage directory, but when I attempt to resolve the path in the storage directory, I get:

Error #3002: File or directory exists.

I get this even when there is no possible way that the file already exists (I am pretty sure there is no "qqqqq.txt" there).

My code looks like this:

var saveFile:File = File.desktopDirectory;
saveFile.browseForOpen("Open File");
saveFile.addEventListener(Event.SELECT, function(e:Event):void

[Code]....

The error is thrown on the line where I try to set the destination as the applicationStorageDirectory, but I have no idea why.

Edit: So I commented out everything below var destination:File = File.applicationStorageDirectory; and it STILL throws the error.

View 1 Replies

ActionScript 3.0 :: .air Installer Some Files Together With The Application?

Jun 14, 2011

I have an installer.air that is created by Adobe Flash. I have another file called settings.cfg which is needed for my application to run. How do let the computer auto install settings.cfg into the installation directory together with the application when i run installer.air? Currently, I need to manually place the settings.cfg into the application installed directory.

View 3 Replies

Actionscript 3 :: Putsave Files Into Your Application Directory?

May 20, 2010

How to putsave files into your application directory?

View 3 Replies

Java :: Write Log Files In Webapps/application Directory On Tomcat?

Nov 29, 2010

I write a flex + java application using the blazeds framework. when i write log files in my java classes the default path is the java path on the server. I want it to be my application at the tomcat/webapps/application directory when i write it hard-coded it failed (maybe bacause of permissions) but, i want it to be general (not hard-coded) so, what do i need to change in my java code in order to write files in my webapps directory? maybe it just an xml configuration?

View 3 Replies

Flash :: Know If An Instance Of An AIR Application Was Invoked By The Installer?

Jan 4, 2012

When you export a release build of an air app, it creates an .AIR file, that you can then double-click. When you do so, it asks you if you want to "Add shortcut icon to my desktop" and "Start application after installation".

I need to call specific ActionScript within my AIR application if and only if it was launched by the installer (the 2nd checkbox was selected) - As opposed to the user re-running it from the start menu after having installed it.

How can I detect this within my program?

View 1 Replies

Flex - Application Cannot Be Installed Installer Has Been Mis-configured?

Jan 16, 2011

I'm compile a .air file of my AIR application in FB4 and i'm getting that error when I try to install. I tried creating a new app, and just copying the code over and I get the same error. What am I doing wrong?I've even recreated the certificate multiple times.

View 3 Replies

Flash :: Write An Image To Application Directory Using AIR?

Aug 8, 2011

I'm trying to save an image to the application directory by opening a file stream and write the bytes from a bitmap data. I added some events listeners for testing the file stream process but I don't receive any response event. [code]...

View 3 Replies

Flex :: Installer - Create Auto-install AIR Application

Nov 3, 2011

I'm wondering if there is a way to make an installer (.exe or .air) autoinstaller So when a user double click it, a silent installation is performed, without asking the destination folder, using instead the default one...

View 1 Replies

ActionScript 3.0 :: Can Show 'Local Storage' Panel From AIR Application

Jan 15, 2010

Anybody happen to know how I can show the 'Local storage' panel in AS3 from an AIR application?[code]

View 3 Replies

Flash :: Media Server - Main.asc File To Return The Current Directory Listing To A Application

Aug 12, 2009

I need the main.asc file to return the current directory listing to a flash application.

[Code]...

View 1 Replies

Flex :: Delete A File In The Application Directory?

Nov 19, 2009

We are writing log files to File.applicationDirectory and want to clean out old log files. The question is how do you delete files out of that directory? When I try and delete old log files out of this directory it gives a security exception. Is there anyway around this? I know you are not supposed to write to File.applicationDirectory, but we are writting are logs there anyways.

View 2 Replies

Flex :: Write A File To Application Directory?

Dec 28, 2009

how to write a file to File.applicationDirectory in flex. i am getting security filewrite resource error.

View 2 Replies

Flex :: Copy File To Application Directory?

Oct 26, 2010

I have trouble getting it to copy file from src to destination.

var asMsg_path:String = fileRef.nativePath;
var origFileLoc:File = File.applicationDirectory.resolvePath(asMsg_path);
var newFileLoc:File = File.applicationDirectory.resolvePath("/java/"+asMsg);

[code]....

View 1 Replies

Actionscript :: Application Becomes Unresponsive During Directory Listing In Flex 3

Jun 11, 2011

I have designed an AIR application that displays a list with all txt files located in C: directory. I have used following code:

var videoListsArr:ArrayList = new ArrayList();
var folder:File = new File(driveName+":\");
folder.getDirectoryListingAsync();

[Code].....

This function works fine but it is being executed the application is hang and become unresponsive. how to resolve this problem that it displays the list of txt file without making application unresponsive ?

View 2 Replies

Media Server :: Setting Custom Virtual Directory In VOD Application

Jun 15, 2010

I am running Flash Media Streaming Server 3.5.1 r516 on a CentOS system. I also have WHM/cPanel installed on this system. My scenario is this. We have a large number of MP4 media files that are currently located in a web root directory created by cPanel: /home/mediafa/public_html/fullservices. These all work without a problem when doing progressive downloads. However, we also want to make them streamable with FMS as well. From the documentation, I should be able to create an entry in the /<fms install dir>/applications/vod/Application.xml file to look up files in that folder.

Here is my VirtualDirectory block:
<StreamManager><VirtualDirectory>
<!-- Specifies application specific virtual directory mapping for recorded streams.-->
<Streams>/;/home/mediafa/public_html/fullservices</Streams>
<Streams>/;${VOD_COMMON_DIR}</Streams>
<Streams>/;${VOD_DIR}</Streams>
</VirtualDirectory></StreamManager>

However, when I try to connect to a file that is in that directory, I get a 404 error in the access.00.log file. I've tried to change the owner/group on the fullservices folder as well as the owner/group of the target file to the fms user/group, but I still cannot connect to it. The connection address is rtmp://<ipAddress>/vod/mp4:1005-03m_256k.mp4.

View 1 Replies

Actionscript 3 :: Adobe Air Save Text File To Application Directory?

Jan 15, 2012

I have a bit of code that I want to change to make it save to the application directory. (the directory the application is installed at). While currently the bit of code I have works it just brings up a browse window for me to pick where to save the file. I want it to default to the application directory though.

How do I change it to do just that.

[Code]...

View 2 Replies

Media Server :: Save A Recorded Stream .flv File Outside Of AnFMS Application Directory?

Sep 16, 2009

I have successfully been able to write some client-side ActionScript that allows me to record my webcam and mic data to my FMS server.  The .flv files get saved to a directory under the applications directory.  However, I need to process those flv files for a web application and would like those .flv files to be saved to the web app's directory (outside of the FMS application directory).  I have tried changing the <Streams> tag in the Application.xml file that I placed in the FMS application directory, but that simply did not work.My goal is simple:  to save the recorded stream data outside of the FMS application's directory.  I have been going crazy trying to do this, but would like to know any pointers that any of you experts have.  Can this be done?  If not, how can I execute a server side PHP script after the stream is done recording.  I know about using the exec() function in PHP, but am unsure as to how to execute that script via client-side actionscript.Here is the path to my FMS server (Linux OS) installation and the application directory.  The application name is "ngale"./opt/adobe/fms/applications/ngaleHere is the path that my client-side ActionScript is placing the .flv files of the recorded streams/opt/adobe/fms/applications/ngale/streams/recordings/Here is the path to my web application/home/user/public_html/dev.ngale.net/public/Here is the path that I would like for the .flv recording files to be saved to/home/user/public_html/dev.ngale.net/public/audio/.flv

View 5 Replies

Flex ::get Adobe® Stratus 2 Examples On "Swarming", Live Application-Level Multicast, Distributed Data Storage?

Jan 25, 2010

When and where will see (ore already can get) Adobe® Stratus 2 examples (with source) on "Swarming", Live Application-Level Multicast, Distributed Data Storage?

View 1 Replies

ActionScript 3.0 :: Create IPad Application But Flash Professional Cs5 Only Allow To Make Iphone Application

Nov 9, 2011

I am using Flash profassional cs5 and want to create an iPad application but it only allow to make iphone application. It allows to install on iPad but the resolution is very small.

View 1 Replies

Actionscript 3 :: Flash - Why Size Of An .ipa File Is Large As I Export A Mobile Application As IOS Application

Aug 18, 2011

I have made one one mobile application in flash builder using flex mobile project I have a question that "why size of an .ipa file is large as I export a mobile application as iOS application.???? in compare to that same application for android takes small size!

View 1 Replies

Android :: Flash - Back Button Unloads Application After Changes CurrentState Of Application AIR?

Sep 20, 2011

I am creating an application. At one view I have three states. If I changes state and than back button pressed it unloads the application.I am developing it in Adobe AIR.

View 1 Replies

ActionScript 3.0 :: Sockets - Flash Application And Windows Application Works For String Buffer But Not For Object?

May 6, 2011

I want adobe sockets to send "customized" class object to a server socket(WinSock2). I used socket.writeObject(myClassObj). Actually My flash application and windows application works for string buffer but not for object.

Code:
//Flash
var buffer:String = "God Bless Us";
socket.writeUTFBytes(buffer);

// WinSock2
iResult = recv(ClientSock, recvbuf, recvbuflen, 0);

Is there anything I must do before writeObject() is used.?

View 3 Replies

Flash :: Make User Go To Application Page Instead Directly Go To Application?

Aug 26, 2011

Currently i'm developing a facebooks apps with falsh application. i've have completed the development with all API required to run a facebook apps. Everything went well and it's live now. My question :

1. How can make user to go directly to the application page everytime they click the link posted by user who already use the application instead going to the canvas page applications. i'm been trying to look for the article that support saying that user will go directly to application directly to canvas application page instead of going to the application page.

View 1 Replies

ActionScript 2.0 :: Flash Application Create A Connection To A Remote Application?

Aug 6, 2003

I need to make my Flash application create a connection to a remote application and have the remote application send periodic updates to my Flash animation. The remote app is written in VB 6, and does not support XML sockets. However, I don't need the ability to send or receive XML since I am going to be overriding the onLoad() event anyway.

Or maybe I do need that ability... I'm having trouble getting my onLoad() event to trigger. Right now I'm just testing the onLoad event like this:

[code]...

So, basically I'm trying to find out how I can format the data I'm sending it so that the onLoad() event triggers. I've read that the XMLSocket object listens for the Null byte, so perhaps the data I'm sending it doesn't terminate properly. I need a persistent connection from Flash to the VB app because the VB app will be the one initiating the updates to the Flash application. Is the XMLSocket the way to go here, or is there another class of objects that I'm missing?

View 1 Replies

Flash :: Application Which Can Relay Another Application On Media Server?

Oct 5, 2010

Is there any application which can relay another application on Flash Media server? For exmaple I have a "live" application on the server. I want another application, "liverelay" which can basically relay what is coming on the "live" application. Is it possible? If so how can I implement it? Looking forward to a response.

View 12 Replies

Actionscript 3 :: LocalConection Between A AIR Application And Flash Player Application?

Nov 23, 2010

I'm trying to connect a AS2(swf on Flash player using Flash CS4) and AS3(swf on AIR using Flash Builder 4), but I get an error when I send a command from the AIR app:

[StatusEvent type="status" bubbles=false cancelable=false eventPhase=2 code=null level="error"]

How can I debug this?

View 1 Replies

Flash :: Start IPad Application From Another Application Builtin

Aug 19, 2011

Do you know is it possible to start iPad application from another application that is developed in Flash? I need to create small iPad app with two buttons (and some graphics/animation) in Flash. Clicking on those buttons, another iPad application should be started. My guess is that will use ExternallInterface, but I don't know what to send :)

View 1 Replies

ActionScript 2.0 :: Publish .exe Files Of Flash Application?

Dec 5, 2008

I have a small doubt. (it might not even be a good idea to paste it here, but�) I noticed that I can publish .exe files of my flash application. Can I run them on a linux environment (ubuntu) or even like just swfs?

View 3 Replies







Copyrights 2005-15 www.BigResource.com, All rights reserved