AIR Apps: Native File Menus blanking out with Macbook 13"

Hey all,
First and foremost thanks for taking the time to read.
While running a Macbook 13" using Snow Leopard, I'm seeing blank native menus coming through on AIR apps. We've tried our own app, as well as TweetDeck [another AIR app], and none of the file menus come through [they come through as long blank white columns]. This includes the Apple menu!
Has anyone seen any issue with this reported?
Thanks again,
Christian

Fixed by re-installing AIR!

Similar Messages

  • Install AIR app + native app simultaneously

    Hi everyone,
    I'm developing an Adobe AIR app but since AIR doesn't provide
    all the functionality that I need, I'm also developing a native app
    that does some system-level stuff and writes a XML file that then
    the AIR app reads. Since I want this to be as painless as possible
    for the end user, I'd like to make an installar that:
    - Installs the native app and sets it to autorun when the
    system starts (it's a background app).
    - Installs the AIR app, detect Flash version, etc (launch
    the Badge?)
    I think I'd need a separate installer solution for each OS
    (Windows and Mac) that, after installing the native app and adding
    it to the autorun list of the OS, launches the .air so that the
    badges continues with the installation.
    I don't really know if what I want to accomplish is doable at
    all, so any hints or links that may help me would be really
    appreciated.
    Best regards,
    Manuel F. Lara

    Hi Daniel,
    Could you post or send me ([email protected]) the entire crash log?  I'll at least need the binaries section so I can properly symbolicate the log.
    Thanks,
    Chris

  • MacBook Air Superdrive?? Does it work with MacBook Pro

    Hello,
    I need an external Superdrive. Does the MacBook Air Superdrive work with MacBook Pro??

    No, it does not (at least, not without opening the drive and modifying the internal components).
    External optical drives from Sony and LaCie work well with the MBP. Here's ONE EXAMPLE, here's ANOTHER EXAMPLE, both from Amazon.

  • CS4 menus blanked out

    Installed CS4 2 weeks ago and it's running fine, but in the last two days it won't show any of the new display menus.
    See screenshot:
    Resetting prefs didn't help. Nor did enabling/ disabling 3D acceleration. Anyone else get this?

    See this: http://www.adobeforums.com/webx/.59b784c2
    Mylenium

  • Looking for the free apps that are supposed to come with MacBook.

    I was told instead of a recieving a CD I had to download software like iPhoto from iTunes. The only option I see is to pay for it. I was told it was included. What am I missing?

    When I got my Late 2011 MBP in Dec., it had Lion and did NOT have any of the iLife components. After I migrated all my stuff from the corpse of my Early 2008 MBP with Leopard, lo and behold, iLife sprang to life again. And was even allowed to upgrade each component to the latest version, via the App Store, for free.

  • I can call up the MacBook to do but I can Call out With MacBook Using iPhone

    I Have a same apple ID Set in iPhone 6 and macbook pro with Yosemite OS, and set the all parameters in both.
    I Can Answer the call from outside with Facetime app in mac, but i don't call using iphone, and show the messeage Below :
    iPhone Calls Not Available
    Your iPhone Must Use the same
    iCloud and Facetime Account
    However, I've done all the settings.

    Trey turning them off/deleting them and then add them back.
    Handoff Continuity Troubleshooting

  • AIR app won't compile with custom icons

    My AIr app won't compile when I choose anything but the
    default icons. I created 4 pngs in Photoshop and it gives me the
    error: Useage error (incorrect arguments)
    Any help? I've tried using only 1 icon, all 4, and no icons.
    Only no icons works.

    You dont have to use the GUI to set it, you can use the air
    appliation XML.
    inside your air-app.xml file look for something like:
    <icon>
    <image128x128>icons/myIcon128.png</image128x128>
    <image48x48>icons/myIcon48.png</image48x48>
    <image32x32>icons/myIcon32.png</image32x32>
    <image16x16>icons/myIcon16.png</image16x16>
    </icon>
    if its not there add it, but replace the myIcon128.png with
    your 128 point png image etc.
    also the above assumes your icons are in a folder called
    "icons" in the same directory as your air file.
    Hope it helps.

  • Way to get Acrobat 5 file naming behavior out of Acrobat 9?

    Hello,
    I'm working in an XP shop with some legacy applications.  One of these applications prints out batches of files to the PDF Writer printer from Acrobat 5.0.  The files all come out with a similar filename pattern.  For example, if the input was "Filename" and there were 3 parts to the batch, the output would be FILEN001.PDF, FILEN002.PDF, FILEN003.PDF, and so forth.
    We're moving to new hardware running Windows 7, and unfortunately we have to keep this legacy app around for a while.  The Acrobat 5 printer driver will not install on Windows 7.  I've downloaded the trial for Acrobat 9 Pro, but I can't seem to get the 9 printer driver to work the same way.
    Anybody know a potential solution?
    Thanks,
    Alex Seigler

    Unfortunately, we don't own the code behind this app.  Virtualization is being talked about.
    From what I can tell, the silent option doesn't allow for auto-naming multiple files in a batch, it writes the first one and then either overwrites the first one silently or prompts the user to overwrite.  Are there more options available?  I'd be open to writing code that would set the file names properly and then passes the data to the PDF writer if need be.
    Thanks,
    Alex Seigler

  • When I start downloading apps on creative cloud with windows 7 professional 64 bit, Creative cloud blanks out and stays blank til I re-start the program. I have tried re-installing it and deleting the OMP file. What do I have to do to be able to install a

    When I start downloading apps on creative cloud with windows 7 professional 64 bit, Creative cloud blanks out and stays blank til I re-start the program. I have tried re-installing it and deleting the OMP file. What do I have to do to be able to install apps?

    Creative Cloud chat support (all Creative Cloud customer service issues)
    http://helpx.adobe.com/x-productkb/global/service-ccm.html

  • Native extension to unzip a file crash my air app

    Hello,
    I have a problem with a native extension for android
    I want to unzip a file
    my java code
    File f = new File("my zip file");
    File outputDir = new File ("output folder");
    ZipHelper.unzip(f, outputDir);
    and
    import java.util.zip.*;
    import java.io.*;
    import java.util.Enumeration;
    import org.apache.commons.io.IOUtils;
    import android.util.Log;
    public class ZipHelper
    static public void unzip(File archive, File outputDir)
    try {
    Log.d("control","ZipHelper.unzip() - File: " + archive.getPath());
    ZipFile zipfile = new ZipFile(archive);
    for (Enumeration e = zipfile.entries(); e.hasMoreElements(); ) {
    ZipEntry entry = (ZipEntry) e.nextElement();
    unzipEntry(zipfile, entry, outputDir);
    catch (Exception e) {
    Log.d("control","ZipHelper.unzip() - Error extracting file " + archive+": "+ e);
    static private void unzipEntry(ZipFile zipfile, ZipEntry entry, File outputDir) throws IOException
    if (entry.isDirectory()) {
    createDirectory(new File(outputDir, entry.getName()));
    return;
    File outputFile = new File(outputDir, entry.getName());
    if (!outputFile.getParentFile().exists()){
    createDirectory(outputFile.getParentFile());
    Log.d("control","ZipHelper.unzipEntry() - Extracting: " + entry);
    BufferedInputStream inputStream = new BufferedInputStream(zipfile.getInputStream(entry));
    BufferedOutputStream outputStream = new BufferedOutputStream(new FileOutputStream(outputFile));
    try {
    IOUtils.copy(inputStream, outputStream);
    catch (Exception e) {
    Log.d("control","ZipHelper.unzipEntry() - Error: " + e);
    finally {
    outputStream.close();
    inputStream.close();
    static private void createDirectory(File dir)
    Log.d("control","ZipHelper.createDir() - Creating directory: "+dir.getName());
    if (!dir.exists()){
    if(!dir.mkdirs()) throw new RuntimeException("Can't create directory "+dir);
    else Log.d("control","ZipHelper.createDir() - Exists directory: "+dir.getName());
    i copy the file commons-io-2.4.jar (I get at http://commons.apache.org/proper/commons-io/download_io.cgi) in the lib folder of eclipse.
    in a native android app, this code work fine
    in a native extension for air, my air app crash
    LogCat in eclipse return
    NoClassDefFoundError: org.apache.comons.io.IOUtils.copy
    IOUtils class is not in commons-io-2.4.jar ???
    thanks

    Hello,
    I have a problem with a native extension for android
    I want to unzip a file
    my java code
    File f = new File("my zip file");
    File outputDir = new File ("output folder");
    ZipHelper.unzip(f, outputDir);
    and
    import java.util.zip.*;
    import java.io.*;
    import java.util.Enumeration;
    import org.apache.commons.io.IOUtils;
    import android.util.Log;
    public class ZipHelper
    static public void unzip(File archive, File outputDir)
    try {
    Log.d("control","ZipHelper.unzip() - File: " + archive.getPath());
    ZipFile zipfile = new ZipFile(archive);
    for (Enumeration e = zipfile.entries(); e.hasMoreElements(); ) {
    ZipEntry entry = (ZipEntry) e.nextElement();
    unzipEntry(zipfile, entry, outputDir);
    catch (Exception e) {
    Log.d("control","ZipHelper.unzip() - Error extracting file " + archive+": "+ e);
    static private void unzipEntry(ZipFile zipfile, ZipEntry entry, File outputDir) throws IOException
    if (entry.isDirectory()) {
    createDirectory(new File(outputDir, entry.getName()));
    return;
    File outputFile = new File(outputDir, entry.getName());
    if (!outputFile.getParentFile().exists()){
    createDirectory(outputFile.getParentFile());
    Log.d("control","ZipHelper.unzipEntry() - Extracting: " + entry);
    BufferedInputStream inputStream = new BufferedInputStream(zipfile.getInputStream(entry));
    BufferedOutputStream outputStream = new BufferedOutputStream(new FileOutputStream(outputFile));
    try {
    IOUtils.copy(inputStream, outputStream);
    catch (Exception e) {
    Log.d("control","ZipHelper.unzipEntry() - Error: " + e);
    finally {
    outputStream.close();
    inputStream.close();
    static private void createDirectory(File dir)
    Log.d("control","ZipHelper.createDir() - Creating directory: "+dir.getName());
    if (!dir.exists()){
    if(!dir.mkdirs()) throw new RuntimeException("Can't create directory "+dir);
    else Log.d("control","ZipHelper.createDir() - Exists directory: "+dir.getName());
    i copy the file commons-io-2.4.jar (I get at http://commons.apache.org/proper/commons-io/download_io.cgi) in the lib folder of eclipse.
    in a native android app, this code work fine
    in a native extension for air, my air app crash
    LogCat in eclipse return
    NoClassDefFoundError: org.apache.comons.io.IOUtils.copy
    IOUtils class is not in commons-io-2.4.jar ???
    thanks

  • Associate file extension with air app on Android

    Hi,
    I am trying to associate a file extension with my air app on Android. My goal is to be able to start my app by clicking on a file with a specific file type from either a file manager or mail app. I have found a solution that in theory would work in native, but does not with air somehow.
    In the .xml-file for the app, under the <android> tag I have written:
    <activity>
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />
                <category android:name="android.intent.category.LAUNCHER" />
                <category android:name="android.intent.category.DEFAULT" />
                <category android:name="android.intent.category.BROWSABLE" />
                <data android:scheme="file" />
                <data android:pathPattern=".*\\.csml" />
                <data android:host="*" />
            </intent-filter>
        </activity>
    Does anyone have an idea how this could be solved?
    Thanks in advance
    Jens

    If it works in a native app, it should also work in an AIR app in this case. Can you verify that it does work in a native app?
    See also:
    http://www.mail-archive.com/[email protected]/msg47862.html//www.mail-archive.com/[email protected]/msg47862.html
    http://stackoverflow.com/questions/1733195/android-intent-filter-for-a-particular-file-ext ension

  • How can I set connection to external XML file with Dreamweaver to buiild AIR app?

    Hello,
    I try to do simple AIR app in dreamweaver. It's not problem
    to use static data. But I'd like to use dynamic data from external
    XML file. I try to use Spry and evrything works fine in web browser
    but i have problem with loading external XML data into my app in
    AIR. Can I simply transform my spry based html app into AIR?
    What should I add to do this?
    Pawel

    Daniel Lichtenwald wrote:
    What are the requirements and steps for arranging to receive this large file using File Transfer Protocol (FTP)?
    Usually, we don't speak of "receive" when using FTP, since the file is transferred from server to client, so it's more of a case of "download".
    At your end, it's simple. You use an FTP client; under SL, that includes Finder and Safari, so you don't even need to get any additional software.
    At the other end, it's more complicated; the 'sender' must set up an FTP server on his machine.
    Alternatively, you can set up your own Mac as an FTP server, and have the 'sender' connect to you with an FTP client and upload the file; but, if your Mac lives behind a router, then you have more work to do with the router settings.
    That's why it's much easier to use the file sharing services mentioned above -- if they are available in both sender's and receiver's locations. (Keep in mind that some countries block access to all those mentioned -- except perhaps <www.transfer.ro>, of which I know absolutely nothing.)

  • Hi! I´m having problems with showing video files in Qlab on my Macbook Air. A sound/video technician told me to "blow out" my Mac. Was told to use  cmd+ r  when restarting. Is this the right way?

    Hi! I´m having problems with showing video files in Qlab on my Macbook Air. It started suddenly. Consulted a sound/video technician who told me to "blow out" my Mac. Was told to use cmd+r  when restarting. Is this the right way to clean up my Mac? And is it likely that some kind of bug is causing problems for Qlab to show video files? I´ve already tried with a bunch of different video files and sometimes Qlab plays them and sometimes not. I need the Qlab playlist for a theatre show and only have a week until showtime so starting to really worry. Is there anyone out there who can help?

    Your Mac runs maintenance in the background for you.
    Command + R gives you access to restore, repair, or reformat the drive using OS X Recovery
    No idea why that was suggested.
    You may have a third party video player installed that's causing an incompatibility issue.
    Check these folders:
    /Library/Internet Plug-Ins/
    /Library/Input Methods/
    /Library/InputManagers/
    /Library/ScriptingAdditions
    ~/Library/Internet Plug-Ins/
    ~/Library/Input Methods/
    ~/Library/InputManagers/
    ~/Library/ScriptingAdditions
    The first four locations listed are in the root-level Library on your hard disk, not the user-level Library in your Home folder.The tilde (~) represents your Home folder.
    To access the Home folder in OS X Lion or Mountain Lion, open the Finder, hold the Option key, and chooseGo > Library.

  • TS1367 My MacBook air has a blinking file folder icon on a blank screen with a ? In the center of the icon. I've tried turning on and off three times but it hasn't helped.  Any suggestions?

    My MacBook Air has a blinking file folder icon on a blank screen with a ? In the middle of the icon. I've tried turning my computer off and on three times with no luck.  Any recommendations on how to fix the problem? 

    Reinstall OS X without erasing the drive
    1. Repair the Hard Drive and Permissions
    Boot from your Snow Leopard Installer disc. After the installer loads select your language and click on the Continue button. When the menu bar appears select Disk Utility from the Utilities menu. After DU loads select your hard drive entry (mfgr.'s ID and drive size) from the the left side list.  In the DU status area you will see an entry for the S.M.A.R.T. status of the hard drive.  If it does not say "Verified" then the hard drive is failing or failed. (SMART status is not reported on external Firewire or USB drives.) If the drive is "Verified" then select your OS X volume from the list on the left (sub-entry below the drive entry,) click on the First Aid tab, then click on the Repair Disk button. If DU reports any errors that have been fixed, then re-run Repair Disk until no errors are reported. If no errors are reported click on the Repair Permissions button. Wait until the operation completes, then quit DU and return to the installer.
    If DU reports errors it cannot fix, then you will need Disk Warrior and/or Tech Tool Pro to repair the drive. If you don't have either of them or if neither of them can fix the drive, then you will need to reformat the drive and reinstall OS X.
    2. Reinstall Snow Leopard
    If the drive is OK then quit DU and return to the installer.  Proceed with reinstalling OS X.  Note that the Snow Leopard installer will not erase your drive or disturb your files.  After installing a fresh copy of OS X the installer will move your Home folder, third-party applications, support items, and network preferences into the newly installed system.
    Download and install Mac OS X 10.6.8 Update Combo v1.1.

  • Publishing air apps with native extension with Flash CS6 on Windows

    Hi all,
    is there any trick to publish air apps with Flash CS6 on Windows?
    I tried all native extensions from devnet, but nothing work to me.
    I read on Mac is possibility to specify the iOS SDK folder in publish
    settings, but on Windows it´s missing. 
    Is there anybody who has some experiences with publishing apps
    with native extensions for iOS and Android with windows Flash CS6?
    Thanks for all advices.

    I sympathize. I recently found a native alert for iOS and Android that's working with Flash CS6 on Windows with AIR 3.2.0.2070 but not AIR 3.2.0.2060. You can get the ANE here:
    http://www.jampot.ie/ane/
    Haven't tried the other ones. Let us know if you decide to try them.
    The sample code they have on the page doesn't work with the native alert. Here's the code I created - it's a document class for a .fla that has one dynamic TextField and one Button component on the stage :
    http://pastebin.com/DsxR9nJ4

Maybe you are looking for

  • Update an ADF Task Flow based on Human Task

    Hello friends, I'm working on Oracle BPM Suite 11g. So, I created a process including its human tasks. Later, I created a Task Flow based in the human task that I setup before. Now I added a new parameter to the human task and I need to update the ta

  • What is the latest motherboar​d for a Pavilion DV6-2020ev​?

    Hi, my motherboard on my Pavilion DV6-2020ev failed due to overheating. The current MB part number is  "574902-001"  followed by "7F0994". The processor is an i7 (1.6Ghz). Instead of getting the same board, I was wondering if there was a later MB tha

  • Oracle application installation on AIX IBM P6

    Hi, I need help regarding pre-req how i install VAC 7 C and C++ verison 7 on AIX IBM P6. (vac.70.aix52-61.jun2009.ptf.tar.Z) When I install VAC 7 using "smitty install_all" there are some files set missing and installation failed. Please help me. Reg

  • Short close PO

    Dear All, How can we short close service related Po's Regards Subhash

  • Forums no longer a highly visible link in the "Learning" section?

    The majority of help happens in the forums. Users helping users is a valuable asset to Adobe. This is not clearly as good as purchasing a support request (for Adobe or the user) but removing the forum link and placing it in the footer will definitely