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

Similar Messages

  • 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.

  • Blue screen of death while installing any Adobe Air application

    Whenever I try to install an Air application I get a  Blue Screen and then my system restarts.
    I cannot even take a screenshot  of it.
    This happens with every air application I try to install.
    I also searched for the same on Adobe forums and found the same problem being faced by someone else.
    His problem was resolved by uninstalling a software named "Folder Lock".
    I searched my hard disk for this software and found one, so I deleted  that software (shift+delete) and removed all it's traces from registry  too but that still doesn't solved the problem.
    I also tried disabling the antivirus software and then install the air application but this also didn't helped.
    I was able to install air applications earlier, but now I can't.
    Anybody having same sort of problem. One colleague of mine is also having the same problem.
    Please help me out.
    My system's config is as follows:
    Windows XP Home sp3
    Flash Builder 4, with SDK 4.1, 3.5 installed in it.
    Adobe Air v 2.5
    1.5 GB RAM
    1.66 MHz processor
    Thanks

    Hello chris,
    Thank you for taking out your time to solve my problem.
    I did all the steps mentioned in that link i.e. installed folder lock and uninstalled it from it's options only.
    But it didn't solve my problem.
    Here is the screenshot of the Blue Screen Of Death that I was presented while the application was being installed.
    The BSOD appeared while the application install progress is shown to the end user.
    I hope this will help you get more insight of the issue.
    Thanks

  • Install error in Air application created in Flex builder

    Hi all,
    When I export the release version of an AIR project, and
    attempt to
    run the resulting AIR file, I get the error "The application
    could not
    be installed because the AIR file is damaged. Try obtaining a
    new AIR
    file from the publisher." This happens every time, with every
    project.
    I even created a new project, and tried exporting that
    project without
    adding any of my own code to it and still the same error. The
    export
    process does not generate any errors.
    I ' ve adobe cs3 and Flash Player 10. Adobe flex_sdk_3 and
    airsdk also installed.But .air file was can't install
    Thanks in Advance,

    hello tzeng,
    The air file was created by using Flex Builder 3 .One xml
    file and mxml file were used. The project export release the .air
    file (installer package ). When i install the .air file that error
    has occured.
    Thanks for reply,

  • Unable to install an Adobe AIR application with -location to correct path

    Hi
    Im trying to silent install an air app on the command line (Windows).  But the path i use after -location is ignored.
    This is the code im using:
    "C:\Program Files\Common Files\Adobe AIR\Versions\1.0\Adobe AIR Application Installer.exe" "-silent" "-location" "C:\Program Files\my_app_name" "C:\Program Files\my_app_name.air"
    What ever i add after -location isnt used and it gets added to the default location.  Has anybody else found this?
    Thanks
    James

    Thanks and see this article, the detail is not what is the command that allows me themassive installation of AIR application.

  • Installing and Running Air application from webpage

    Hello ,
    I am trying to run the air application from web page and its working fine in my system. (http://localhost:8080/examples/test1.html)
    if i try to run the same air application from another system's webpage by pointing the url to my system's IP Address,(http://lpAdres of my system:8080/examples/test1.html) its showing error "The application could not be installed because the installer file is damaged. Try obtaining a new installer file from the application author"
    Air Application version are . Flex3.6 sdk and Air2.7 sdk & runtime
    Any of you know what could be the problem.
    please help em to resolve this issue asap.
    its very urgent requirement

    Hi, Jeff;
    Make sure you have compiled your application as 32 bit, and not "any cpu".
    See this document for some more info: [64|http://www.sdn.sap.com/irj/boc/index?rid=/library/uuid/10d5fa88-2013-2c10-c9a5-f11963607d4e&overridelayout=true]
    Regards,
    Jonathan
    Follow us on Twitter u2013 http://twitter.com/SAPCRNetSup

  • Unattended install of a .air applications - how to

    I have a Adobe Air application ( .air) that I need to install across multiple machines.
    Is there anyway to do a unattended install?
    This would be on Mac OS Based computers and I have access to Apple Remote Desktop so I can copy and start the installer application on each machine, but right now it stops at the security screen like the one shown below and I have to visit each computer to complete.
    Thank you
    Mark

    Firefox Profiles - Where Firefox stores your bookmarks, passwords and other user data
    Profile Backup and Restore
    *http://kb.mozillazine.org/Profile_backup
    *https://support.mozilla.org/en-US/kb/back-and-restore-information-firefox-profiles
    *http://kb.mozillazine.org/Transferring_data_to_a_new_profile_-_Firefox
    More about Profile
    *https://support.mozilla.org/en-US/kb/profiles-where-firefox-stores-user-data
    *https://support.mozilla.org/en-US/kb/profile-manager-create-and-remove-firefox-profiles
    *http://kb.mozillazine.org/Profile_folder_-_Firefox
    *http://kb.mozillazine.org/Profile_Manager

  • I receive the error, "Sorry, an error has occured."  When I try to install my Adobe AIR application.

    Jeff,
    I'm having the same problems when trying to download any Adobe products.

    Niadee I branched your discussion out to a new thread as it does not appear to be related to trying to install Adobe Download Assistant in Mac OS 10.8.2.  Are you receiving this error when you are trying to install the Adobe Download Assistant?  Also what version of Windows do you have installed?

  • "Se ha producido algún error al intentar instalar esta aplicación" error when trying to install a .air application

    Hello,
    I'm having an issue when trying to install Warcraft Logs application:
    Warcraft Logs - Combat Analysis for Warcraft
    https://www.warcraftlogs.com/client/warcraftlogs.air
    I successfully install Adobe AIR, version 17.0.0.144 (and I'm using Windows 7 64 bits), without any problem (well, that's what I suppose), this is the Install.log from the Adobe AIR:
    [2015-04-19:19:27:30] Runtime Installer begin with version 17.0.0.144 on Windows 7 x86
    [2015-04-19:19:27:30] Commandline is:
    [2015-04-19:19:27:30] No installed runtime detected
    [2015-04-19:19:27:32] Relaunching with elevation
    [2015-04-19:19:27:32] Launching subprocess with commandline c:\users\alberto\appdata\local\temp\air276b.tmp\adobe air installer.exe -ei
    [2015-04-19:19:27:32] Runtime Installer begin with version 17.0.0.144 on Windows 7 x86
    [2015-04-19:19:27:32] Commandline is: -stdio \\.\pipe\AIR_5800_0 -ei
    [2015-04-19:19:27:32] No installed runtime detected
    [2015-04-19:19:27:32] Starting silent runtime install. Installing runtime version 17.0.0.144
    [2015-04-19:19:27:32] Installing msi at c:\users\alberto\appdata\local\temp\air276b.tmp\setup.msi with guid {34927EBC-98D4-4D53-98BE-510DF5999F50}
    [2015-04-19:19:27:33] Runtime Installer end with exit code 0
    [2015-04-19:19:27:34] Elevated install completed
    [2015-04-19:19:27:35] Launching subprocess with commandline c:\Program Files (x86)\Common Files\Adobe AIR\Versions\1.0\Resources\Adobe AIR Updater -installupdatecheck
    [2015-04-19:19:27:35] Runtime Installer end with exit code 0
    [2015-04-19:19:27:35] Runtime Installer begin with version 17.0.0.144 on Windows 7 x86
    [2015-04-19:19:27:35] Commandline is: -installupdatecheck
    [2015-04-19:19:27:35] Installed runtime (17.0.0.144) located at c:\Program Files (x86)\Common Files\Adobe AIR
    [2015-04-19:19:27:35] Performing pingback request
    [2015-04-19:19:27:36] Pingback request completed with HTTP status 200
    [2015-04-19:19:27:36] Starting runtime background update check
    [2015-04-19:19:27:36] Begin Background update download from http://airdownload.adobe.com/air/3/background/windows/x86/patch/17.0.0.144/update
    [2015-04-19:19:27:36] Unpackaging http://airdownload.adobe.com/air/3/background/windows/x86/patch/17.0.0.144/update to C:\Users\Alberto\AppData\Roaming\Adobe\AIR\Updater\Background
    [2015-04-19:19:27:36] Runtime update not available
    [2015-04-19:19:27:36] Unpackaging cancelled
    [2015-04-19:19:27:36] Runtime Installer end with exit code 0
    Afterwards, I try to install the warcraftlogs.air application, and when I execute the program I get the following error:
    Se ha producido algún error al intentar instalar esta aplicación. Instale la versión más reciente de Adobe AIR desde http://www.adobe.com/go/getair_es y vuelva a intentarlo.
    Translated it should be something like this (this is not the official English message):
    Some error has occurred while trying to install this application. Install the latest Adobe AIR version from http://www.adobe.com/go/getair_es and try again.
    I've tried to search anything related, because I can't find that exact error message in any Adobe troubleshooting page, but everything I can find is a really old version issue, or something I've tried without success (trying to install everything running as administrator, also via cmd.exe ran as administrator, installing an older version, uninstalling and installing 100 times Adobe AIR, etc.).
    I've also searched (but not asked) in Warcraft Logs forums for any solution, but I couldn't find anything related either.
    Any help would be appreciated.
    Thank you in advance and best regards! ^^

    Inesipinesii please remove your current installation of the Adobe Download Assistant from your Applications folder.  You will then be able to reinstall the Adobe Download Assistant and begin the download process for Photoshop Elements 11.  You can find more information at http://helpx.adobe.com/creative-suite/kb/troubleshoot-download-assistant.html#main_Known_i ssues.

  • Can't install air application from website

    I am trying to install an Adobe Air application from a local
    web page using badge but get the "Something went wrong trying to
    install this application"
    When I click on the .air file directly all works ok
    One thing I've noticed is that if I try to launch the .air
    file from the browser, it doesn't to know what program to use to
    open the file as buttons on the (Do you want to save this file or
    find a program online to open it) dialog are Find, Save and Cancel
    (Not Open).
    I've checked the file extensions in Internet Tools and the
    program for .air is Adobe Air Application Installer which I assume
    is correct.
    I've also checked that the MIME entry is correct on IIS
    I'm running on a 32bit machine with Vista Business and using
    IE7
    Can anyone help me please, I've been stuck on this for
    ages

    Howdy Niel
    Looks like Apple has opened it's kimono a bit...
    Statement from Apple to CNBC ± 10:00 PDT-US
    from http://www.cnbc.com/id/102495735
    "We apologize to our customers experiencing problems with iTunes and other services this morning. The cause was an internal DNS error at Apple. We're working to make all of the services available to customers as soon as possible, and we thank everyone for their patience," Apple said in a statement to CNBC.
    ÇÇÇ

  • Installing AIR application gives blue screen of death

    I tried installing an Adobe AIR application called HelloWorld.air from a book entitled "Adobe Flex 3 Training from the Source", and I would get the Windows' blue screen of death. I've seen others post about this, so I know I am not alone. My operating system is Windows XP Professional SP 2 and above.
    This issue is preventing me from even getting into Adobe AIR application development, and I was wondering when a fix for this will be made. I tried downloading the Adobe AIR runtime again, but it is still the same byte size as the previous one I downloaded, so I'm assuming it's still the same one (since it doesn't state any version number).
    Is there anyone who has had this problem and was eventually able to work with Adobe AIR? Any response would be immensely appreciated.
    Thanks.

    I remember when I was getting BSODs the first time I tried installing an
    .AIR application on my laptop, I got that "Send Error Report" window from
    Microsoft, and I had clicked to send it. It came back with a report stating
    that this was being caused by anti-virus software. This time around, I
    turned off my anti-virus software (from CA, or Computer Associates) I
    downloaded your application and tried to install it, and once again, I only
    got as far as where I could select to save an icon to my desktop and/or to
    launch the application after install, and when I clicked the "Install"
    button, I got the BSOD right away.
    I went the extra mile this time though. I installed Adobe AIR and your
    application on another desktop that is totally clean with absolutely no
    antivirus software whatsoever, not even a software firewall. I got the same
    BSOD at the exact same spot.
    I know Adobe knows about this because of a past thread I had not only read,
    but responded to as well. It's just unfortunate it hasn't been fixed yet
    because I'm really raring to start writing Adobe AIR apps.
    By the way, Damon, your app looks nice, I just wish I had been able to
    install it to see what it's all about. Lastly, thank you for responding to
    my issue. I will report this as a bug on that link you gave me.
    David

  • Packaging an AIR application in a native installer

    Hi! I'm trying to create a native installer of my AIR Application,  because (I think) it's the only way make the native processes working.  But I have a problem: I used the following command to pack: "adt  -package -storetype pkcs12 -keystore myCert.pfx -target native  -storetype pkcs12 -keystore myCert.pfx myApp.exe myApp-app.xml", but I get  the error: "File myApp-app.xml is not a valid AIRI or AIR file". In the  Flash Builder I use as additional compiler arguments:  "-locale=pt_PT,en_UK,fr_FR,de_DE,ro_RO,es_ES  -allow-source-path-overlap=true -source-path=assets" and I add the  source path "src/locale/{locale}/". What is the sintax for packing my  AIR application in a native installer? Thanks in advance.

    Hi again! Thanks for the reply. I based myself on the link to see what command syntax I should use to pack my Air Windowed Application and it was the command that I presented in the previous post.
    adt version "2.0.1.12090"
                                                  My Descriptor File
    <?xml version="1.0" encoding="utf-8" standalone="no"?>
    <application xmlns="http://ns.adobe.com/air/application/2.0">
    <!-- Adobe AIR Application Descriptor File Template.
        Specifies parameters for identifying, installing, and launching AIR applications.
        xmlns - The Adobe AIR namespace: http://ns.adobe.com/air/application/2.0
                The last segment of the namespace specifies the version
                of the AIR runtime required for this application to run.
        minimumPatchLevel - The minimum patch level of the AIR runtime required to run
                the application. Optional.
    -->
        <!-- A universally unique application identifier. Must be unique across all AIR applications.
             Using a reverse DNS-style name as the id is recommended. (Eg. com.example.ExampleApplication.) Required. -->
        <id>com.MyCompany.Application</id>
        <!-- Used as the filename for the application. Required. -->
        <filename>Production Control System</filename>
        <!-- The name that is displayed in the AIR application installer.
             May have multiple values for each language. See samples or xsd schema file. Optional. -->
        <name>Production Control System</name>
        <!-- An application version designator (such as "v1", "2.5", or "Alpha 1"). Required. -->
        <version>2.1.3</version>
        <!-- Description, displayed in the AIR application installer.
             May have multiple values for each language. See samples or xsd schema file. Optional. -->
        <!-- <description></description> -->
        <!-- Copyright information. Optional -->
        <!-- <copyright></copyright> -->
        <!-- Publisher ID. Used if you're updating an application created prior to 1.5.3 -->
        <!-- <publisherID>My Company</publisherID> -->
        <!-- Settings for the application's initial window. Required. -->
        <initialWindow>
            <!-- The main SWF or HTML file of the application. Required. -->
            <!-- Note: In Flash Builder, the SWF reference is set automatically. -->
            <content>[This value will be overwritten by Flash Builder in the output app.xml]</content>
            <!-- The title of the main window. Optional. -->
            <!-- <title></title> -->
            <!-- The type of system chrome to use (either "standard" or "none"). Optional. Default standard. -->
            <systemChrome>none</systemChrome>
            <!-- Whether the window is transparent. Only applicable when systemChrome is none. Optional. Default false. -->
            <transparent>true</transparent>
            <!-- Whether the window is initially visible. Optional. Default false. -->
            <!-- <visible></visible> -->
            <!-- Whether the user can minimize the window. Optional. Default true. -->
            <!-- <minimizable></minimizable> -->
            <!-- Whether the user can maximize the window. Optional. Default true. -->
            <!-- <maximizable></maximizable> -->
            <!-- Whether the user can resize the window. Optional. Default true. -->
            <!-- <resizable></resizable> -->
            <!-- The window's initial width in pixels. Optional. -->
            <!-- <width></width> -->
            <!-- The window's initial height in pixels. Optional. -->
            <!-- <height></height> -->
            <!-- The window's initial x position. Optional. -->
            <!-- <x></x> -->
            <!-- The window's initial y position. Optional. -->
            <!-- <y></y> -->
            <!-- The window's minimum size, specified as a width/height pair in pixels, such as "400 200". Optional. -->
            <!-- <minSize></minSize> -->
            <!-- The window's initial maximum size, specified as a width/height pair in pixels, such as "1600 1200". Optional. -->
            <!-- <maxSize></maxSize> -->
        </initialWindow>
        <!-- We recommend omitting the supportedProfiles element, -->
        <!-- which in turn permits your application to be deployed to all -->
        <!-- devices supported by AIR. If you wish to restrict deployment -->
        <!-- (i.e., to only mobile devices) then add this element and list -->
        <!-- only the profiles which your application does support. -->
        <!-- <supportedProfiles>desktop extendedDesktop mobileDevice extendedMobileDevice</supportedProfiles> -->
        <supportedProfiles>extendedDesktop</supportedProfiles>
        <!-- The subpath of the standard default installation location to use. Optional. -->
        <!-- <installFolder></installFolder> -->
        <!-- The subpath of the Programs menu to use. (Ignored on operating systems without a Programs menu.) Optional. -->
        <!-- <programMenuFolder></programMenuFolder> -->
        <!-- The icon the system uses for the application. For at least one resolution,
             specify the path to a PNG file included in the AIR package. Optional. -->
        <!-- <icon>
            <image16x16></image16x16>
            <image32x32></image32x32>
            <image48x48></image48x48>
            <image128x128></image128x128>
        </icon> -->
        <!-- Whether the application handles the update when a user double-clicks an update version
        of the AIR file (true), or the default AIR application installer handles the update (false).
        Optional. Default false. -->
        <customUpdateUI>true</customUpdateUI>
        <!-- Whether the application can be launched when the user clicks a link in a web browser.
        Optional. Default false. -->
        <!-- <allowBrowserInvocation></allowBrowserInvocation> -->
        <!-- Listing of file types for which the application can register. Optional. -->
        <!-- <fileTypes> -->
            <!-- Defines one file type. Optional. -->
            <!-- <fileType> -->
                <!-- The name that the system displays for the registered file type. Required. -->
                <!-- <name></name> -->
                <!-- The extension to register. Required. -->
                <!-- <extension></extension> -->
                <!-- The description of the file type. Optional. -->
                <!-- <description></description> -->
                <!-- The MIME content type. -->
                <!-- <contentType></contentType> -->
                <!-- The icon to display for the file type. Optional. -->
                <!-- <icon>
                    <image16x16></image16x16>
                    <image32x32></image32x32>
                    <image48x48></image48x48>
                    <image128x128></image128x128>
                </icon> -->
            <!-- </fileType> -->
        <!-- </fileTypes> -->
        <!-- iPhone/iPad -specific capabilities -->
        <!-- <iPhone> -->
            <!-- A list of plist key/value pairs to be added to the application Info.plist -->
            <!-- <InfoAdditions>
                <![CDATA[
                    <key>UIDeviceFamily</key>
                    <array>
                        <string>1</string>
                        <string>2</string>
                    </array>
                    <key>UIStatusBarStyle</key>
                    <string>UIStatusBarStyleBlackOpaque</string>
                    <key>UIRequiresPersistentWiFi</key>
                    <string>YES</string>
                ]]>
            </InfoAdditions> -->
        <!-- </iPhone> -->
    </application>

  • Error updating AIR application on Linux

    Hello,
    I'm trying to update an AIR application that's already installed, and I'm getting the following error message every time:
    "The application could not be installed because another application is already being installed. Complete the first installation before proceeding with this one."
    There doesn't seem to be any other installation happening, and I still get the same error after restarting the computer.
    I'm running AIR 2.6.0.19170 on Ubuntu 11.10. The end of Install.log is shown below (the full contents of the log are at http://pastebin.com/ExtFdpfg).
    I'd be grateful for any suggestions as to how to resolve this.
    Thanks
    Install.log:
    [Adobe AIR Application Installer:10319][INFO] Application Installer begin with version 2.6.0.19170 on Linux x86
    [Adobe AIR Application Installer:10319][INFO] Commandline is:
    [Adobe AIR Application Installer:10319][INFO] Installed runtime (2.6.0.19170) located at /opt/Adobe AIR
    [Adobe AIR Application Installer:10319][INFO] Unpackaging file:///home/joggler/Downloads/joggler_client_1.0.444.air to /tmp/FlashTmp.sOyZbs
    [Adobe AIR Application Installer:10319][INFO] Application signature verified
    [Adobe AIR Application Installer:10319][INFO] Unpackaging/validation complete
    [Adobe AIR Application Installer:10319][INFO] Installed app (com.kevinwilson.housecontrol) located at /opt/HouseControl/bin/HouseControl
    [Adobe AIR Application Installer:10319][INFO] Converting unpackaged application to a native installation package in /tmp/FlashTmp.tkg6Ti
    [Adobe AIR Application Installer:10319][INFO] Native installation package creation succeeded
    [Adobe AIR Application Installer:10319][INFO] Starting app update of /opt. Updating from com.kevinwilson.housecontrol version 1.0.442 to com.kevinwilson.housecontrol version 1.0.444 using the source file at file:///home/joggler/Downloads/joggler_client_1.0.444.air
    [Adobe AIR Application Installer:10319][ERR] Error occurred during rpm uninstall operation; beginning rollback: [ErrorEvent type="error" bubbles=false cancelable=false eventPhase=2 text="Unhandled exception Error: Only root can uninstall the application" errorID=0]
    [Adobe AIR Application Installer:10319][INFO] Rollback complete
    [Adobe AIR Application Installer:10319][ERR] Got an unexpected fatal error while in stateInstalling: [ErrorEvent type="error" bubbles=false cancelable=false eventPhase=2 text="Unhandled exception Error: Only root can uninstall the application" errorID=0]
    [Adobe AIR Application Installer:10319][INFO] Launching subprocess with commandline /opt/Adobe AIR/Versions/1.0/Adobe AIR Application Installer -runtime /opt -update -silent -logToStdout /opt/HouseControl/bin/HouseControl file:///home/joggler/Downloads/joggler_client_1.0.444.air 1.0.444
    [Adobe AIR Application Installer:10319][INFO] Relaunching with elevation
    [Adobe AIR Application Installer:10319][ERR] Elevated install failed: error 5008 3
    [Adobe AIR Application Installer:10319][ERR] Application Installer end with exit code 7
    [Adobe AIR Application Installer:2815][INFO] Application Installer begin with version 2.6.0.19170 on Linux x86
    [Adobe AIR Application Installer:2815][INFO] Commandline is: -update /opt/HouseControl/bin/HouseControl "/home/joggler/.appdata/com.kevinwilson.housecontrol/Local Store/#ApplicationUpdater/update.air" 1.0.444
    [Adobe AIR Application Installer:2815][INFO] Installed runtime (2.6.0.19170) located at /opt/Adobe AIR
    [Adobe AIR Application Installer:2815][INFO] Installed app (com.kevinwilson.housecontrol) located at /opt/HouseControl/bin/HouseControl
    [Adobe AIR Application Installer:2815][INFO] Unpackaging file:///home/joggler/.appdata/com.kevinwilson.housecontrol/Local%20Store/%23ApplicationUpdater/update.air to /tmp/FlashTmp.B8ssc2
    [Adobe AIR Application Installer:2815][INFO] Application signature verified
    [Adobe AIR Application Installer:2815][INFO] Unpackaging/validation complete
    [Adobe AIR Application Installer:2815][INFO] Converting unpackaged application to a native installation package in /tmp/FlashTmp.U5gXca
    [Adobe AIR Application Installer:2815][INFO] Native installation package creation succeeded
    [Adobe AIR Application Installer:2815][INFO] Starting app update of /opt. Updating from com.kevinwilson.housecontrol version 1.0.442 to com.kevinwilson.housecontrol version 1.0.444 using the source file at file:///home/joggler/.appdata/com.kevinwilson.housecontrol/Local%20Store/%23ApplicationUpdater/update.air
    [Adobe AIR Application Installer:2815][ERR] Error occurred during rpm uninstall operation; beginning rollback: [ErrorEvent type="error" bubbles=false cancelable=false eventPhase=2 text="Unhandled exception Error: Only root can uninstall the application" errorID=0]
    [Adobe AIR Application Installer:2815][INFO] Rollback complete
    [Adobe AIR Application Installer:2815][ERR] Got an unexpected fatal error while in stateInstalling: [ErrorEvent type="error" bubbles=false cancelable=false eventPhase=2 text="Unhandled exception Error: Only root can uninstall the application" errorID=0]
    [Adobe AIR Application Installer:2815][INFO] Launching subprocess with commandline /opt/Adobe AIR/Versions/1.0/Adobe AIR Application Installer -runtime /opt -update -silent -logToStdout /opt/HouseControl/bin/HouseControl file:///home/joggler/.appdata/com.kevinwilson.housecontrol/Local%20Store/%23ApplicationUpdater/update.air 1.0.444
    [Adobe AIR Application Installer:2815][INFO] Relaunching with elevation
    [Adobe AIR Application Installer:2815][ERR] Elevated install failed: error 5008 3

    Hello,
    I'm trying to update an AIR application that's already installed, and I'm getting the following error message every time:
    "The application could not be installed because another application is already being installed. Complete the first installation before proceeding with this one."
    There doesn't seem to be any other installation happening, and I still get the same error after restarting the computer.
    I'm running AIR 2.6.0.19170 on Ubuntu 11.10. The end of Install.log is shown below (the full contents of the log are at http://pastebin.com/ExtFdpfg).
    I'd be grateful for any suggestions as to how to resolve this.
    Thanks
    Install.log:
    [Adobe AIR Application Installer:10319][INFO] Application Installer begin with version 2.6.0.19170 on Linux x86
    [Adobe AIR Application Installer:10319][INFO] Commandline is:
    [Adobe AIR Application Installer:10319][INFO] Installed runtime (2.6.0.19170) located at /opt/Adobe AIR
    [Adobe AIR Application Installer:10319][INFO] Unpackaging file:///home/joggler/Downloads/joggler_client_1.0.444.air to /tmp/FlashTmp.sOyZbs
    [Adobe AIR Application Installer:10319][INFO] Application signature verified
    [Adobe AIR Application Installer:10319][INFO] Unpackaging/validation complete
    [Adobe AIR Application Installer:10319][INFO] Installed app (com.kevinwilson.housecontrol) located at /opt/HouseControl/bin/HouseControl
    [Adobe AIR Application Installer:10319][INFO] Converting unpackaged application to a native installation package in /tmp/FlashTmp.tkg6Ti
    [Adobe AIR Application Installer:10319][INFO] Native installation package creation succeeded
    [Adobe AIR Application Installer:10319][INFO] Starting app update of /opt. Updating from com.kevinwilson.housecontrol version 1.0.442 to com.kevinwilson.housecontrol version 1.0.444 using the source file at file:///home/joggler/Downloads/joggler_client_1.0.444.air
    [Adobe AIR Application Installer:10319][ERR] Error occurred during rpm uninstall operation; beginning rollback: [ErrorEvent type="error" bubbles=false cancelable=false eventPhase=2 text="Unhandled exception Error: Only root can uninstall the application" errorID=0]
    [Adobe AIR Application Installer:10319][INFO] Rollback complete
    [Adobe AIR Application Installer:10319][ERR] Got an unexpected fatal error while in stateInstalling: [ErrorEvent type="error" bubbles=false cancelable=false eventPhase=2 text="Unhandled exception Error: Only root can uninstall the application" errorID=0]
    [Adobe AIR Application Installer:10319][INFO] Launching subprocess with commandline /opt/Adobe AIR/Versions/1.0/Adobe AIR Application Installer -runtime /opt -update -silent -logToStdout /opt/HouseControl/bin/HouseControl file:///home/joggler/Downloads/joggler_client_1.0.444.air 1.0.444
    [Adobe AIR Application Installer:10319][INFO] Relaunching with elevation
    [Adobe AIR Application Installer:10319][ERR] Elevated install failed: error 5008 3
    [Adobe AIR Application Installer:10319][ERR] Application Installer end with exit code 7
    [Adobe AIR Application Installer:2815][INFO] Application Installer begin with version 2.6.0.19170 on Linux x86
    [Adobe AIR Application Installer:2815][INFO] Commandline is: -update /opt/HouseControl/bin/HouseControl "/home/joggler/.appdata/com.kevinwilson.housecontrol/Local Store/#ApplicationUpdater/update.air" 1.0.444
    [Adobe AIR Application Installer:2815][INFO] Installed runtime (2.6.0.19170) located at /opt/Adobe AIR
    [Adobe AIR Application Installer:2815][INFO] Installed app (com.kevinwilson.housecontrol) located at /opt/HouseControl/bin/HouseControl
    [Adobe AIR Application Installer:2815][INFO] Unpackaging file:///home/joggler/.appdata/com.kevinwilson.housecontrol/Local%20Store/%23ApplicationUpdater/update.air to /tmp/FlashTmp.B8ssc2
    [Adobe AIR Application Installer:2815][INFO] Application signature verified
    [Adobe AIR Application Installer:2815][INFO] Unpackaging/validation complete
    [Adobe AIR Application Installer:2815][INFO] Converting unpackaged application to a native installation package in /tmp/FlashTmp.U5gXca
    [Adobe AIR Application Installer:2815][INFO] Native installation package creation succeeded
    [Adobe AIR Application Installer:2815][INFO] Starting app update of /opt. Updating from com.kevinwilson.housecontrol version 1.0.442 to com.kevinwilson.housecontrol version 1.0.444 using the source file at file:///home/joggler/.appdata/com.kevinwilson.housecontrol/Local%20Store/%23ApplicationUpdater/update.air
    [Adobe AIR Application Installer:2815][ERR] Error occurred during rpm uninstall operation; beginning rollback: [ErrorEvent type="error" bubbles=false cancelable=false eventPhase=2 text="Unhandled exception Error: Only root can uninstall the application" errorID=0]
    [Adobe AIR Application Installer:2815][INFO] Rollback complete
    [Adobe AIR Application Installer:2815][ERR] Got an unexpected fatal error while in stateInstalling: [ErrorEvent type="error" bubbles=false cancelable=false eventPhase=2 text="Unhandled exception Error: Only root can uninstall the application" errorID=0]
    [Adobe AIR Application Installer:2815][INFO] Launching subprocess with commandline /opt/Adobe AIR/Versions/1.0/Adobe AIR Application Installer -runtime /opt -update -silent -logToStdout /opt/HouseControl/bin/HouseControl file:///home/joggler/.appdata/com.kevinwilson.housecontrol/Local%20Store/%23ApplicationUpdater/update.air 1.0.444
    [Adobe AIR Application Installer:2815][INFO] Relaunching with elevation
    [Adobe AIR Application Installer:2815][ERR] Elevated install failed: error 5008 3

  • .AIR application not associated on Android?

    Hi folks, I have a feeling this is a real newbie question so bear with me.  I'm trying to install/open an AIR application on my tablet, a Toshiba Thrive that runs Android 3.0.  I've installed Adobe AIR, but the .air file installer package isn't associated with AIR (or any program at all) so I can't open it.  I'm thinking the application had been developed for Windows and that has something to do with it, but wanted to ask around first.  If there's more information needed let me know.

    Hello,
    You are correct, the .air installer is for desktops.  For Android, you'd need a .apk installer, though in most cases you'll receive the application from the market place.  I'd recommend reaching out to the developer and ask if they have an Android application.
    Thanks,
    Chris

  • Unable to export AIR application in FlashBuilder 4

    Hi,
    I have just finished an AIR application created in Flash Builder 4 / SDK 4.1.
    But  I have systematically a problem while exporting the application with  the Flash Builder wizard / button Export to a validated version.
    When I double click on the generated .air file, I've got the error :
    'This application cannot be installed because the installation program has not be configured correctly'.
    Thanks in advance for your help.
    Sophie

    Hi,
    First of all, thanks for your answer.
    I am working on a Windows XP server - Version 2002 - SP2.
    To avoid the following error message, Could not generate timestamp: Connection timed out: connect
    I set java.net.useSystemProxies=true in [Adobe Flash Builder 4 folder]\jre\lib\net.properties
    Here's my Application-app.xml file :
    <?xml version="1.0" encoding="utf-8" standalone="no"?>
    <application xmlns="http://ns.adobe.com/air/application/2.0">
    <!-- Adobe AIR Application Descriptor File Template.
        Specifies parameters for identifying, installing, and launching AIR applications.
        xmlns - The Adobe AIR namespace: http://ns.adobe.com/air/application/2.0
                The last segment of the namespace specifies the version
                of the AIR runtime required for this application to run.
        minimumPatchLevel - The minimum patch level of the AIR runtime required to run
                the application. Optional.
    -->
        <!-- A universally unique application identifier. Must be unique across all AIR applications.
             Using a reverse DNS-style name as the id is recommended. (Eg. com.example.ExampleApplication.) Required. -->
        <id>com.akka.dgac.ClientLourdNA</id>
        <!-- Used as the filename for the application. Required. -->
        <filename>ClientLourdNA</filename>
        <!-- The name that is displayed in the AIR application installer.
             May have multiple values for each language. See samples or xsd schema file. Optional. -->
        <name>Client Lourd NA</name>
        <!-- An application version designator (such as "v1", "2.5", or "Alpha 1"). Required. -->
        <version>1.0</version>
        <!-- Description, displayed in the AIR application installer.
             May have multiple values for each language. See samples or xsd schema file. Optional. -->
        <!-- <description></description> -->
        <!-- Copyright information. Optional -->
        <copyright>Copyright 2011, Akka Technologies</copyright>
        <!-- Publisher ID. Used if you're updating an application created prior to 1.5.3 -->
        <!-- <publisherID></publisherID> -->
        <!-- Settings for the application's initial window. Required. -->
        <initialWindow>
            <!-- The main SWF or HTML file of the application. Required. -->
            <!-- Note: In Flash Builder, the SWF reference is set automatically. -->
            <content>ClientLourdNA.swf</content>
            <!-- The title of the main window. Optional. -->
            <title>Outil de rédaction d'un rapport d'audit Navigation Aérienne</title>
            <!-- The type of system chrome to use (either "standard" or "none"). Optional. Default standard. -->
            <!-- <systemChrome></systemChrome> -->
            <!-- Whether the window is transparent. Only applicable when systemChrome is none. Optional. Default false. -->
            <!-- <transparent></transparent> -->
            <!-- Whether the window is initially visible. Optional. Default false. -->
            <!-- <visible></visible> -->
            <!-- Whether the user can minimize the window. Optional. Default true. -->
            <!-- <minimizable></minimizable> -->
            <!-- Whether the user can maximize the window. Optional. Default true. -->
            <!-- <maximizable></maximizable> -->
            <!-- Whether the user can resize the window. Optional. Default true. -->
            <!-- <resizable></resizable> -->
            <!-- The window's initial width in pixels. Optional. -->
            <!-- <width></width> -->
            <!-- The window's initial height in pixels. Optional. -->
            <!-- <height></height> -->
            <!-- The window's initial x position. Optional. -->
            <!-- <x></x> -->
            <!-- The window's initial y position. Optional. -->
            <!-- <y></y> -->
            <!-- The window's minimum size, specified as a width/height pair in pixels, such as "400 200". Optional. -->
            <!-- <minSize></minSize> -->
            <!-- The window's initial maximum size, specified as a width/height pair in pixels, such as "1600 1200". Optional. -->
            <!-- <maxSize></maxSize> -->
        </initialWindow>
        <!-- We recommend omitting the supportedProfiles element, -->
        <!-- which in turn permits your application to be deployed to all -->
        <!-- devices supported by AIR. If you wish to restrict deployment -->
        <!-- (i.e., to only mobile devices) then add this element and list -->
        <!-- only the profiles which your application does support. -->
        <!-- <supportedProfiles>desktop extendedDesktop mobileDevice extendedMobileDevice</supportedProfiles> -->
        <!-- The subpath of the standard default installation location to use. Optional. -->
        <installFolder>bin-release</installFolder>
        <!-- The subpath of the Programs menu to use. (Ignored on operating systems without a Programs menu.) Optional. -->
        <!-- <programMenuFolder></programMenuFolder> -->
        <!-- The icon the system uses for the application. For at least one resolution,
             specify the path to a PNG file included in the AIR package. Optional. -->
        <!-- <icon>
            <image16x16></image16x16>
            <image32x32></image32x32>
            <image48x48></image48x48>
            <image128x128></image128x128>
        </icon> -->
        <!-- Whether the application handles the update when a user double-clicks an update version
        of the AIR file (true), or the default AIR application installer handles the update (false).
        Optional. Default false. -->
        <!-- <customUpdateUI></customUpdateUI> -->
        <!-- Whether the application can be launched when the user clicks a link in a web browser.
        Optional. Default false. -->
        <!-- <allowBrowserInvocation>true</allowBrowserInvocation> -->
        <!-- Listing of file types for which the application can register. Optional. -->
        <!-- <fileTypes> -->
            <!-- Defines one file type. Optional. -->
            <!-- <fileType> -->
                <!-- The name that the system displays for the registered file type. Required. -->
                <!-- <name></name> -->
                <!-- The extension to register. Required. -->
                <!-- <extension></extension> -->
                <!-- The description of the file type. Optional. -->
                <!-- <description></description> -->
                <!-- The MIME content type. -->
                <!-- <contentType></contentType> -->
                <!-- The icon to display for the file type. Optional. -->
                <!-- <icon>
                    <image16x16></image16x16>
                    <image32x32></image32x32>
                    <image48x48></image48x48>
                    <image128x128></image128x128>
                </icon> -->
            <!-- </fileType> -->
        <!-- </fileTypes> -->
    </application>
    Thanks in advance for your help.
    Sophie

Maybe you are looking for

  • Problem in creating a process

    Hi, I am trying to go through the excercize provided by teched for guided solution. When I am trying to create Process after creating a folder it gives the following exception: Caused by: com.sap.engine.lib.xml.parser.ParserException: XMLParser: Bad

  • Good photo printer???

    Does anyone have a recommendation for a good photo printer? I was using a Kodak Easyshare Printer dock plus, but since upgrading to iPhoto6, it's seems that it's no longer supported. I'm only using it for personal use, not a professional photographer

  • ReportCrash: Saved crash report for httpd[4789] version 793

    My iMac has started to loop on crashreports like the one pasted. I can't figure out whats wrong. Anyone with suggestions please? Thanks a lot Process:               httpd [5967] Path:                  /usr/sbin/httpd Identifier:            httpd Vers

  • PO WF error

    HI WF error in PO has the following message Work item 000000341410: Object CL_BBP_ACTION_NOTIFICATION_WF method SEND_PARAM_MESSAGE_WF cannot An exception with the type CX_SY_DYN_CALL_PARAM_MI SSING occurred, but was neither handled locall Has anybody

  • HT1766 I do not know how to back up that is why i made the apt i am afraid of loosing my info i did once before. why won't they help me?

    I crashed my i phone trying to upgrade. I took it to a Sprint store and they crashed my phone and lost all my iformation. I have made numerous efforts to make a new account and have no success, The reason for the apt is for Apple to save my info befo