AIR app store

Didn't Adobe used to have an AIR app store? Has that been discontinued? Are there any others out there, or are you basically on your own for desktop apps?
-Aaron

reset all settings
settings-general-reset-reset all settings
now reconnect to wifi
settings- wifi- click network name- enter password - join
if issue persists back up and restore as new via iTunes
Peace, Clyde

Similar Messages

  • I get 'unknown error' message when I try to sign in to Air app store (I can sign in to iTunes just fine). Anyone help

    When I try to sign in to the Air app store, I get an 'unknown error' message.  I can sign in to iTunes just fine.  Any suggestions?

    Fixed the problem by going to settings/store and logging out with apple ID.  Then logged back in with password and updates, apps, and iTunes store seem to work ok now.

  • HT2534 My iPad  Air App Store hangs

    My iPad AIR App Store stuck on setting Empire: Four Kingdoms. I can not update my apps any more.
    Please let me know if somebody knows how to fix this problem

    reset all settings
    settings-general-reset-reset all settings
    now reconnect to wifi
    settings- wifi- click network name- enter password - join
    if issue persists back up and restore as new via iTunes
    Peace, Clyde

  • "Unknown error has occurred" in MacBook Air App Store

    Hi,
    When I try to log onto the App Store from my used MacBook Air, it says "unknown error has occured" and doesn't allow me to move forward. I have read that these typs of issues (I am having problems with logging into the computer with my Apple ID and FaceTime as well) can be fixed once upgrading to Mountain Lion, but I cannot upgrade if I cannot connect to the store.
    So, how do I go about entering the store without making an alternate ID?
    Thanks!

    Hi rob8up,
    How long ago did you speak to the techs? Have you given them (meaning Apple) enough time to rectify this issue? If not, chill out. If so, then we can't help you here. We are just users like you....
    You can send feedback to Apple via this link:
    http://www.apple.com/feedback/
    Cheers,
    GB

  • Purchased iPad air, App store charged me for downloading numbers app

    I purchased an iPad air recently.I was told that iWorks can be downloaded from the app store for free.I could download keynote for free but when I downloaded numbers I was charged by app store.Kindly someone explain me what could have been the reason for this?

    Sakethsai wrote:
    ..when I downloaded numbers I was charged by app store.Kindly someone explain me what could have been the reason for this?
    To Contact iTunes Customer Service and request assistance
    Use this Link  >  Apple  Support  iTunes Store  Contact
    Sakethsai wrote:
    I purchased an iPad air recently.... when I downloaded numbers I was charged by app store.
    About Free Apple Apps for iOS 7 compatible devices

  • IPad Air App Store review

    Is it normal when writing a review in the App Store for when it gets to bigger than the gap beteew title and the keypad for it to hide under the keypad??? I'm using an ipad air

    Hold down keyboard key for a second or two and select "Split"

  • Flash Builder and AIR 3.3 for Mac App Store

    The new AIR 3.3 will bring "Improved Mac App Store Support": http://labs.adobe.com/technologies/flashplatformruntimes/air3-3/
    But I have 2 questions:
    In what way will have be the improvement ? What do different from the past in this aspect ?
    Will be (and when) a new Flash Builder version in the configuration of the Mac App Store certificate to deploy AIR apps for the Mac Store ?
    As I can see from here: http://pigsels.com/2012/04/air-app-store-publishing-guide there is a lot of procedures to make that a new Flash Builder could automate/make the developer life easier and what will be different from the guide in the new AIR 3.3 from the AIR 3.2 about the App Store ?

    I tried this
    http://forums.adobe.com/message/1975832#1975832

  • AIR(Desktop) -Upload in MAC app store

    Please help me to upload air(desktop) application into MAC- App store.
    I can create .app file and .dmg with native instalers (with won created .p12 with flashbuilder).
    And i have apple developer .p12 certificate. (I have apple developer ID)
    I got this error while packing when using created .p12 certificate with my Apple Developer account.
    Please help me.! I need to upload my (.air application for MAC) upload in MAC App store.
    Please give me as step by step method as if u can.
    Thank you all..!
    Note: I can upload iPhone, iPod and iPad Applications in appstore.
             But, I need to upload MAC app store.
    I tried:
    http://pigsels.com/2012/04/air-app-store-publishing-guide/
    http://forums.adobe.com/message/1975832#1975832

    I tried this
    http://forums.adobe.com/message/1975832#1975832

  • Air 3.3 and Mac app store?

    The release notes for Air 3.3 suggest that you can package for the Mac (desktop) app store but I cant find any documentation on how this is achieved? Has any one done this?

    EDIT : I have completely rewritten my post and made it complete so that if anyone subbles directly on this, all infos and links on building on the app store are on the same page.
    Air 3.3 DOES support sandboxing for the Mac App Store. You have to enable it in the .app entitlements, just as you have to do it when coding directly from XCode.
    Our App just got approved today using those exact steps!
    1 - Follow all required step to build your (yet) unsigned .app. There is a pretty complete walkthrough here, just add the following steps to the codesign related steps : http://pigsels.com/2012/04/air-app-store-publishing-guide/ .
    2 - You now need to add 2 icons in the generated YourApp.app/Contents/Resources/Icons.icns file : 512x512 and 1024x1024 (yeah, that's huge, it's for retina display). I did this on Windows using a trial version of IcoFx, I don't know on Mac but a little googling should do the trick in no time. Note that you MUST do this before signing the app.
    3- Create an entitlements.plist file that defines sandboxing as enabled
    entitlements.plist :
    <?xml version="1.0" encoding="utf-8"?>
    <plist version="1.0">
        <dict>
            <key>com.apple.security.app-sandbox</key>
            <true/>
        </dict>
    </plist>
    4- When you codesign your application, define entitlements with previously created file. This will NOT overwritte the Info.plist file found in YouApp.app/Contests. Also note that paths can be relative.
    codesign command :
    codesign -f -v -s DEVELOPER_CERTIFICATE_NAME --entitlements /path/to/entitlement.plist /path/to/YourApp.app/
    source : http://stackoverflow.com/questions/8385252/how-to-build-sandboxed-app-without-xcode
    NOTE : I don't know if you need to enable sandboxing for each of the Adobe bundles you have to sign with your developer certificate. In the end, I didn't do it, we'll see what Apple will decide.
    5 - Confirm that sandboxing is enabled by running the following command. Don't forget the lonely ' - ', it specifies standard output as display output. You should see the path of the executable followed by the content of your entitlements.plist file. If not, you did something wrong and you should check out step 1,2 or 3 again.
    codesign display entitlements command :
    codesign --display --entitlements - /path/to/YourApp.app
    6 - Package and submit your app by following the rest of the instructions on http://pigsels.com/2012/04/air-app-store-publishing-guide/ . Note that you MUST specifiy /Applications as the installation path or else you won't be able to submit your app to Apple
    product build command
    productbuild –component /path/to/bundle.app INSTALLATION_PATH /path/to/installer.pkg –sign INSTALLER_CERTIFICATE_NAME
    There you go!

  • App store will not accept password for updates but will for purchases.

    Please advise.

    Thanks... I did try that.  To add to the mess, I just saw some update on my Macbook Air App Store and it did the same as on my iphone.  I would not accept my new password. 
    I then saw that my iphone had some updates.  I requested to update all.  It asked for my password and I entered it.  It downloaded some of the update but not others and also gave me the message that I put in the wrong password.
    Still confused.  Thanks for your help.

  • App Store Mavericks issue - App Store Button Toggles between "Install App" button and "Free Update"

    When I go to the app store and click on the "Free Upgrade" Button it switches immediately to the green "Install App" button.  Nothing is downloading in the background.  When "Install App" is clicked on it immediately goes back to "Free Download". 
    Currently running 10.7.5, 2009 Macbook Air, app store account is Canadian.  Currently located in Grenada.  Friends with other accounts (USA, Canada) have been able to upgrade without issue.

    This has been happening for a few weeks now with no solution in sight. It seems to be an issue with the App Store, not the phone. You'll just have to deal with it for now. Use the search function on the right or just look through recent thread titles to see several other discussion on this issue.

  • My Mid-2011 Macbook Air becomes extremely hot when installing apps from the Mac App Store and when deleting apps

    My Mid-2011 Macbook Air 13-inch (OSX 10.8.1 Mountain Lion) becomes hot to the touch when trying to delete large documents, watching videos after waking it from sleep-mode and when installing applications from the Mac App Store. This has also been happening with OSX Lion before I upgraded it to Mountain Lion.

    The Apple Support Communities are an international user to user technical support forum. As a man from Mexico my first language is Spanish. I do not speak English, however I do write in English with the aid of the Mac OS X spelling and grammar checks. I also live in a culture perhaps very very different from your own. When offering advice in the ASC, my comments are not meant to be anything more than helpful and certainly not to be taken as insults.
    What needed to be done the day that you set up the new Mac was go into the Mac App Store (MAS), sign into your iTunes/MAS Apple ID, go to the Purchases pane and Accept the iLife apps that would have been there in a special section. That would have sent you Mac's unique identifier code to Apple's servers and verified that this Mac was eligible for the bundled iLife suite and then registered these apps into your MAS account.
    You might try going to  ~/Library/Caches/com.apple.appstore/adoption.plist, delete the adption plist, restart the Mac and then go to the Purchaes pane and see if you can Accept the apps into your account.

  • I just got the mid 2011 macbook air and it does not have ilife or iPhoto on it...isnt it supposed to come with it? and if it does then how do i get it on the mac without having to pay for it in the app store?

    I just got a macbook air and i thought that it was supposed to come with ilife already installed? But there is not ilife apps...how do i get  it on the laptop without having to buy them all from the app store if it was supposed to come with it?

    From the iPhoto Licence:
    3. Transfer.
    A. Apple Software obtained from the Mac App Store is not transferable. If you sell your Apple-branded hardware to a third party, you must remove the Apple Software from the Apple-branded hardware before doing so.
    B. For any preinstalled Apple Software, you may make a one-time permanent transfer of all of your license rights to the Apple Software (in its original form as provided by Apple) to another party, provided that: the Apple Software is transferred together with your Apple-branded hardware; (ii) the transfer must include all of the Apple Software, including all its component parts, printed materials and this License; (iii) you do not retain any copies of the Apple Software, full or partial, including copies stored on a computer or other storage device; (iv) you have not associated the Apple Software with your Mac App Store account as set forth in Section 2B; and (v) the party receiving the Apple Software reads and agrees to accept the terms and conditions of this License.
    If the previous owner accepted the preinstalled software (iPhoto, etc) to the AppleID, it cannot be passed on to a new owner. Even if the previous owed would use her or his Applied to install it for you, you would never be able to reinstall it or to update it.
    In that case buy your own copies of the software.

  • Hi ! i am using mac air i download from app store IDESKTOP when i open it its delete all my file and folder on my mac, hi ! i am using mac air i download from app store IDESKTOP when i open it its delete all my file and folder on my mac

    hi ! i am using mac air i download from app store IDESKTOP when i open it its delete all my file and folder on my mac, hi ! i am using mac air i download from app store IDESKTOP when i open it its delete all my file and folder on my mac

    Here you can contact the developer.
    (Notice, I'm posting this line only once. Not 4 times. )

  • I can't stop the App Store from opening on my MAC Air when turning it on.  It didn't use to do this and I have no idea what I did, but I don't want it to open without me asking it to.  Help please.

    I must have done something that I'm not aware of.  Every time I turn on my Mac Air the App Store opens.  I don't want that, obviously.  It's not in my login apps (I checked in system preferences), and it's not in my dock and when I put it in my dock it didnt' show "open at login", and I never choose to resume my programs when shutting down.
    I am running the latest OS (10.8.4).
    So, there has to be something else that I'm missing.  Any assistance would be greatly appreciated.
    Thanks in advance.

    Welcome to Apple Support Communities
    First, when you are going to turn off or restart your Mac, you will see a box called "Reopen windows when logging back in" in the shutdown or restart window. Untick this box and see if the App Store opens automatically in the next startup.
    If it starts, open System Preferences > Users and Groups > Login Items, and see if the App Store shows up. If so, remove it from this list

Maybe you are looking for

  • Error while importing configuratio data of stellent 7.5.1 in OCS 10gR3

    Hi, I am upgrading Stellent 7.5.1 to Oracle Content Server 10gR3. On Stellent 7.5.1 I created a Template i.e. wwCmuExport and then explicitly selected Aliases, Security Groups, Roles & Personalization Data from Content Server Section. While importing

  • Adding a domain name to BC site results in Error. Cannot locate Adobe support.

    "Error. Domain name already exists..." Have 3 sites not working right now. Sorry to post multiple times, but Adobe support is non-existent, and Live Chat and Open a Ticket are both circular links that never go anywhere, nor let me contact Adobe. Past

  • Library has vanished???

    I had a 6 month period where i didnt acces my account , when i did access my account my 2000 tracl library only had 132 songs in it ( and only about 18 of them were from my original library) normally it wouldnt be a big deal but my car was broken int

  • Install power glitch after 1st disc

    installed first disc and than power out. restarted at beginning of install but it wants the original serail # removed.please help.step by step.bought this last night and per Adobe cust suprt return to best buy which I sis today. He got the serial # a

  • My Compaq Presario C700 shuts down at randomly and there is no noise coming from the machine at all

    My laptop will only turn on for about ten minutes before dying, it doesn't even go through the usual shut down process, it just turns off. Also, there is no sound of a fan or any humming coming from the computer. Before this problem of the random shu