Help, Large AIR Application wont install :(

Hi,
Im very new to adobe AIR so please forgive me if im being thick
I am using Adobe CS4 to create an AIR application out of an existing flash web based project.
Basically the project is quite large in size 500MG+
The project previews fine and works. But when i package the AIR file and try and run it it says preparing to install for a little bit and then says: Sorry an error occurred. The application could not be installed because the AIR file is damaged. Try obtaining a new AIR file from the application author."
Form a little testing if i dont include some of the files and bring the overall project size down dramatically the AIR application installs successfully and runs (obviously without some .swf bits i have not included)
Im really stuck here is there a limit to what AIR can handle? I really want to get this desktop application going and would greatly appreciate any help or pionts in the right direction.
Hope smeone can help,
Thanks,

Hurray i fixed it.
I had to debug by adding extra files one by one, which was very painful.
However i found out that one .flv i had included had the & sign in its name. This was causing the error.

Similar Messages

  • HELP!! Itunes wont install on Windows 7.  I get an error msg. there is a problem with this windows installer package. A program required to install to complete could not be run.  Contact your support personnel or package vendor. WHAT NOW?

    HELP!! Itunes wont install on Windows 7.  I get an error msg. there is a problem with this windows installer package. A program required to install to complete could not be run.  Contact your support personnel or package vendor. WHAT NOW?

    Ok, Below is what worked for me somewhat. 
    Okay ... try downloading and saving a copy of the iTunesSetup.exe to your PC from the Apple website:
    http://www.apple.com/itunes/download/
    Now download a trial version of WinRAR:
    http://www.rarlab.com/download.php
    Open the iTunesSetup.exe with WinRAR, and try to run the standalone install of Apple Application Support from the AppleApplicationSupport.msi you find in there.
    It works now BUT there are still problems.  It is not allowing or recognizing my Cd/DVD player and i CANT burn.  Looking still for this fix.

  • AIR application not installed

    Hi all,
    My AIR application not installed.
    AIR application installer shows window with 'Getting ready to install..." and window closed and nothing happens. What I'm doing wrong and where I can see an 'installation log' to obtain the root reason of AIR installation problems?
    My env: Fedora 12 x64, AIR and AIR SDK just downloaded and installed from site. All AIR SDK applications (adl and adt) works well.
    Sergey

    Thank you for your reply!
    airappinstaller throws SIGSEGV signal.
    I trace it in gdb and see that libxml2::xmlHasProp throws this signal because it receive an invalid node pointer from libadobecertstore.so.
    So I can't find or obtain debug symbols for adobeair-1.5.3-9130.i386 and I don't know what I should do to fix a problem...

  • Installing a LARGE AIR application

    Hello,
    I am attempting to create an installer for Windows that installs the AIR runtime, our application, and all the content required such that any user can log in and use the application. Our application is an educational tool for autistic children, and will be installed in lab environments in schools.
    Our AIR application by itself is not large - about 5MB. However, it relies upon about 600MB of external assets. These include various forms of media: images, audio clips, SWFs etc. If I try to bundle all of this into a single AIR file using FlashBuilder 4, FlashBuilder dies due to lack of memory to the JVM. I have tried to increase memory to the JVM, but even given the maximum it still does not work. I then attempted to package and sign the AIR file using the command line tools. That appears to work, however that operation results in a bloated AIR file that is over 1GB in size, almost double the size of the content packaged into it. If I attempt to use the sidecar installer provided by Adobe to install this AIR file the installer dies. Further investigation shows that others have hit this same size limitation with AIR files, but there is no resolution in site to this problem.
    Since it seemed impossible to package the entire application into a single AIR file my next attempt was to keep the content separate from the AIR application. I have experimented with Installshield, but have found no way to chain together the sidecar installer MSI with another MSI that installs the content to the same location. I could install the AIR application, and then let the application itself finish the installation by copying the content to app-storage://, but then the application is only usable by the user who installed it. In a lab environment in a school this doesn't work, because typically the person who is installing the application is an administrator, not the end user. app-storage:// resides under a user's directory, not in a shared location. The application is unable to copy files to the app:// location due to the security model of AIR.
    I know that I can do a silent install from the command line using the sidecar installer, but I haven't found a way to chain this together with another MSI that installs the content. It could be that I am too limited by what Installshield Express offers. I am now attempting to use NSIS.
    Any advice anyone may have on how to do this is very appreciated. Surely others have needed to install large media rich AIR applications on Windows. AIR is a great platform for us in many respects, but I must be able to create an easy seamless install process for end users. Our product will be going into use over the next 6 months by over 1000 users, and that number will grow quickly. I would be willing to pay for a support incident from Adobe if that is warranted.
    Thanks
    Kevin MacDonald

    After much gnashing of teeth I I came up with what appears to be a workable solution. I am posting my solution here for the benefit of others. I was able to use NSIS to create an installer that first installs my AIR application via Adobe silent install feature (http://help.adobe.com/en_US/AIR/1.5/air_runtime_redist/air_runtime_redist.pdf), and then proceeds to install the content in the same folder. The end result is an application that should work for all users and is a reasonably seamless installation experience . The only downside is that you wind up with a total of 3 new items in the Programs & Features control panel: one for Adobe AIR, one for the NSIS installer, and one for the AIR application. The uninstaller only removes the NSIS installer, but that zaps all the content off the disk so it's not terrible. Another little gotcha is that the install folder in this script needs to match the folder in the descriptor file of the AIR application, because everything needs to wind up in the same folder.
    This also assumes you have permission from Adobe to redistribute the AIR runtime.
    My NSIS script is below.
    ; Script generated by the HM NIS Edit Script Wizard.
    ; HM NIS Edit Wizard helper defines
    !define PRODUCT_NAME "My Product Install Kit"
    !define PRODUCT_VERSION "2.0"
    !define PRODUCT_PUBLISHER "mycompany"
    !define PRODUCT_WEB_SITE "http://www.mycompany.com"
    !define PRODUCT_DIR_REGKEY "Software\Microsoft\Windows\CurrentVersion\App Paths\Adobe AIR Application Installer.exe"
    !define PRODUCT_UNINST_KEY "Software\Microsoft\Windows\CurrentVersion\Uninstall\${PRODUCT_NAME}"
    !define PRODUCT_UNINST_ROOT_KEY "HKLM"
    ; MUI 1.67 compatible ------
    !include "MUI.nsh"
    ; MUI Settings
    !define MUI_ABORTWARNING
    !define MUI_ICON "..\..\..\..\..\__staging\InstallerResources\TT.ico"
    !define MUI_UNICON "${NSISDIR}\Contrib\Graphics\Icons\modern-uninstall.ico"
    ; Welcome page
    ; License page
    !insertmacro MUI_PAGE_LICENSE "..\..\..\..\..\__staging\InstallerResources\License.txt"
    ; Directory page
    !insertmacro MUI_PAGE_DIRECTORY
    ; Instfiles page
    !insertmacro MUI_PAGE_INSTFILES
    ; Finish page
    ; NOTE: This provides an option to run the AIR application. This depends upon the Client.air file creating this executable. It doesn't get created by this installer.
    ;       Also, The directory 'My Product 2.0' shown anywhere in this script must match the installation directory created by Client.air or nothing will be in the right spot.
    !define MUI_FINISHPAGE_RUN "$INSTDIR\My Product 2.0\My Product 2.0.exe"
    !insertmacro MUI_PAGE_FINISH
    ; Uninstaller pages
    !insertmacro MUI_UNPAGE_INSTFILES
    ; Language files
    !insertmacro MUI_LANGUAGE "English"
    ; MUI end ------
    Name "${PRODUCT_NAME} ${PRODUCT_VERSION}"
    OutFile "Setup.exe"
    InstallDir "$PROGRAMFILES\mycompany"
    InstallDirRegKey HKLM "${PRODUCT_DIR_REGKEY}" ""
    ShowInstDetails show
    ShowUnInstDetails show
    var removePreviousInstall
    Section "MainSection" SEC01
      StrCpy $removePreviousInstall "A previously installed version of My Product 2.0 has been detected at $INSTDIR\My Product 2.0 that must be un-installed before proceeding. Please go to Control Panel --> Programs and Features and fully un-install any mycompany components. Also, make sure that this folder is deleted. Then, you may attempt to re-install. The installer will quit now."
      SetOutPath "$APPDATA\mycompanyAIRInstaller"
      SetOverwrite try
      File /r "..\..\..\..\..\__staging\mycompanyAIRInstaller\*.*"
      ReadRegStr $0 HKLM "SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\Adobe AIR" "DisplayVersion"
      IfErrors installAIRRuntime
      Goto installAIRFile
      installAIRRuntime:
      MessageBox MB_OK "NOTE: The Adobe AIR Runtime will now be installed. Please accept the AIR license agreement in the following dialog and allow the installation to complete."
      ExecWait '"$APPDATA\mycompanyAIRInstaller\AdobeAIRInstaller.exe"' $0
      ${If} $0 != '0'
        MessageBox MB_OK|MB_ICONSTOP 'Adobe AIR Installer returned error code ("$0"). Adobe AIR must be installed for this installation to complete.'
        Quit
      ${EndIf}
      installAIRFile:
      ;Check for existence of a previous installation
      IfFileExists "$INSTDIR\My Product 2.0" ExistingInstallDetected NoExistingInstallDetected
      ExistingInstallDetected:
         MessageBox MB_OK $removePreviousInstall
         Quit
      NoExistingInstallDetected:
    ;  MessageBox MB_OK "Installing Adobe AIR Runtime and Application via silent installation"
      ExecWait '"$APPDATA\mycompanyAIRInstaller\Adobe AIR\Versions\1.0\Adobe AIR Application Installer.exe" -silent -eulaAccepted -location "$INSTDIR" -desktopShortcut -programMenu "$APPDATA\mycompanyAIRInstaller\Client.air"' $0
      ${Switch} $0
      ${Case} '0'
        ${Break}
      ${Case} '1'
        MessageBox MB_OK 'A restart is required to complete this installation'
        ${Break}
      ${Case} '3'
        MessageBox MB_OK 'The Adobe AIR runtime was not found. Please try fulling un-installing any intalled components and attempt to re-install.'
        ${Break}
      ${Case} '4'
        MessageBox MB_OK 'Failed to load the Adobe AIR runtime. Please try fulling un-installing any intalled components and attempt to re-install.'
        ${Break}
      ${Case} '7'
      ${Case} '9'
        MessageBox MB_OK $removePreviousInstall
        Quit
        ${Break}
      ${Default}
        MessageBox MB_OK 'Unknown error ("$0") installing the Adobe AIR runtime. Please try fully un-installing any installed components and attempt to re-install.'
        ${Break}
      ${EndSwitch}
      SetOutPath "$INSTDIR\My Product 2.0\assets\abagale"
      File /r "..\..\..\..\..\__staging\Client_abagale\*.*"
    SectionEnd
    Section -AdditionalIcons
      SetOutPath $INSTDIR
    ;  WriteIniStr "$INSTDIR\${PRODUCT_NAME}.url" "InternetShortcut" "URL" "${PRODUCT_WEB_SITE}"
      CreateShortCut "$SMPROGRAMS\mycompany\Uninstall My Product 2.0.lnk" "$INSTDIR\Uninstall My Product 2.0.exe"
    SectionEnd
    Section -Post
      WriteUninstaller "$INSTDIR\Uninstall My Product 2.0.exe"
      WriteRegStr HKLM "${PRODUCT_DIR_REGKEY}" "" "$APPDATA\Adobe AIR\Versions\1.0\Adobe AIR Application Installer.exe"
      WriteRegStr ${PRODUCT_UNINST_ROOT_KEY} "${PRODUCT_UNINST_KEY}" "DisplayName" "$(^Name)"
      WriteRegStr ${PRODUCT_UNINST_ROOT_KEY} "${PRODUCT_UNINST_KEY}" "UninstallString" "$INSTDIR\uninst.exe"
      WriteRegStr ${PRODUCT_UNINST_ROOT_KEY} "${PRODUCT_UNINST_KEY}" "DisplayIcon" "$APPDATA\Adobe AIR\Versions\1.0\Adobe AIR Application Installer.exe"
      WriteRegStr ${PRODUCT_UNINST_ROOT_KEY} "${PRODUCT_UNINST_KEY}" "DisplayVersion" "${PRODUCT_VERSION}"
      WriteRegStr ${PRODUCT_UNINST_ROOT_KEY} "${PRODUCT_UNINST_KEY}" "URLInfoAbout" "${PRODUCT_WEB_SITE}"
      WriteRegStr ${PRODUCT_UNINST_ROOT_KEY} "${PRODUCT_UNINST_KEY}" "Publisher" "${PRODUCT_PUBLISHER}"
    SectionEnd
    Function un.onUninstSuccess
      HideWindow
      MessageBox MB_ICONINFORMATION|MB_OK "My Product 2.0 Install Kit was successfully removed from your computer."
    FunctionEnd
    Function un.onInit
      MessageBox MB_ICONQUESTION|MB_YESNO|MB_DEFBUTTON2 "Are you sure you want to completely remove My Product 2.0?" IDYES +2
      Abort
    FunctionEnd
    Section Uninstall
      RMDir /r "$INSTDIR\My Product 2.0\*.*"
      RMDir /r "$APPDATA\mycompanyAIRInstaller\*.*"
      ;Deletes the link put there by the AIR app installer.
      Delete "$SMPROGRAMS\mycompany\My Product 2.0.lnk"
      DeleteRegKey ${PRODUCT_UNINST_ROOT_KEY} "${PRODUCT_UNINST_KEY}"
      DeleteRegKey HKLM "${PRODUCT_DIR_REGKEY}"
      SetAutoClose true
    SectionEnd

  • AIR Application Silent install

    Is it possible to start AIR application immediately after Silent install.
    We have already signed up Adobe AIR Runtime Distribution Agreement.
    and i am using below command line for silent install.
    Airinstaller.exe -silent -eulaAccepted -location "C:/Program Files/Abcd"  abcd.air
    It works fine. But i want to launch AIR application immediately after install. Is it possible?
    Thanks!

    Thanks for posting the log.  It appears that the install is failing during the MSI portion of the install.
    Microsoft has just released a brand new tool that should help you resolve this problem.  Would you mind giving it a try and let us know how it works for you?  When running the new tool, go through the uninstall process and try to remove AirWrite from your system.  Once that's done, give your command line another try.
    http://support.microsoft.com/mats/Program_Install_and_Uninstall/en-us
    Thanks,
    Chris

  • Applications wont install

    hello. im new to the apple world so please bare with me. i have a powerbook g4 that was given to me from a friend. i recently downloaded the latest version of safari. when i try to open the application to install it, it wont install. it says The Bill of Materials for this package was not found. so, i downloaded firefox. it installed, but it wont even open. the icon just bounces and it doesnt open. any help would be appreciated. thank you

    cgg1120:
    Welcome to Apple Discussions.
    To run Firefox on Jaguar (OS X 10.2x) you will need to download Firefox 2. You could also consider SeaMonkey. However, I concur with the previous poster that you should consider upgraging your OS to Tiger or at least Panther. If you are currently running Jaguar your PowerBook G4 either has an 867 MB processor or a 1 GB processor. While both will meet the Here are the technical specifications for Leopard, the 867 MB will be quite sluggish and 1 GB processor may be a bit better but it is hard to tell how much.
    cornelius

  • APPV 4.6 Application wont Install

    Hi,
    I have deployed an Appv 4.6 sp2 application through SCCM 2012 and it transfers to the distribution point without errors(checked distribution log and packet transfer log), but it wont install onto the Windows 7 desktop.
    I go to the application catalog to install the application, it downloads to the client cache and then displays the failed message "The software change returned error code 0x87D00607 (-2016410105)
    The AppEnforce.log says:
    "The OSD file "C:\windows\ccm\cache\6h\appname (14th Edition) 2014.0.0.107.osd" does not exist. (0x80070002)
    When I look in the cache this file does not exist. I have checked the xml file and the osd in the original installation folder on the SCCM server and they look correct.
    Anyone have any ideas on what to check next
    Thxs
    Jaz

    Hi,
    Please check CAS.log, LocationServices.log and ContentTransferManager.log on the client. These logs will indicate what happened when downloading the application.
    You could also need to check if the boundary group assigned to the DP is correctly configured.
    Best Regards,
    Joyce
    We
    are trying to better understand customer views on social support experience, so your participation in this
    interview project would be greatly appreciated if you have time.
    Thanks for helping make community forums a great place.

  • Howto: Put in CD / DVD - sample adobe air application with installing process:

    Hello anything,
    Please do not forget!
    With Flex-SDK (newer version)
    CD / DVD: ROM:
    /os
    /win = Windows Version like *.exe, *.msi, *.cmd *.vs or *.ws
    /mac = Macintoch Version like *.pkg, *.app, *.dmg,, *.mpkg
    /lin = Linux version like *.run, *. , *.bin, *.sh, *.rpm,
    *.deb
    /setup = your adobe air application like Custom air-able
    installer = my great installer ( Cominig soon... )
    /images your photos or texture or any styles... , icons too
    /acabs = my suggestion for like Windows *.cab <> Air
    Cab = *.acab
    /locales = for your languages ...
    /folder any your suggestions...
    /flex-sdk = Flex Software Development Kit = Adobe Flex SDK
    (no flexbuilder 3)
    /helps = When you need help like *.pdf Files.for Installer
    / = callable autorun with autostart.jar or autorun.jar
    If you want to build powerful application on Windows 32 or 64
    Bit you can sometime regedit writing. DO NOT WORRY!!!! My special
    installer (coming soon).
    I have been created a sample installer. whe i am final with
    my installer. Do not worry! You can to believe me really. :)
    How do i bind to exec for java? (No javascript! OK)
    How do i create shell for Mac OS X Leopard
    Do not forget!
    I have been created shell in /os/mac/preload_installer.sh,
    How do i know when i do not use with disk image moving and
    clicking? How does my shell start automacally?
    I know for Linux. I have not problem for linux version. I
    have Ubuntu 8.05 LTS Version. :).
    But i haven't Mac OS X :(
    Thank you for cross-plattform-able CD or DVD :)
    Enjoy for making with image and burn an image since cd or
    dvd-rom.
    Best regards, SnakeMedia

    Could you open a new bug report on this over at bugbase.adobe.com.  Please include a copy of your app (or a sample project) along with steps to reproduce.  Once added, please let me know the bug number and I'll have somone take a look ASAP.
    Thanks,
    Chris

  • Help signing Air Application

    Hi,
    I am trying to sort out an issue with signing an AIR application using Flash.
    The certificate was downloaded from Thawte into Firefox,backed up the certificate to a p12 file and used that in the     Air2 settings area.
    Every time I try to publish, I get an error "unable to build a valid certificate chain for the signer"
    I am using Macosx 10.6 and flash CS5
    Any ideas would be greatly appreciated.

    Hurray i fixed it.
    I had to debug by adding extra files one by one, which was very painful.
    However i found out that one .flv i had included had the & sign in its name. This was causing the error.

  • Adobe Air application not installing

    Hello, I am using Windows vista 32bit.  I have adobe Air installed and installing the program "Adobe Air" succeeds with no issues.
    The problem is when I try to install a "*.air" package on this computer it does not function.  Windows sees the package and the installer opens.  The problem is it just stays in my task manager forever.
    Any help on how to debug would be appreciated.
    Thanks,
    Danny

    I have 64-bit / (x86) windows 7 Home Premium. I've attempted uninstalling and re-installing the latestest AIR version seperately and with Download Helper to no avail. I've also checked my account status and can confirm I have full administrator privileges enabling me to make changes to my computer.
    What can I do? I keep on getting the "Sorry, an error occurred,"

  • Air Application not installing included folders on Win 7

    Hi All
    i have a really strange problem. I have made a native air installer. I have included a folder in the included files panel before publishing. When I publish it publishes fine. And when I install the air app it installs the only problem is When I go to the installed directory I see the air app but not the folder I included. Should this be the case? Where is the included folder. Can anyone help???
    regards Mike

    This is the response i got from the Adobe AIR team
    Ann Garrido-Nakagawa from Adobe AIR Team
    Thanks for the details. I was able to reproduce and I’ve added the information to the bug report.

  • Unable to launch air application after installing air application

    Hi All,
    I Am able to install air desktop appication but when ever I click on desktop Icon or from installed directory appication is not launching even I Am not getting any alert.
    Please help me.
    Thanks and Regards
    Ataulla S H

    Same for me on my Mac.  I have reinstalled and even uninstalled and reinstalled. IT DOES NOT WORK

  • HELP, NO MAC APPLICATION AFTER INSTALLING BOOT CAMP

    I recently decided to install Windows XP on my MAC. After doing so I no longer have acces to anything other than Windows. Its like the MAC side vanished. ??????
    can anyone advise me how to fix this problem? Has anyone experianced the same problem?
    Message was edited by: MC1958

    MC1958,
    Put in your Leopard disk, or the 1st disk that came with your computer. Hold Option while your computer is turning on and select the Leopard disk. Click next so that you can see the menu along the top of your screen. I don't recommend going farther then the Welcome screen as it is how you start a reinstall. On the menu screen that comes up go to utilities/start up disk and select your mac drive. Then quit and restart it should boot to mac.
    Also before you restart goto utilities/Disk Utility and make sure you have a Macintosh HD on the left
    IF you do not you might have reformatted your computer to just have the windows partition and then we will have to talk different options.
    Hope that helps,
    Weston

  • Help me! Itunes wont instal

    I tried downloading itunes10 and when i go to install it the itunes installer says "itunes installer completed - the installer encountered errors before itunes could be configured. your system has not been modified. to retry these operations at a later time, please run the installer again."
    what is going on and how can this be fixed so that i can download itunes.
    please help me!

    Can you check something for me please?
    Restart your PC. after the PC restarts, bring up your Task manager, and go to the "Processes" tab. Click "Image name" to sort the processes alphabetically.
    Now try to launch iTunes.
    Does an itunes.exe process appear? If so, does it vanish after a second or so, or does it persist in the Processes tab (even though iTunes itself never shows up)?

  • ISScript10 does not help; 8.0.2 wont install!

    I need to install 8.0.2 because my FTP login and password are
    never saved now since I installed IE7. But I cannot install 8.0.2.
    I get that error about a missing script engine. I have tried all
    the ideas I have found. I installed ISScript10 and it did not help.
    I installed 11 and it did not help. No matter what I do, I still
    cannot install 8.0.2.
    Can anyone recommend another option? I have never had this
    problem before. Why is it happening now?
    If nothing else, can I uninstall IE7 and at least have my FTP
    login and password start saving again like they are supposed to?
    Why would Dreamweaver be written in such a way that installing IE7
    would break its saving of the FTP login and password. That is
    really stupid!

    I am using XP SP2.
    I did see that link about canceling updater. I have not
    un-installed and reinstalled Dreamweaver. But I did install the
    8.0.1 update and that went on just fine. It would be helpful if
    8.0.2 used the same installer as 8.0.1 did. I really dont want to
    have to re-enter all my remote site information. I have a lot of
    remote sites. I guess I could export each of them and then import
    them back. This seems like a lot of busy to me. I did not cancel
    during an install of the update. I will try uninstalling and
    reinstalling Dreamweaver.
    The ISScript10 installs just fine and if I look at my "Common
    Files" folder, I see the InstallShield\driver\10 folder with all
    the files in place.
    Bryan

Maybe you are looking for