Adobe air 3.4 + auto orient

I'm having trouble with getting the app I'm creating (using Flash professional CS6) to auto orient reliably.  if the app is moved from portrait to landscape, it works fine.  when moved back from landscape to portrait, then the screen items do not move to the desired spots.  within each of the "if" statements I also have commands for setting where screen items within the milApp movie clip are to appear.  Any help is greatly appreciated.
//function to set the stage orientation for the app;
function orientMilApp(event:Event):void
    var device_width:int = appStage.stageWidth;
    var device_height:int = appStage.stageHeight;
    if (device_width > device_height)
        milApp.gotoAndStop("landscape");
        //set the height, width, and position of the cheat sheet;
        milApp.cheatSheet_mc.x = 0;
        milApp.cheatSheet_mc.y = 100;
        milApp.cheatSheet_mc.height = 1657.25;
        milApp.cheatSheet_mc.width = 1280;
        milApp.closeButton_btn.x = 1200;
        milApp.closeButton_btn.y = 101;
        //set the dimensions and position of screen items for the driver manual
        //set the dimensions and position of screen items for the reference manual
      } else {
        milApp.gotoAndStop("portrait");
        milApp.closeButton_btn.x = 720;
        milApp.closeButton_btn.y = 101;
        //set the height, width, and position of the cheat sheet;
        milApp.cheatSheet_mc.x = 0;
        milApp.cheatSheet_mc.y = 100;
        milApp.cheatSheet_mc.width = 800;
        milApp.cheatSheet_mc.height = 1035.80;
        //set the dimensions and screen items of the driver manual
        //set the dimensions and screen items of the reference manual
appStage.addEventListener (StageOrientationEvent.ORIENTATION_CHANGE, orientMilApp);

Having not known the devices you want this to be on, I'd go back to simply measuring the devices resolution width versus height and translate that into landscape or portrait. All you calculations should be based on the returned resolutions for placement of items. It will require somewhat of a layout engine and for you to clearly mark what device resolutions you support.
For instance it's pretty easy to handle Apple because you're really only dealing with 1024x768 or 2046x1536 and portrait is DEFAULT. However if you're just measuring device width and height, you'll still get the same result, portrait, from your measurements.
Android is really rough but gives you more granular control over the minimum and maximum size and resolution of the device. You can clearly mark in your apps android settings that you only support say, 7"-10" devices with a resolution of a certain size (marked as ldpi, mdpi, hdpi, xhdpi). For more info and what all those settings mean, read here: http://developer.android.com/guide/practices/screens_support.html
xlarge screens are at least 960dp x 720dp
large screens are at least 640dp x 480dp
normal screens are at least 470dp x 320dp
small screens are at least 426dp x 320dp
Staying inside xlarge keeps you in the 7-10" safe range for a larger tablet like the Galaxy.

Similar Messages

  • Adobe air 2.6 auto update problem..

    hi friends,
    i am writing a multitouch application for like kiosk machine..
    and i want to add auto update functionally,
    i write this codes, but i am getting There was an error downloading the update. Error# 16824 error after downloading update...
    update_2_6.xml :
    <?xml version="1.0" encoding="utf-8"?>
    <update xmlns="http://ns.adobe.com/air/framework/update/description/2.5">
        <versionNumber>0.0.4</versionNumber>
        <url>http://www.abc.com/updates/RixossIBoard_v004.air.zip</url>
        <description>This is an AIR2.6 release of my application</description>
    </update>
    update_config.xml :
    <?xml version="1.0" encoding="utf-8"?>
    <configuration xmlns="http://ns.adobe.com/air/framework/update/configuration/1.0">
        <url>http://www.abc.com/updates/update_2_6.xml</url>
        <delay>0</delay>
         <defaultUI>
           <dialog name="checkForUpdate" visible="false" />
           <dialog name="downloadUpdate" visible="true" />
           <dialog name="downloadProgress" visible="true" />
           <dialog name="installUpdate" visible="true" />
       </defaultUI>    
    </configuration>
    in flash code:
    var updater:ApplicationUpdaterUI = new ApplicationUpdaterUI();
    updater.configurationFile = new File("app:/update_config.xml");
    updater.addEventListener(UpdateEvent.INITIALIZED, updaterInitialized);
    updater.addEventListener(ErrorEvent.ERROR, hatavarupdate);
    //updater.addEventListener(ErrorEvent.ERROR.hatavarupdate);
    updater.initialize();
    function hatavarupdate(evt:ErrorEvent):void
        //trace (evt.type);   
    function updaterInitialized(e:UpdateEvent):void{
        updater.checkNow();
    what is problem?
    it check update ok, download update ok, but after download update i get the There was an error downloading the update. Error# 16824
    Thanks for relation,
    Ercan

    Why don't you post some of the relevant lines for your application?
    Makes hard to guess what the issue is otherwise.
    The first line of your matching app file (<appname>-app.mxml) must have the same matching air sdk version as in...
    <application xmlns="http://ns.adobe.com/air/application/2.6">
    The version number if that same file must match the versionNumber in your update file, as in
    <versionNumber>0.0.4</versionNumber>
    Compile it and distribute it to the url specified in your update xml file
    http://www.abc.com/updates/RixossIBoard_v004.air.zip
    Manually check your app:/update_config.xml - make sure it is what you think it is
    Don

  • How to Autorun an Adobe AIR App from CD

    Does anyone know how to auto-run and Adobe AIR application, or auto-install the Adobe AIR runtime (if it's not installed yet on the user's machine) and then the Adobe AIR application from a CD or DVD?
    How is it done?
    Thanks in advance for any inputs on this.

    You can apply for permission to redistribute the AIR runtime:
    http://www.adobe.com/products/air/runtime_distribution1.html
    Mike Chambers wrote a good article about this:
    http://www.mikechambers.com/blog/2008/04/07/redistributing-the-adobe-air-runtime-installer /

  • Adobe Air runtime auto-update

    Adobe Air runtime auto-updates itself without any notification or request on my Mac OSX 10.6.7 machine. I do not like this behavior. Is there any way to change it?

    Please see our Disable automatic updates of the runtime document.  However, please be aware that our updates include both new functionality and bug and security fixes.  I'd definitely recommend keeping an eye out for future releases and manually installing if you disable the updates.
    Thanks,
    Chris

  • Adobe Air Auto Turned Off Smoothing?!!!!

    Hi,
    I am using Adobe Air to create a media player. To have better video quality, I have added video smoothing enabled. However, recently I installed it on an ATOM PC, the video playback is lagging due to the performance of PC hardware. But, during the video playback, the video seems to be displayed without smoothing applied.
    Here I want to ask is Adobe Air will automatically turn off video smoothing on certain condition? If so, how can I prevent it to auto turn off? Thanks.

    How about first blit your image to a small bitmapData, then draw it on a large bitmapData (9X larger)?
    Like,
    var small_bmd:BitmapData = new BitmapData(SMALL_WIDTH, SMALL_HEIGHT, false);
    var large_bmd:BitmapData = new BitmapData(SMALL_WIDTH * 9, SMALL_HEIGHT * 9, false);
    var bm:Bitmap = new Bitmap(large_bmd, PixelSnapping.NEVER, false);
    var blitRect:Rectangle = new Rectangle(0, 0, 9, 9);
    var i:uint, j:uint, blitColor:uint;
    small_bmd.draw(SOURCE_IMAGE);
    large_bmd.lock();
    for(j = 0; j < SMALL_HEIGHT; j++){
         for(i = 0; i < SMALL_WIDTH; i++){
              blitColor = small_bmd.getPixel(i, j);
              blitRect.x = i * 9;
              blitRect.y = j * 9;
              large_bmd.fillRect(blitRect, blitColor);
    large_bmd.unlock();
    Not sure if the code works or not, but hopefully this helps.

  • How to Enable Auto Update functionality in  adobe AIR application?

    Hi All,
         How to Enable Auto Update functionality in  adobe AIR application and ask for new version to install to user.
         Please provide some informarion regarding above topic.
    Thanks,
    Sunil Rana

    Hi All,,
    Got solution. call checkUpdate() function in application level initialize event.
    private function checkUpdate() : void
                    appUpdater.updateURL = "http://www.aa.com/flex/aa/NativeUpdater.xml";
                    appUpdater.addEventListener(UpdateEvent.INITIALIZED, updater_initializedHandler);
                    //we can hide the dialog asking for permission for checking for a new update;
                    //if you want to see it just leave the default value (or set true).
                    appUpdater.isCheckForUpdateVisible = false;               
                    //we initialize the updater
                    appUpdater.initialize();   
                 * Handler function for updater_initializedHandler events triggered by the ApplicationUpdater.INITIALIZED
                 * @param updater_initializedHandler
                protected function updater_initializedHandler(event:UpdateEvent):void
                    //initializeHandler();
                    appUpdater.checkNow();
    In NativeUpdater.xml
    <?xml version="1.0" encoding="utf-8" ?>
    <update xmlns="http://ns.adobe.com/air/framework/update/description/1.0">
         <version>2.0</version>
          <url>http://www.aa.com/flex/aa/AutoUpdate.air</url>
         <description>
         <![CDATA[                 * This a Win update
          ]]>
          </description>
    </update>
    Upload NativeUpdater.xml file on your Server. When you open your old .air file it will ask for replace with new version.
    Thanks,
    Sunil Rana

  • Problem with the orientation of the camera adobe air.

    Hello guys
    I am building a camera app on Android using Adobe Air
    However, I can not change the orientation of the camera, which only works in landscape mode. My app works in portrait mode, and I'm not getting this to fit the camera orientation.
    Any help is welcome.

    I believe you are using a video element to render your camera stream. Could you please try rotating (using DisplayObject.rotation) the video element to get the desired orientation?

  • Using Adobe Air Auto Print and Download in Web application

    HI All,
    We need to integration Adobe Air in the MVC4 Asp.net Application and Javascript. We have a requirement to download to the PDF/DOCX file into user selected destination and print it automatically.
    Browser Support : IE, Firefox,Chrome and safari
    Integrated with Javascript/JQuesry
    It would be great any one of you provide the inputs how to integrate adobe air in the web application using javascript to achieve above requirement.
    Send me the email [email protected]

    Adobe has locked out silent printing except by use a privileged JavaScript add to each users system. See the Acrobat JS API Reference for more information.

  • Disable Auto Orientation only in a specific frame!

    Hi there! 
    I appreciate if you please guide me with your experience in Mobile App design.
    My App contains 5 frames of data (movieclips), that each frame has 2 designs:
    1- Stand mode design    (portrait)
    2- Wide mode design     (landscape)
    So far it works great and I have published my App both on Google Play and Apple Store.
    Frames structure is as follows:
    frame   1            Loads External Data
    frames 2-6         Each frame contains 1 MovieClip designed based on mobile "Stand mode"
    frames 22-26     Each frame contains 1 MovieClip designed based on mobile "Wide mode"
    (Example: contents of frame 2 and 22 are the same, also 3 & 23 ... 6 & 26)
    (frame 2 is STAND design, 22 is WIDE design, and so on)
    In "Air Setting Dialoge", I have selected aspect ratio "Auto" and "Auto orientation".
    And I have this code in Frame 1 to do the rotation trick:
    stage.addEventListener(Event.RESIZE, resizeLayout);
    function resizeLayout(e:Event):void
                   setPosition();
    function setPosition():void
            //Phone turned from "Wide" to "Stand"
                   if (stage.stageWidth < stage.stageHeight)
                                  //App is now in "Wide" mode - means between frame 22 to 26
                                  if (currentFrame>20) 
                                                 //go to the same position of App but in "Stand" mode
                                                 gotoAndStop(currentFrame - 20);
                   else
                                  //Phone turned from "Stand" to "Wide"
                                  if (currentFrame<20)
                        //go to the same position of App but in "Wide" mode 
                         gotoAndStop(currentFrame + 20);
    Well, and finally my question:
    1- Is this way I have programed my App to rotate, a proper approach?!
          (in this way I can easily arrange objects on screen and also position them based on math calculations)
    2- If I want to disable auto rotation only when app reaches specific frames, what should I do??
       (for example I want the app Not to auto oriente in Frame 6 and 26., but it rotates in other frames)
    Hope it was not confusing and I cant wait to check out your valuable guidance!
    All the best and thanks a lot for your time.

    Hi there all!!
    Still I have no answer for my question No1, BUT I could find my answer to the 2nd question and here it is for your kind notice:
    Special thanks to Daniel Dura
    http://www.adobe.com/devnet/flash/articles/screen_orientation_apis.html
    I just added this code to my first Frame:
    stage.addEventListener(StageOrientationEvent.ORIENTATION_CHANGING, onOrientationChanging);
    function onOrientationChanging(event:StageOrientationEvent ):void
              if (currentFrame == 6 || currentFrame == 26)
                        event.preventDefault();

  • Adobe AIR Runtime Redistribution and Native Installer

    Will there be new instructions for Adobe AIR 2.0 Runtime Redistribution? In particular, I'm looking for instructions on how to use the runtime redistribution installer to perform a "side-car installation" of AIR 2 alongside an application that uses the NativeProcess API (and so must be built into a native installer instead of a .air file).
    Thanks!

    Thirded!
    On a test deployment using SCCM and the supplied Adobe AIR Runtime Installer files, we have managed to install our application with the 1.5.3 Air Framework with no major issues other than having to disable the Auto Update feature that doesnt really work in a corporate environment.  Everything was absolutely fine until the release of AIR 2.  Now, the test machines are prompted to install the updated Adobe Air 2 framework once a week, see an excerpt from an Adobe blog post below:
    "In addition, once a week AIR apps check to see if an AIR update is available, and if so, users are presented with the option to update to the most up‐to‐date version, helping to ensure that end users get the benefits of improved security and performance."
    That sounds great right?  Except my users (like many other corporate users) don't have Admin permissions on their machines (hence the use of SCCM), with the result being resultant error messages when a user attemptes to install the AIR framework update without the necessary permissions.
    All of the above would be fine if the Adobe AIR Runtime Installer files were updated to include the latest version of the runtime.  This of course hasn't been done yet - does anyone know when this may happen?  Can anyone help me with this or offer any advice?
    I hope the above makes sense and I would really appreciate any help or advice!
    Thanks!

  • Unable to install Adobe Air on MacBook Pro running OSX 10.7.2

    I have been trying for a while today to install the adobe air product on my machine so I'm able to run the TweetDeck software.  Unfortunately no matter what I do, the installation seems to fail.  I've manually uninstalled old files.  I've run suggested apple scripts suggested in other threads.  I've repaired local disk permissions.  You name it, I think I've tried it.  Any assistance would be appreciated.  I've included the console activity log for the last hour or so of trying to get it working. Thanks, Stephen
    10/13/11 1:33:27.067 PM ReportCrash: Saved crash report for Adobe AIR Application Installer[443] version 3.0 (3.0.0.4080) to /Users/Steve/Library/Logs/DiagnosticReports/Adobe AIR Application Installer_2011-10-13-133327_Stephen-Wrights-MacBook-Pro.crash
    10/13/11 1:37:58.710 PM Adobe AIR Installer: Runtime Installer begin with version 3.0.0.4080 on Mac OS 10.7.2 x86
    10/13/11 1:37:58.710 PM Adobe AIR Installer: Commandline is: -psn_0_426088
    10/13/11 1:37:58.710 PM Adobe AIR Installer: Installed runtime (3.0.0.4080) located at /Library/Frameworks/Adobe AIR.framework
    10/13/11 1:37:59.938 PM com.apple.launchd.peruser.501: ([0x0-0x68068].com.adobe.air.Installer[452]) Job appears to have crashed: Segmentation fault: 11
    10/13/11 1:38:00.144 PM ReportCrash: Saved crash report for Adobe AIR Installer[452] version 3.0 (3.0.0.4080) to /Users/Steve/Library/Logs/DiagnosticReports/Adobe AIR Installer_2011-10-13-133800_Stephen-Wrights-MacBook-Pro.crash
    10/13/11 1:41:08.400 PM Adobe AIR Installer: Runtime Installer begin with version 3.0.0.4080 on Mac OS 10.7.2 x86
    10/13/11 1:41:08.400 PM Adobe AIR Installer: Commandline is: -psn_0_491640
    10/13/11 1:41:08.400 PM Adobe AIR Installer: Installed runtime (3.0.0.4080) located at /Library/Frameworks/Adobe AIR.framework
    10/13/11 1:41:10.111 PM com.apple.launchd.peruser.501: ([0x0-0x78078].com.adobe.air.Installer[518]) Job appears to have crashed: Segmentation fault: 11
    10/13/11 1:41:10.332 PM ReportCrash: Saved crash report for Adobe AIR Installer[518] version 3.0 (3.0.0.4080) to /Users/Steve/Library/Logs/DiagnosticReports/Adobe AIR Installer_2011-10-13-134110_Stephen-Wrights-MacBook-Pro.crash
    10/13/11 1:42:21.142 PM automountd: parse_entry: bad key in map auto_home: Adobe AIR Installer.app
    10/13/11 1:42:34.771 PM Finder: Terminate AirDrop P2P link
    10/13/11 1:45:07.006 PM sudo:    Steve : TTY=ttys000 ; PWD=/Volumes/Adobe AIR/Adobe AIR Installer.app/Contents/MacOS ; USER=root ; COMMAND=./Adobe AIR Installer
    10/13/11 1:45:10.494 PM Adobe AIR Installer: Runtime Installer begin with version 3.0.0.4080 on Mac OS 10.7.2 x86
    10/13/11 1:45:10.494 PM Adobe AIR Installer: Commandline is:
    10/13/11 1:45:10.494 PM Adobe AIR Installer: No installed runtime detected
    10/13/11 1:45:12.183 PM ReportCrash: Saved crash report for Adobe AIR Installer[578] version ??? (???) to /Library/Logs/DiagnosticReports/Adobe AIR Installer_2011-10-13-134512_localhost.crash
    10/13/11 1:45:40.900 PM Adobe AIR Installer: Runtime Installer begin with version 3.0.0.4080 on Mac OS 10.7.2 x86
    10/13/11 1:45:40.900 PM Adobe AIR Installer: Commandline is: -psn_0_557192
    10/13/11 1:45:40.900 PM Adobe AIR Installer: No installed runtime detected
    10/13/11 1:45:42.164 PM com.apple.launchd.peruser.501: ([0x0-0x88088].com.adobe.air.Installer[584]) Job appears to have crashed: Segmentation fault: 11
    10/13/11 1:45:42.330 PM ReportCrash: Saved crash report for Adobe AIR Installer[584] version 3.0 (3.0.0.4080) to /Users/Steve/Library/Logs/DiagnosticReports/Adobe AIR Installer_2011-10-13-134542_Stephen-Wrights-MacBook-Pro.crash
    10/13/11 1:56:17.999 PM UserEventAgent: WirelessAirPortDeviceNameCopy(): no BSD interface name found for object 12295
    10/13/11 1:56:20.000 PM kernel: AirPort_Brcm4331: Ethernet address e4:ce:8f:41:c1:7c
    10/13/11 1:56:32.049 PM airportd: _processDLILEvent: en1 attached (down)
    10/13/11 1:56:35.000 PM kernel: AirPort: Link Down on en1. Reason 8 (Disassociated because station leaving).
    10/13/11 1:56:39.000 PM kernel: AirPort: Link Up on en1
    10/13/11 1:56:40.000 PM kernel: AirPort: RSN handshake complete on en1
    10/13/11 1:56:40.963 PM airportd: _doAutoJoin: Already associated to “MyNet”. Bailing on auto-join.
    10/13/11 1:56:41.233 PM airportd: _doAutoJoin: Already associated to “MyNet”. Bailing on auto-join.
    10/13/11 1:56:45.862 PM airportd: _doAutoJoin: Already associated to “MyNet”. Bailing on auto-join.
    10/13/11 1:57:48.677 PM Adobe AIR Installer: Runtime Installer begin with version 3.0.0.4080 on Mac OS 10.7.2 x86
    10/13/11 1:57:48.677 PM Adobe AIR Installer: Commandline is: -psn_0_98328
    10/13/11 1:57:48.677 PM Adobe AIR Installer: No installed runtime detected
    10/13/11 1:57:55.626 PM com.apple.launchd.peruser.501: ([0x0-0x18018].com.adobe.air.Installer[200]) Job appears to have crashed: Segmentation fault: 11
    10/13/11 1:57:56.255 PM ReportCrash: Saved crash report for Adobe AIR Installer[200] version 3.0 (3.0.0.4080) to /Users/Steve/Library/Logs/DiagnosticReports/Adobe AIR Installer_2011-10-13-135756_Stephen-Wrights-MacBook-Pro.crash
    10/13/11 1:58:14.775 PM com.apple.launchd.peruser.501: ([0x0-0x1b01b].com.adobe.air.ApplicationInstaller[209]) Exited with code: 4
    10/13/11 2:01:00.067 PM Adobe AIR Installer: Runtime Installer begin with version 3.0.0.4080 on Mac OS 10.7.2 x86
    10/13/11 2:01:00.067 PM Adobe AIR Installer: Commandline is: -uninstall
    10/13/11 2:01:00.067 PM Adobe AIR Installer: No installed runtime detected
    10/13/11 2:01:01.520 PM ReportCrash: Saved crash report for Adobe AIR Installer[549] version 3.0 (3.0.0.4080) to /Users/Steve/Library/Logs/DiagnosticReports/Adobe AIR Installer_2011-10-13-140101_Stephen-Wrights-MacBook-Pro.crash
    10/13/11 2:04:15.960 PM Adobe AIR Installer: Runtime Installer begin with version 3.0.0.4080 on Mac OS 10.7.2 x86
    10/13/11 2:04:15.960 PM Adobe AIR Installer: Commandline is: -playerVersion=11,0,1,152 -sandboxType=remote -securityDomain=airdownload.adobe.com -https=false -fromUserEvent=true -- -x1 http://downloads.tweetdeck.com/TweetDeck_0_38.2.air
    10/13/11 2:04:15.960 PM Adobe AIR Installer: No installed runtime detected
    10/13/11 2:04:17.375 PM ReportCrash: Saved crash report for Adobe AIR Installer[604] version 3.0 (3.0.0.4080) to /Users/Steve/Library/Logs/DiagnosticReports/Adobe AIR Installer_2011-10-13-140417_Stephen-Wrights-MacBook-Pro.crash
    10/13/11 2:04:17.378 PM ReportCrash: Removing excessive log: file://localhost/Users/Steve/Library/Logs/DiagnosticReports/Adobe%20AIR%20Installer_2011- 10-12-160551_Stephen-Wrights-MacBook-Pro.crash
    10/13/11 2:05:19.270 PM com.apple.launchd.peruser.501: ([0x0-0x38038].com.adobe.air.ApplicationInstaller[875]) Exited with code: 4
    10/13/11 2:09:36.467 PM Adobe AIR Installer: Runtime Installer begin with version 3.0.0.4080 on Mac OS 10.7.2 x86
    10/13/11 2:09:36.468 PM Adobe AIR Installer: Commandline is: -psn_0_266305
    10/13/11 2:09:36.468 PM Adobe AIR Installer: No installed runtime detected
    10/13/11 2:09:37.801 PM com.apple.launchd.peruser.501: ([0x0-0x41041].com.adobe.air.Installer[909]) Job appears to have crashed: Segmentation fault: 11
    10/13/11 2:09:38.016 PM ReportCrash: Saved crash report for Adobe AIR Installer[909] version 3.0 (3.0.0.4080) to /Users/Steve/Library/Logs/DiagnosticReports/Adobe AIR Installer_2011-10-13-140938_Stephen-Wrights-MacBook-Pro.crash
    10/13/11 2:09:38.019 PM ReportCrash: Removing excessive log: file://localhost/Users/Steve/Library/Logs/DiagnosticReports/Adobe%20AIR%20Installer_2011- 10-12-160607_Stephen-Wrights-MacBook-Pro.crash
    10/13/11 2:10:04.777 PM Adobe AIR Installer: Runtime Installer begin with version 3.0.0.4080 on Mac OS 10.7.2 x86
    10/13/11 2:10:04.777 PM Adobe AIR Installer: Commandline is: -playerVersion=11,0,1,152 -sandboxType=remote -securityDomain=airdownload.adobe.com -https=false -fromUserEvent=true -- -x1 http://downloads.tweetdeck.com/TweetDeck_0_38.2.air
    10/13/11 2:10:04.777 PM Adobe AIR Installer: No installed runtime detected
    10/13/11 2:10:06.144 PM ReportCrash: Saved crash report for Adobe AIR Installer[916] version 3.0 (3.0.0.4080) to /Users/Steve/Library/Logs/DiagnosticReports/Adobe AIR Installer_2011-10-13-141006_Stephen-Wrights-MacBook-Pro.crash
    10/13/11 2:10:06.148 PM ReportCrash: Removing excessive log: file://localhost/Users/Steve/Library/Logs/DiagnosticReports/Adobe%20AIR%20Installer_2011- 10-12-160631_Stephen-Wrights-MacBook-Pro.crash
    10/13/11 2:15:05.254 PM Adobe AIR Installer: Runtime Installer begin with version 3.0.0.4080 on Mac OS 10.7.2 x86
    10/13/11 2:15:05.254 PM Adobe AIR Installer: Commandline is: -psn_0_319566
    10/13/11 2:15:05.254 PM Adobe AIR Installer: No installed runtime detected
    10/13/11 2:15:05.936 PM Adobe AIR Installer: -[__NSCFType backingScaleFactor]: unrecognized selector sent to instance 0x14f160
    10/13/11 2:15:33.948 PM com.apple.launchd.peruser.501: ([0x0-0x4e04e].com.adobe.air.Installer[942]) Job appears to have crashed: Bus error: 10
    10/13/11 2:15:34.108 PM ReportCrash: Saved crash report for Adobe AIR Installer[942] version 3.0 (3.0.0.4080) to /Users/Steve/Library/Logs/DiagnosticReports/Adobe AIR Installer_2011-10-13-141534_Stephen-Wrights-MacBook-Pro.crash
    10/13/11 2:15:34.111 PM ReportCrash: Removing excessive log: file://localhost/Users/Steve/Library/Logs/DiagnosticReports/Adobe%20AIR%20Installer_2011- 10-13-124814_Stephen-Wrights-MacBook-Pro.crash
    10/13/11 2:16:58.472 PM UserEventAgent: WirelessAirPortDeviceNameCopy(): no BSD interface name found for object 12295
    10/13/11 2:17:01.000 PM kernel: AirPort_Brcm4331: Ethernet address e4:ce:8f:41:c1:7c
    10/13/11 2:17:11.933 PM airportd: _processDLILEvent: en1 attached (down)
    10/13/11 2:17:15.000 PM kernel: AirPort: Link Down on en1. Reason 8 (Disassociated because station leaving).
    10/13/11 2:17:18.000 PM kernel: AirPort: Link Up on en1
    10/13/11 2:17:18.000 PM kernel: AirPort: RSN handshake complete on en1
    10/13/11 2:17:22.468 PM airportd: _doAutoJoin: Already associated to “MyNet”. Bailing on auto-join.
    10/13/11 2:18:55.979 PM Adobe AIR Installer: Runtime Installer begin with version 3.0.0.4080 on Mac OS 10.7.2 x86
    10/13/11 2:18:55.980 PM Adobe AIR Installer: Commandline is: -psn_0_114716
    10/13/11 2:18:55.980 PM Adobe AIR Installer: No installed runtime detected
    10/13/11 2:19:03.180 PM com.apple.launchd.peruser.501: ([0x0-0x1c01c].com.adobe.air.Installer[213]) Job appears to have crashed: Segmentation fault: 11
    10/13/11 2:19:03.740 PM ReportCrash: Saved crash report for Adobe AIR Installer[213] version 3.0 (3.0.0.4080) to /Users/Steve/Library/Logs/DiagnosticReports/Adobe AIR Installer_2011-10-13-141903_Stephen-Wrights-MacBook-Pro.crash
    10/13/11 2:19:03.869 PM ReportCrash: Removing excessive log: file://localhost/Users/Steve/Library/Logs/DiagnosticReports/Adobe%20AIR%20Installer_2011- 10-13-124844_Stephen-Wrights-MacBook-Pro.crash
    10/13/11 2:22:07.124 PM Adobe AIR Installer: Runtime Installer begin with version 3.0.0.4080 on Mac OS 10.7.2 x86
    10/13/11 2:22:07.124 PM Adobe AIR Installer: Commandline is: -psn_0_143395
    10/13/11 2:22:07.124 PM Adobe AIR Installer: No installed runtime detected
    10/13/11 2:22:08.402 PM com.apple.launchd.peruser.501: ([0x0-0x23023].com.adobe.air.Installer[265]) Job appears to have crashed: Segmentation fault: 11
    10/13/11 2:22:08.577 PM ReportCrash: Saved crash report for Adobe AIR Installer[265] version 3.0 (3.0.0.4080) to /Users/Steve/Library/Logs/DiagnosticReports/Adobe AIR Installer_2011-10-13-142208_Stephen-Wrights-MacBook-Pro.crash
    10/13/11 2:22:08.580 PM ReportCrash: Removing excessive log: file://localhost/Users/Steve/Library/Logs/DiagnosticReports/Adobe%20AIR%20Installer_2011- 10-13-125045_Stephen-Wrights-MacBook-Pro.crash
    10/13/11 2:23:51.786 PM Adobe AIR Installer: Runtime Installer begin with version 3.0.0.4080 on Mac OS 10.7.2 x86
    10/13/11 2:23:51.786 PM Adobe AIR Installer: Commandline is: -psn_0_167977
    10/13/11 2:23:51.786 PM Adobe AIR Installer: No installed runtime detected
    10/13/11 2:23:53.029 PM com.apple.launchd.peruser.501: ([0x0-0x29029].com.adobe.air.Installer[301]) Job appears to have crashed: Segmentation fault: 11
    10/13/11 2:23:53.194 PM ReportCrash: Saved crash report for Adobe AIR Installer[301] version 3.0 (3.0.0.4080) to /Users/Steve/Library/Logs/DiagnosticReports/Adobe AIR Installer_2011-10-13-142353_Stephen-Wrights-MacBook-Pro.crash
    10/13/11 2:23:53.197 PM ReportCrash: Removing excessive log: file://localhost/Users/Steve/Library/Logs/DiagnosticReports/Adobe%20AIR%20Installer_2011- 10-13-131826_Stephen-Wrights-MacBook-Pro.crash
    10/13/11 2:25:38.323 PM sudo:    Steve : TTY=ttys000 ; PWD=/Users/Steve ; USER=root ; COMMAND=/Volumes/Adobe AIR/Adobe AIR Installer.app/Contents/MacOS/Adobe AIR Installer -silent -eulaAccepted
    10/13/11 2:25:38.908 PM Adobe AIR Installer: Runtime Installer begin with version 3.0.0.4080 on Mac OS 10.7.2 x86
    10/13/11 2:25:38.908 PM Adobe AIR Installer: Commandline is: -silent -eulaAccepted
    10/13/11 2:25:38.908 PM Adobe AIR Installer: No installed runtime detected
    10/13/11 2:25:40.304 PM ReportCrash: Saved crash report for Adobe AIR Installer[315] version ??? (???) to /Library/Logs/DiagnosticReports/Adobe AIR Installer_2011-10-13-142540_localhost.crash
    10/13/11 2:26:06.354 PM Adobe AIR Installer: Runtime Installer begin with version 3.0.0.4080 on Mac OS 10.7.2 x86
    10/13/11 2:26:06.354 PM Adobe AIR Installer: Commandline is: -psn_0_184365
    10/13/11 2:26:06.354 PM Adobe AIR Installer: No installed runtime detected
    10/13/11 2:26:07.682 PM com.apple.launchd.peruser.501: ([0x0-0x2d02d].com.adobe.air.Installer[322]) Job appears to have crashed: Segmentation fault: 11
    10/13/11 2:26:07.841 PM ReportCrash: Saved crash report for Adobe AIR Installer[322] version 3.0 (3.0.0.4080) to /Users/Steve/Library/Logs/DiagnosticReports/Adobe AIR Installer_2011-10-13-142607_Stephen-Wrights-MacBook-Pro.crash
    10/13/11 2:26:07.845 PM ReportCrash: Removing excessive log: file://localhost/Users/Steve/Library/Logs/DiagnosticReports/Adobe%20AIR%20Installer_2011- 10-13-132020_Stephen-Wrights-MacBook-Pro.crash
    10/13/11 2:26:56.590 PM Adobe AIR Installer: Runtime Installer begin with version 3.0.0.4080 on Mac OS 10.7.2 x86
    10/13/11 2:26:56.590 PM Adobe AIR Installer: Commandline is: -psn_0_225335
    10/13/11 2:26:56.590 PM Adobe AIR Installer: No installed runtime detected
    10/13/11 2:26:57.864 PM com.apple.launchd.peruser.501: ([0x0-0x37037].com.adobe.air.Installer[349]) Job appears to have crashed: Segmentation fault: 11
    10/13/11 2:26:57.989 PM ReportCrash: Saved crash report for Adobe AIR Installer[349] version 3.0 (3.0.0.4080) to /Users/Steve/Library/Logs/DiagnosticReports/Adobe AIR Installer_2011-10-13-142657_Stephen-Wrights-MacBook-Pro.crash
    10/13/11 2:26:57.993 PM ReportCrash: Removing excessive log: file://localhost/Users/Steve/Library/Logs/DiagnosticReports/Adobe%20AIR%20Installer_2011- 10-13-132404_Stephen-Wrights-MacBook-Pro.crash
    10/13/11 2:29:01.315 PM airportd: _doAutoJoin: Already associated to “MyNet”. Bailing on auto-join.
    10/13/11 2:29:44.576 PM UserEventAgent: WirelessAirPortDeviceNameCopy(): no BSD interface name found for object 12295
    10/13/11 2:29:48.000 PM kernel: AirPort_Brcm4331: Ethernet address e4:ce:8f:41:c1:7c
    10/13/11 2:30:01.170 PM airportd: _processDLILEvent: en1 attached (down)
    10/13/11 2:30:01.000 PM kernel: AirPort: Link Down on en1. Reason 8 (Disassociated because station leaving).
    10/13/11 2:30:05.000 PM kernel: AirPort: Link Up on en1
    10/13/11 2:30:05.000 PM kernel: AirPort: RSN handshake complete on en1
    10/13/11 2:30:07.196 PM airportd: _doAutoJoin: Already associated to “MyNet”. Bailing on auto-join.
    10/13/11 2:30:09.005 PM airportd: _doAutoJoin: Already associated to “MyNet”. Bailing on auto-join.
    10/13/11 2:33:54.896 PM Adobe AIR Installer: Runtime Installer begin with version 3.0.0.4080 on Mac OS 10.7.2 x86
    10/13/11 2:33:54.896 PM Adobe AIR Installer: Commandline is: -psn_0_110619
    10/13/11 2:33:54.896 PM Adobe AIR Installer: No installed runtime detected
    10/13/11 2:34:03.677 PM com.apple.launchd.peruser.501: ([0x0-0x1b01b].com.adobe.air.Installer[216]) Job appears to have crashed: Segmentation fault: 11
    10/13/11 2:34:04.337 PM ReportCrash: Saved crash report for Adobe AIR Installer[216] version 3.0 (3.0.0.4080) to /Users/Steve/Library/Logs/DiagnosticReports/Adobe AIR Installer_2011-10-13-143404_Stephen-Wrights-MacBook-Pro.crash
    10/13/11 2:34:04.480 PM ReportCrash: Removing excessive log: file://localhost/Users/Steve/Library/Logs/DiagnosticReports/Adobe%20AIR%20Installer_2011- 10-13-132448_Stephen-Wrights-MacBook-Pro.crash

    Robert.Delfs wrote:
    1.  Brand new MacBook Pro 2.5 GHz Intel Core i7 machine with two graphics chips (Intel HD Graphics 3000+ AMD Radeon HD 6770M), with   OS X 10.7.2 Lion (Build 11C74)  pre-installed. 
    2.  Attempting to download latest version of Photoshop CS5 fails.
         a.  Downloading CS5 from Adobe.com requires pre-installing Adobe Download Assistant. 
         b.  Adobe Download Assistant can be downloaded but cannot be installed because it requires pre-installing Adobe AIR. 
         c.  Adobe AIR can be downloaded but won't install.  Sometimes it issues error msg saying it requires most recent version of Adobe AIR, other times there is no screen activity after attempting to install from <AdobeAir.dmg>.
    2.  There is no option to turn off automatic graphics switching in Energy Saver System Preferences on this computer, so that suggested solution does not work.
    3.   Turning off (unchecking) "Automatically reduce brightness before display goes to sleep" has no effect — still unable to install AIR.
    This is a nightmare.  The reason I bought this computer rather than a less expensive model was to run Lightroom (which did install OK) and Photoshop CS5.  HELP!
    Robert
    My suggestion would be to reinstall Lion from zero. No update.
    I did that, and now I can install / uninstall Air without problems.
    The installation takes about 20 minutes...

  • Adobe Air 3.0 iOS streaming H264/Speex over RTMP -- No Video

    Problem:
    H264/Speex RTMP stream from Flash Media Server doesn't display video.  Audio plays fine.
    Conditions:
    Adobe Air 3.0
    iOS device (iPad 2, iOS4.3)
    App settings:
    <renderMode>direct</renderMode>
    Flash Builder 4.5.1 compiler settings:
    -swf-version=13
    -target-player=11.0.0
    I have tried using both stageVideo and the regular Video object to render an H264 signal streaming from Flash Media Server over rtmp, but with no luck.  I can hear the audio, but the video is never rendered.
    I CAN see H263 video when streamed over RTMP using this setup (with just the Video object). 
    I can also stream a locally stored mp4 (H264/AAC) file over rtmp from the iOS device and play it locally just fine (using a stageVideo object).
    I have attempted this with both stageVideo (which works fine when streaming an mp4 file from the iOS device) and with the regular Video object (the regular Video object handles H263 just fine streaming down from FMS over rtmp).  I've also played around with backgroundAlpha = "0" for this case, all with no luck.
    I've followed all the online instructions and tutorials to get this working for the past week, but have not had any luck.  I'm happy to post more code, but this approach is fairly straight forward and has been described multiple times around these forums and in the adobe blog posts.  It goes like this:
         - instantiate NetConnection (_nc) to FMS and wait for successful connection:
                   _ns = new NetConnection();  
                   _nc.connect(serverAddress);
         - instantiate NetStream (_ns) and connect using NetConnection: 
                   _ns = new NetStream(_nc);
         - setup listener for StageVideoAvailabilityEvent; if stageVideo becomes available, attach _ns: 
                  _stageVideo = stage.stageVideos[0];
                  _stageVideo = _stageVideo.attachNetStream(_ns);
         - if stageVideo ISN'T available, fall back to Video object:
                   _video = new Video();
                   _video.attachNetStream(_ns);
                   stage.addChild(_video);
         - play netStream app:
                   _ns.play(appName);
    My renderMode is set correctly ("direct"), and from what I can tell, this isn't a backgroundAlpha issue.
    I have seen this problem described elsewhere on this forums and on the net. 
    I'd like to know from Adobe: are there any compatibility issues with this approach?  There doesn't seem to be any type of compatibility chart listing which video codecs and transport protocols are available on the different mobile platforms.  Since mobile deployment is so heaviliy fragmented, a descriptive chart or table like this would be helpful for those of us developing -- at least for the main mobile platforms predominantly in use.
    Other forum posts similar to this problem:
    http://forums.adobe.com/message/3981541#3981541
    http://forums.adobe.com/message/3954578#3954578
    Thanks in advance!

    I do hope someone from Adobe is "hearing" this, guys. The lack of RTMP-based H.264 video on the Air for iOS is a major problem, indeed.
    As Fabio Sonnati mentioned in http://sonnati.wordpress.com/2011/04/26/air-2-6-for-ios-and-video-play back/, AIR for iOS does support HTTP streaming (via HLS) of h.264 videos. However, when streaming via RTMP, AIR for iOS only supports VP6 and Spark – a couple of old, retired codecs.
    While HTTP streaming (HLS) seems to be a good option for those who simply want to “play a video” in iOS, I do believe it has some severe limitations, especially for live-communications. I’d like to share some of these thoughts with you.
    1. HLS has ridiculously high latency for live videos (around 40 seconds), when compared to RTMP. Although this may not be a problem for on-demand videos, it sure is a great problem for anyone doing serious live-communications applications (such as webconferencing, live webcasting with audience interaction or Skype-like video chats), which require near-zero latency.
    2. Perhaps someone can correct me on this (hopefully!), but as far as I know, HTTP streaming will not allow cuepoints to be read from videos. This is particularly painful for anyone doing video-triggered actions, such as slide changes (for webinar apps), subtitling or live closed captioning, etc. I read somewhere that OSMF player allows cuepoints (or "temporal metadata". See http://blogs.adobe.com/osmf/2009/11/cue_point_support_in_osmf.html), but I haven't been able to test it myself.
    3. Although HLS it is quite compatible with firewalls (since it flows through port 80), RTMP with tunnelling also flows through port 80 or 443, which adds great compatibility, even on very restricted networks. Our experience with very large clients proves that, hands down.
    In other words, HTTP/HLS streaming is Ok. But it simply does *not* fit into every shoe that RTMP does. We do believe that RTMP remains as our best option for live streaming or serious streaming-oriented *apps* (in which things more complex than “mere video playing in a window” actually happen).
    That all said, I do believe we should let Adobe know about this need. The fact that RTMP streaming in AIR for iOS is limited to VP6 and Spark, which are two “dead” codecs, still puts us, Air developers, in a very fragile position in terms of what we can accomplish with video in iOS.
    I’m sure some of you cheered when you heard about Flash Player 11 having h.264 video encoding. This, (plus the echo cancellation feature that came in 10.3) opened great doors for great Unified-Communication applications to be developed for Flash/Air. Now, it’s undeniable that clients want those applications running on tablets, especially the iPad.
    Not being able to use h.264 via RTMP on iOS is certainly a huge step backwards. Anyone shares this same opinion? What do you guys believe to be the best option to let Adobe really know about this need? Is this limitation a simple lack-of-a-feature (which can be fixed by Adobe) or is this some imposed thing by Apple?
    Just one final note: Air for Android does *not* have the same limitation. It does allow RTMP streaming of h.264.
    Thanks for your attention,
    Helder Conde

  • EasyRotator for WordPress - Slider Builder] Adobe AIR won't install on Linux

    The auto-installer is a Windows executable.  Not much use on a Linux box.
    http://wordpress.org/extend/plugins/easyrotator-for-wordpress/
    I tried to install the plugin on http://5v5flag.com.   Granted I am running the latest wordpress version. Is anyone else having this problem. The solution that was offered to me is to try the newest version of Adobe Air and then the Easy Rotator installer. Still that did not work for me.

    You will have to contact the author of the plug-in. This has nothing to do with Adobe.
    Mylenium

  • How do I install Adobe Air SDK for CS5.5 Products?

    Hey how would I install Adobe Air SDK 3.7 for Flash Pro CS5.5 and Flash Builder 4.6?

    Okay this is what I got from the .XML file:
    <?xml version ="1.0" encoding="utf-8" ?><application xmlns="Untitled-11.0Untitled-1http://ns.adobe.com/air/application/3.7"><id>Untitled-1</id><versio nNumber>1.0</versionNumber><filename>Untitled-1</filename><description></description><!-- To localize the description, use the following format for the description element.<description><text xml:lang="en">English App description goes here</text><text xml:lang="fr">French App description goes here</text><text xml:lang="ja">Japanese App description goes here</text></description>--><name>Untitled-1</name><!-- To localize the name, use the following format for the name element.<name><text xml:lang="en">English App name goes here</text><text xml:lang="fr">French App name goes here</text><text xml:lang="ja">Japanese App name goes here</text></name>--><copyright></copyright><initialWindow><content>Untitled-1.swf</conte nt><systemChrome>standard</systemChrome><transparent>false</transparent><visible>true</vis ible><fullScreen>false</fullScreen><aspectRatio>portrait</aspectRatio><renderMode>auto</re nderMode></initialWindow><icon></icon><customUpdateUI>false</customUpdateUI><allowBrowserI nvocation>false</allowBrowserInvocation></application>

  • Auto Orientation

    Hi;
    I'm trying to learn flash builder. Making a simple application used tab views.
    I  designed the page, but when I switch orientation, some objects not seen
    on a screen.
    How can I adding auto orientation to my application.
    peace

    Hi,
      This is the FormCentral forum, You may want to check the Acrobat forum: http://forums.adobe.com/community/acrobat
    I believe the orientation that you initially scanned in your pages will be the orientation saved in the PDF file.  Now, you will need Acrobat to manually rotate the specific-page-orientation.  Depending on which version of Acrobat you have, you should be able to either change the view of a page by selecting 'View/Rotate' or  'Documents/Rotate Pages'.  Acrobat will not rotate it for you automatically after scanning.
    Thanks,
    Lucia

Maybe you are looking for

  • Unable to delete a music "file" from my iPhone while syncing

    I have a file that is appearing under my iPod cover flow area on my iPhone 4. It says it is a song from an album, but when it is touched and flips, it says "Unknown Unknown" on the reverse side. It will disappear if I remove everything from my music

  • Spotify is hijacked by free youtube to mp3 convertor when it tries to update and re open

    I have been having this problem for a few weeks now. The only solution is to uninstall spotify and re-install it. This would cure the problem for a few days but now it will not even cure it for a few minutes. If I reboot windows and open up Spotify t

  • Delete organization

    Hi,    when create organization data for the support desk of your company form tcode ppoma_crm, there is bp number  assinged to this new organization unit.   But when i delete organization unit from tcode ppoma_crm, there is still exist in tcode bp.

  • Unity only working in guest session

    I finally got Unity installed (from the unofficial repository) and running, only to discover that when I try to use it logged in as my regular user acccount, everything goes to hell. There are rendering artifacts and tearing in most of the graphical

  • I can't use my iPad.

    I can't use my iPad because there's an alert message that says that iCloud hasn't been backed up. The problem is I can't switch on the wifi setting because the message is just there.