AIR - File.cancel() - BUG???

I've been trying for the last 3 hours now, but it just does not work. I'm using Flash CS 6, AIR 4.0.0.1390, OS 32-bit XP SP 3.
Scenario:
Using AIR's File, copy a large file to somewhere else "Asynchronously"
Pretty simple!! Here is the BUGGY part: try to show Progress - PROGRESSEVENT DOESN'T WORK. try to listen for canel() method - DOESN'T WORK. here is very simple, straigh-forward code:
import flash.filesystem.File;
import flash.events.Event;
import flash.events.ProgressEvent;
import flash.utils.setTimeout;
var a:File = File.desktopDirectory.resolvePath("file1.abc"); //file size: 300+ MB
var b:File = File.desktopDirectory.resolvePath("file2.abc");
a.addEventListener(Event.CANCEL, cn); //DOES NOT FIRE
a.addEventListener(ProgressEvent.PROGRESS, pr); // DOES NOT FIRE
a.addEventListener(Event.COMPLETE, cl);
a.copyToAsync(b, true);
function cn(e:Event):void
    trace('operation is cancelled');
function cl(e:Event):void
    trace('operation completed');
function pr(e:ProgressEvent):void
    trace(e.bytesLoaded + " " + e.bytesTotal);
to make everything pretty simple, I added these two lines:
var c:uint = setTimeout(function ():void {a.cancel(); b.cancel(); trace('cancelled');}, 50); //it traces 'cancelled', I DON'T KNOW wether it really cancels that operation or no
var d:uint = setTimeout(function ():void {b.deleteFile();}, 10000); //even after waiting for 10 seconds, it still shows Error, file is in use...
Here is the Adobe's documentation regarding .cancel() function:
"Cancels any pending asynchronous operation."
Is there any way to STOP/CANCEL current File's operation (such as openAsync, copyToAsync, moveToAsync)???? What if user wants to cancel large file copy??? NO WAY??

In my same project, I use FileStream class as well and it works perfectly well. But I use it sychronously (because my files are not more than 4 MB). I think I will need to use FileStream class only for this particular issue, although File class could have been short-and-sweet...
As always, thanks Colin for your help...

Similar Messages

  • Can't package native installer on Linux with Flex SDK 4.5 : Invalid AIR file

    Hi,
    We've moved our application to compile against the 4.5 SDK.
    We're compiling it with Flash Builder (on mac) into an air file and as our application is using NativeProcess API, we're packaging it on each platform into a native installer with the following command (linux example) : adt -package -target native app.deb app.air
    We think we fall into the same issue as http://forums.adobe.com/message/3271944#3271944 but for the 4.5 DSK.
    On Linux it used to work with the following environment (env1):
    - Ubuntu 10.10
    - Java Sun 1.6.0_24
    - Flex SDK 4.1.0.16076 + Adobe Air SDK 2.5.0
    It stops to work when we upgrade to the new Flex SDK (env2):
    - Ubuntu 10.10
    - Java Sun 1.6.0_24
    - Flex SDK 4.5.0.20967 (with the default embeded Adobe Air SDK 2.6)
    The faut message is "Invalid AIR file" and nothing is logged in the log file (/home/<username>/.appdata/Adobe/AIR/Logs/Install.log).
    1) The .air file is installing correctly on env2 (without the support of the NativeProcess as expected)
    2) We also tried to compile the project directly on env2 :
    amxml app.mxml
    adt -package -storetype pkcs12 -keystore cert.p12 app.air app-app.xml air.swf
    The .air file is installing fine but the packaging into a native process fails in the same way...
    3) We tried to package a native installer of our .air file on env1 and it works!!! (the installed application seems to work fine also on env2!!!)
    Are we missing something or does it seems to be a bug of the Flex SDK 4.5?
    Are there some restrictions to package a native installer with the Flex SDK 4.1 a air app build with the Flex SDK 4.5 ?
    Thanks in advance,
    Mich

    Hi,
    Finally we figure out how to solve the issue.
    The packaging into native .deb installer fails as explain above because with the hole Flex SDK 4.5 (adt -version told 2.6.0.1920).
    The packaging is successfull if only Air SDK 2.6 is install.
    What is strange that both adt seems to be the same "2.6.0.1920" (found with "adt -version").
    Can someone from the Adobe dev team explain it?
    I suppose as the Flex SDK is not available for the Linux platform, the download only contains the Air SDK for Windows and Mac OS as opposed to the specific download of the Air SDK for te Linux platform...
    Thanks,
    Mich

  • Package into a native installer fails on Linux (Flex SDK 4.5) : "Invalid AIR file"

    Hi,
    We've moved our application to compile against the 4.5 SDK.
    We're compiling it with Flash Builder (on mac) into an air file and as our application is using NativeProcess API, we're packaging it on each platform into a native installer with the following command (linux example) : adt -package -target native app.deb app.air
    We think we fall into the same issue ashttp://forums.adobe.com/message/3271944#3271944 but for the 4.5 DSK.
    On Linux it used to work with the following environment (env1):
    - Ubuntu 10.10
    - Java Sun 1.6.0_24
    - Flex SDK 4.1.0.16076 + Adobe Air SDK 2.5.0
    It stops to work when we upgrade to the new Flex SDK (env2):
    - Ubuntu 10.10
    - Java Sun 1.6.0_24
    - Flex SDK 4.5.0.20967 (with the default embeded Adobe Air SDK 2.6)
    The faut message is "Invalid AIR file" and nothing is logged in the log file (/home/<username>/.appdata/Adobe/AIR/Logs/Install.log).
    1) The .air file is installing correctly on env2 (without the support of the NativeProcess as expected)
    2) We also tried to compile the project directly on env2 :
    amxml app.mxml
    adt -package -storetype pkcs12 -keystore cert.p12 app.air app-app.xml air.swf
    The .air file is installing fine but the packaging into a native process fails in the same way...
    3) We tried to package a native installer of our .air file on env1 and it works!!! (the installed application seems to work fine also on env2!!!)
    Are we missing something or does it seems to be a bug of the Flex SDK 4.5?
    Are there some restrictions to package a native installer with the Flex SDK 4.1 a air app build with the Flex SDK 4.5 ?
    Thanks in advance,
    Mich

    Hi,
    Finally we figure out how to solve the issue.
    The packaging into native .deb installer fails as explain above because with the hole Flex SDK 4.5 (adt -version told 2.6.0.1920).
    The packaging is successfull if only Air SDK 2.6 is install.
    What is strange that both adt seems to be the same "2.6.0.1920" (found with "adt -version").
    Can someone from the Adobe dev team explain it?
    I suppose as the Flex SDK is not available for the Linux platform, the download only contains the Air SDK for Windows and Mac OS as opposed to the specific download of the Air SDK for te Linux platform...
    Thanks,
    Mich

  • Damaged AIR File, Error #1000

    Hello,
    This is my first post, but hopefully someone here will be able to help me.
    I am a Flex Developer who was just recently assigned to help out on a project that has gone bonkers.  The project had been going fairly well... but after the latest build the following messages comes up during installation on Windows XP.
    "Sorry, an error has occured.
    The application could not be installed because the AIR file is damaged. Try obtaining a new AIR file from the application author."
    Awesome!  All we need to do is get a new AIR file from the application author... oh wait... I AM the application author.  Grumble grumble.
    So I tried reinstalling the application, but this time I ran it with .airappinstall.log.  Here is what was output by the log.
    Starting app install of file:///C:/Documents%20and%20Settings/Administrator/Desktop/2009-11-30r33MW4.air
    UI SWF load is complete
    UI initialized
    Unpackaging to C:\Documents and Settings\Administrator\Local Settings\Temp\fla1D.tmp
    failed while unpackaging: [ErrorEvent type="error" bubbles=false cancelable=false eventPhase=2 text="Error #1000" errorID=1000]
    starting cleanup of temporary files
    application installer exiting
    So, what exactly is this error?  Can anyone point me to a place where I might be able to look up what Error #1000 is?
    Don't worry I have done my homework,  I know there are a decent amount of posts about people recieving an "AIR file damaged" error.  I have looked and read through them all, but when they run a log on the install it ends up being a different error...so the other posts are not entirely helpful.
    I am guessing something must have been changed in the most recent build but I was just placed into this project so I do not have much knowledge of previous versions.  Any hints of suggestions about common things to check that might be causing this would be greatly appreciated.

    It might help if you can get the installation log and post
    it.
    To get the log, create a file .airappinstall.log in your home
    directory.

  • Accidentally associated Adobe AIR file with Acrobat, now an otherwise easily fixed problem has been causing me far too much anger.

    I accidentally associated an Adobe AIR file to open Adobe Acrobat in it's stead, now an otherwise easily fixed problem has been causing me far too much anger.
    Basically I downloaded an .air file after recently reformatting my computer, and I tried to open it with Acrobat. Now, since there is no actual application and or shortcut created by AIR I can't just tell the file to use that. I've found that I'm not alone in this issue, have tried a few things I've read on both this forum and others, and have come to no resolution as of yet. This file isn't anything of any great significance, but it bugs me so much that at this point I just want to know how to fix this and win this little battle.
    Thanks in advance to anyone willing to help.

    Thank JJMack - that has helped me get closer to the problem.
    I opened the resource monitor and you can see a screenshot of what is going on when I try to save a simple, 9 Kb graphic. (I'm saving an RGB JPG, not a PNG or animated GIF file. Doing anything complex / memory intensive than saving or simple edits in PS is almost impossible.)
    As you can see from the screencap below, when I save (it doesn't make a difference if it is save vs. save to web or a network or local drive) Photoshop becomes unresponsive. (From past experiences, if I try to switch to a non-Adobe program it will also freeze and sometimes crash.) When PS becomes unresponsive, the NT Kernel & System immediately goes to the top of the list and uses 200+ threads.
    From there Photoshop will typically be frozen for about a minute, then will recover and take another minute or two to finish the save. At that point PS is okay, but the rest of the computer is still frozen with CPU oscillating up to almost 100%.
    As soon as the NT Kernel & System settles down, everything is back to normal again (as long as I haven't used other programs, which in one case required a hard reboot.)
    It is pretty clear the problem is rooted in Adobe / Window 7 as I only have this problem with Adobe programs. (Illustrator isn't as bad, but I've had problems with it as well.)
    The question is: How do I fix this, as it is killing my ability to work?
    Thanks! Julie

  • Air File is Damaged

    Hi,
    Went to start Adobe Acrobat and it won't start, pops up with I need to update Air first. But when you click to update, an error is reported that "the air file is damaged."
    So I downloaded the latest Air from Adobe.com and ran install, no problems installing it. However, the error is still reported when starting Acrobat.
    So I used Windows Control Panel to uninstall Air, and reinstalled it, all went OK again.
    But Acrobat still won't start, the popup appears saying Air must be updated, followed by "the air file is damaged."  I also tried uninstalling then installing Air from the C:/programs/adobe folder since some others on boards say that worked. Didn't work for me.
    I've tried calling Adobe tech support, on the phone 1 hour waiting with no one answering, before I ran out of time and had to hang up. I tried calling a second time, and after anotherr hour of waiting, ran out of time again.
    I suspect the problem is due to a recent auto update from Adobe? My system was running fine on Windows 7 since last year, and there have been no real changes on my PC. It's just recently that Acrobat won't work. Adobe Media Player is running fine, and I know it uses AIR, so I suspect Air is working ok.
    I'm running CS4 Web Premium and Adobe Premiere Pro CS4 on Windows 7, no issues until this Air bug popped up. I do recall getting a recent Adobe auto-update though.
    Any suggestions on what to try next?
    Jonathan, developer
    AtlantaWebDesignGA.com

    After 5 months without an answer I no longer have any interest in it. Thanks anyway.

  • Air 1.51 installation failure. The application could not be installed because the AIR file is damaged

    The error:
    The application could not be installed because the AIR file is damaged. Try obtaining a new AIR file from the application author.
    is generated when an AIR installation file is lauched from a Samba Network Drive in Vista Utlimate 64. If the install files are copied to a local drive, it installs without incident.

    Working with networks drives are never reliable.  Corruption, path problems, networks connections, and privlatges can come in the way of a properly mapped drive.  I think your solution is fairly straight forward.  You need to install your application from a local filesystem, not a mapped network drive.  In the meantime, log a bug report HERE.

  • [svn:fx-trunk] 5067: In preparation for adding ASDoc version tags for Flex, remove old tags from AIR files

    Revision: 5067
    Author: [email protected]
    Date: 2009-02-25 08:21:22 -0800 (Wed, 25 Feb 2009)
    Log Message:
    In preparation for adding ASDoc version tags for Flex, remove old tags from AIR files
    QE Notes: None
    Doc Notes: None
    Bugs: -
    Modified Paths:
    flex/sdk/trunk/frameworks/projects/airframework/src/mx/controls/FileSystemComboBox.as
    flex/sdk/trunk/frameworks/projects/airframework/src/mx/controls/FileSystemDataGrid.as
    flex/sdk/trunk/frameworks/projects/airframework/src/mx/controls/FileSystemEnumerationMode .as
    flex/sdk/trunk/frameworks/projects/airframework/src/mx/controls/FileSystemHistoryButton.a s
    flex/sdk/trunk/frameworks/projects/airframework/src/mx/controls/FileSystemList.as
    flex/sdk/trunk/frameworks/projects/airframework/src/mx/controls/FileSystemSizeDisplayMode .as
    flex/sdk/trunk/frameworks/projects/airframework/src/mx/controls/FileSystemTree.as
    flex/sdk/trunk/frameworks/projects/airframework/src/mx/controls/FlexNativeMenu.as
    flex/sdk/trunk/frameworks/projects/airframework/src/mx/controls/HTML.as
    flex/sdk/trunk/frameworks/projects/airframework/src/mx/core/FlexHTMLLoader.as
    flex/sdk/trunk/frameworks/projects/airframework/src/mx/core/IWindow.as
    flex/sdk/trunk/frameworks/projects/airframework/src/mx/core/Window.as
    flex/sdk/trunk/frameworks/projects/airframework/src/mx/core/WindowedApplication.as
    flex/sdk/trunk/frameworks/projects/airframework/src/mx/core/windowClasses/StatusBar.as
    flex/sdk/trunk/frameworks/projects/airframework/src/mx/core/windowClasses/TitleBar.as
    flex/sdk/trunk/frameworks/projects/airframework/src/mx/events/AIREvent.as
    flex/sdk/trunk/frameworks/projects/airframework/src/mx/events/FileEvent.as
    flex/sdk/trunk/frameworks/projects/airframework/src/mx/events/FlexNativeMenuEvent.as
    flex/sdk/trunk/frameworks/projects/airframework/src/mx/events/FlexNativeWindowBoundsEvent .as
    flex/sdk/trunk/frameworks/projects/airframework/src/mx/events/WindowExistenceEvent.as
    flex/sdk/trunk/frameworks/projects/airframework/src/mx/managers/NativeDragManagerImpl.as
    flex/sdk/trunk/frameworks/projects/airframework/src/mx/managers/WindowedSystemManager.as
    flex/sdk/trunk/frameworks/projects/airframework/src/mx/skins/halo/ApplicationTitleBarBack groundSkin.as
    flex/sdk/trunk/frameworks/projects/airframework/src/mx/skins/halo/StatusBarBackgroundSkin .as
    flex/sdk/trunk/frameworks/projects/airframework/src/mx/skins/halo/WindowBackground.as
    flex/sdk/trunk/frameworks/projects/airframework/src/mx/skins/halo/WindowCloseButtonSkin.a s
    flex/sdk/trunk/frameworks/projects/airframework/src/mx/skins/halo/WindowMaximizeButtonSki n.as
    flex/sdk/trunk/frameworks/projects/airframework/src/mx/skins/halo/WindowMinimizeButtonSki n.as
    flex/sdk/trunk/frameworks/projects/airframework/src/mx/skins/halo/WindowRestoreButtonSkin .as
    flex/sdk/trunk/frameworks/projects/airframework/src/mx/utils/DirectoryEnumeration.as
    flex/sdk/trunk/frameworks/projects/airframework/src/mx/utils/DirectoryEnumerationMode.as

    I'm also having this problem. I'm using Flash Builder 4.6, AIR 3.4 and I've made a DLL (e.g. ExtensionDll.dll) which needs to call functions in another DLL (e.g. DllUsedByExtensionDll.dll) . I've made sure my ANE is working with the ExtensionDll.dll already, so there are no issues with my actionscript code or my ANE packaging or my DLL compilation. However, once I start calling functions from the other DLL, it starts throwing me Error #3500. Even if I call this function (e.g. abc()) in ExtensionDll.dll, but I never actually use the function from actionscript, and I call another function (e.g. def()) from actionscript, the Error #3500 still appears, so it does not seem to depened on the whether the code is used or not.
    It's similar to this problem.
    http://stackoverflow.com/questions/9823504/how-to-use-external-dll-in-air-native-extension
    Does anyone have a solution or at least a way to debug this?

  • [svn:fx-trunk] 8583: Add ASDoc version tags to AIR files

    Revision: 8583
    Author:   [email protected]
    Date:     2009-07-15 10:21:01 -0700 (Wed, 15 Jul 2009)
    Log Message:
    Add ASDoc version tags to AIR files
    QE Notes: None
    Doc Notes: None
    Bugs: -
    Checkintests: passed
    Modified Paths:
        flex/sdk/trunk/frameworks/projects/airframework/src/spark/skins/spark/windowChrome/CloseB uttonSkin.mxml
        flex/sdk/trunk/frameworks/projects/airframework/src/spark/skins/spark/windowChrome/Grippe rSkin.mxml
        flex/sdk/trunk/frameworks/projects/airframework/src/spark/skins/spark/windowChrome/MacClo seButtonSkin.mxml
        flex/sdk/trunk/frameworks/projects/airframework/src/spark/skins/spark/windowChrome/MacMax imizeButtonSkin.mxml
        flex/sdk/trunk/frameworks/projects/airframework/src/spark/skins/spark/windowChrome/MacMin imizeButtonSkin.mxml
        flex/sdk/trunk/frameworks/projects/airframework/src/spark/skins/spark/windowChrome/MacTit leBarSkin.mxml
        flex/sdk/trunk/frameworks/projects/airframework/src/spark/skins/spark/windowChrome/Maximi zeButtonSkin.mxml
        flex/sdk/trunk/frameworks/projects/airframework/src/spark/skins/spark/windowChrome/Minimi zeButtonSkin.mxml
        flex/sdk/trunk/frameworks/projects/airframework/src/spark/skins/spark/windowChrome/Restor eButtonSkin.mxml
        flex/sdk/trunk/frameworks/projects/airframework/src/spark/skins/spark/windowChrome/TitleB arSkin.mxml

    Thats good news.

  • Air file not testing

    Hi all
    I have been testing Air (making new windows etc) and it seems that when I start a new air file and test all seems OK,  I publish and after I go back to the .fla and then test (control + enter) ......nothing. Is this one of the Flash CS4 ever growing number of bugs ? Any comments help appreciated ...Thanks

    Thanks Atif and Barna Biro... thats what I am already doing
    var file:File = new File(File.applicationDirectory.nativePath + "htmlFolder/sub-folder/fileName.html");
    htmlView.location = file.nativePath;
    and have also tried the following, as mentioned by Atif
    var file:File = File.applicationDirectory.resolvePath("htmlFolder/sub-folder/fileName.html");
    htmlView.location = file.nativePath;
    but what I have noticed is that it actually finds out the file.. because there is another file, a db file, which does not need to be rendered on html, is picked u perfectly, is updated, and everything can be done to it.
    So the problem is rendering of HTML
    in mac............... how do we render local html files ??? Why local.. because i was able to open up youtube.com

  • Air file is damaged when using update framework

    Hi,
    The air file works fine on windows, and reinstallation on linux works.
    On ubuntu karmic, we get this in our install logs:
    $cat .airinstall.log
    UI SWF load is complete
    UI initialized
    starting user confirmation
    Version of this installer: 1.5.2.8870
    Newest installed version: 1.5.2.8870
    Installation type: patchSame
    begin quitting
    $cat .airappinstall.log
    Starting update of /opt/location
    Updating from file:///home/joe/.appdata/com.name/Local%20Store/AirFile.air
    Updating to version 1.5881
    UI SWF load is complete
    UI initialized
    Unpackaging to /tmp/FlashTmp.ryWErP
    failed while unpackaging: [ErrorEvent type="error" bubbles=false cancelable=false eventPhase=2 text="signatures not yet set" errorID=0]
    Re-launching application from /opt/location
    starting cleanup of temporary files
    application installer exiting
    Can you tell me what this could be, and how to fix it?

    More information after an uninstall and reinstall:
    $ cat .airappinstall.log
    Starting app install of http://location/file.air
    UI SWF load is complete
    UI initialized
    Downloading file to /tmp/FlashTmp.EIau3j
    Received HTTP Response Status event
    Response URL is http://location/file.air
    Waiting for user confirmation
    User confirmed action: install
    Unpackaging to /tmp/FlashTmp.tylaQZ
    failed while unpackaging: [ErrorEvent type="error" bubbles=false cancelable=false eventPhase=2 text="Error #2058" errorID=2058]
    starting cleanup of temporary files
    application installer exiting
    This says it's something to do with decompression. I am able to open and extract the file myself with archive manager on linux.

  • Error creating AIR file: could not generate timestamp

    I have been getting this error the last few days.
    Error creating AIR file: could not generate timestamp:
    sun.security.validator.BalidatorException:PKIX path building failed:
    sun.security.provider.certpath.SunCertPathBuilderException: unable to find
    valid certificatio path to requested target.
    https://timestamp.geotrust.com/tsa
    I found one thread saying this url must be accessible but when I go there I get "404 -- page not found".
    Since this was working now it is not I'm looking for a direction.

    Hey Karthik,
    First of all, are you using ECLIPSE? What is your development
    Environment. I had run into same issue, after hours of trying
    different things, I installed the FLEX BUILDER and was able to
    create the application without any issues. I have also noticed that
    FLEX BUILDER works more smoothly than Eclipse and since then I have
    been developing within FB.
    Thanks.

  • Windows 8.1 x64 - Serious "file move" bug

    I've reliably replicated a file copy bug in Windows 8.1. It's rather significant, and needs to be fixed ASAP, but this is the only forum I can find where I can even report it.
    Problem: A drag-and-drop (or cut-and-paste) "move" operation where the destination files already exist results in the dropped files being deleted without warning, with the destination files being unchanged.
    How to replicate: Take the following steps, which assume that your Desktop is located on your C: drive.
    Create a folder on the C: drive. Name it "zzz" to make it easy to find.
    Create a folder on the Desktop, then create another "zzz" folder inside of it. Let's name this one "Desktop\Test\zzz" for clarity.
    Copy a couple of files from a different drive into both "zzz" folders, so that the contents of both folders are identical. It is best if the files are at least a few days old, so the last-modified date will be obvious.
    Change one or two of the files in the Desktop's "zzz" folder. The nature of the change doesn't matter.
    Make sure you have two Explorer windows open - one for Desktop\Test and one for C:\ - to facilitate file copying.
    Drag the new "zzz" folder from Desktop\Test into C:\.
    What should happen at this point is that, since you're moving files where the filenames are the same, Windows should show an alert box and prompt you for the correct handling of the situation. However, that's not what happens. The Desktop's "zzz"
    folder quietly vanishes, and the C:\zzz folder retains its old files. The new files are deleted without warning. In addition, if you use Ctrl-Z to Undo the copy...the Desktop "zzz" folder comes back, but it's empty. All of your changes
    are irretrievably gone.
    The folder depth doesn't seem to be relevant; I discovered the bug while working with files several folders deep, but the demonstration shows that it happens at the root level as well. Likewise, there's nothing special about the C: drive; I replicated it
    on R:\ (an external USB hard drive) just as easily. Similarly, I should point out that performing these steps between two different drives (triggering a copy rather than a move) is handled correctly, although using shift-drag to force a move demonstrates the
    same bug.
    When using Cut/Paste instead of (shift-)drag/drop, the same thing happens, but at least there's an alert box. It's not helpful, but it does at least show a message:
    Item Not Found
    Could not find this item
    This is no longer located in (folder name). Verify the item's location and try again.(icon and file information)
    However, none of the three options presented will do you any good; by the time you see this alert box, the source folder and its contents have already been deleted.

    Thing is, I *do* get prompted when there are conflicts while copying folders.  I've been using Windows 8.1 since it came out, professionally and every day, and I've not run across a file-copy gotcha worse than a copy conflict prompt popping
    behind an open window (but it does always get issued).
    I wonder what could now be configured differently between our two setups...  I have installed the program Classic Shell, and it does add some capabilities to Explorer.  However, I don't recall "correcting the handling of folder copy conflicts"
    ever being listed as one of the things it brings to the party.
    Sorry that setting alone didn't correct the whole issue for you.
    -Noel
    Detailed how-to in my eBooks:  
    Configure The Windows 7 "To Work" Options
    Configure The Windows 8 "To Work" Options

  • Installing .air file on Windows 7 64-bit

    This batch command works in XP and in Windows 7 32-bit, but not in Windows 7 64-bit:
    @echo off
    REM
    REM  Set location to install to.  (This dir must exist or install wont work!)
    REM
    set INSTLOC="c:\producthelp"
    REM
    REM  Install help.
    REM
    AdobeAIRInstaller.exe -silent -eulaAccepted -location %INSTLOC% "Product Help.air"
    (product name replaced with Product.) We are using the latest (today's) AdobeAIRInstaller.exe.   We have tried using identical syntax to install other .air files from the Adobe site; they did not install either. Is there something simple we're missing here?  Is there a known issue with installing .air files on 64-bit Windows 7?  I couldn't find one at this site.

    I think the reason you have had no reply is that no one has an answer. The only thing I can think of is to ask if the AIR file installs if you run it normally rather than from a batch file. If it does, then you know where the problem is but I cannot help you with that.
    See www.grainge.org for RoboHelp and Authoring tips
    @petergrainge

  • Error building AIR file

    hi guys
    i have one problem building AIR file it is displaying an
    error message as
    "Error creating AIR File: Could not generate timestamp: No
    route to host: connct"
    in some blog it is saying that we need to get connected to
    internet but i am already connected
    any idea
    please help
    karthik.k

    Hey Karthik,
    First of all, are you using ECLIPSE? What is your development
    Environment. I had run into same issue, after hours of trying
    different things, I installed the FLEX BUILDER and was able to
    create the application without any issues. I have also noticed that
    FLEX BUILDER works more smoothly than Eclipse and since then I have
    been developing within FB.
    Thanks.

Maybe you are looking for

  • Output problem

    Code tags added by moderator: please use them in future.  Please use a more informative subject in future. Hi,       In output Mrp controlling data is not updated, plz help me. my program is: tables: s022. Types : Begin of ty_afpo,          aufnr typ

  • Can't open office 2007 documents in sharepoint

    I can open pdf files find, just not word or excel.   when I double click on files, 1st messages says files could be corrupt. 2nd message "word found unreadable content in the document.  Do you want to recover and trust source.  After clicking yes ne

  • N8 contacts update from Facebook

    I have a number of my contacts linked to their facebook profile, this was done from within the contact so I think before belle maybe? I've noticed that the profile pictures aren't updating, what's going on? Looking in the social app they're still lin

  • Default username and password Iweblogic server + Jdeveloper 11.1.1.2.0

    Hello, I installed Jdev 11.1.1.2.0, what is the default username&password for the Integrated weblogic server?? I tried weblogic/weblogic1, weblogic/welcome1,weblogic/oracle1 none of the combination worked. Thanks

  • Waiting for Thread to finish execution

    I have a program which uses a thread to copy files. While they are copying, a ProgressMonitor comes up displaying the current file being copied. After this has completed, my main program needs to be notified and go on with it's own code. Either I get