Adobe AIR - stage orientation / rotation

Hello,
I'm developing an desktop AIR aplication.
At some point the user can rotate de aplication (0º or 180º).
I looked at the API and its possbile to change the application orientation on AIR for mobile as described on this article:
http://help.adobe.com/en_US/as3/dev/WS901d38e593cd1bac1c39723e12caaf5620c-7fff.html
Is kind of stupid it isn't possible on AIR for desktop...
Does anyone knows a way to accomplish this?
Rotate the stage, native window, main timeline... don't know... some weird hack?
I want to avoid the need for an empty sprite just to hold the other class and get my displaylist deeper...
Thank you.

// This could be used instead of a container
//Caveats: All DisplayObjects (Sprites, MovieClips) must have theire Registration point in the center
//Use the stagewidth/height to determin the centerpoint of your stage (e.g. for A HD Monitor it would be 960,540
//to reposition all of your objects
var displayObjects:Array = new Array();
var displayObjectPoints:Array = new Array();
function getAllDisplayObjects():void{
    for (var i:int = 0;i<stage.numChildren; i++){
            displayObjects.push(stage.getChildAt(i));
            displayObjectPoints.push(new Point(stage.getChildAt(i).x,stage.getChildAt(i).y));
    simulateStageRotation();
function simulateStageRotation():void{
    //do the math for positioning your objects accordingly

Similar Messages

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

  • I0S7 StatusBar Overlays stage, Adobe Air 3.9 Beta Bug? Is there a Workarround

    Hi
    I am using Adobe air 3.9 Beta. It seems that iOS7 give you the the possibility to style the Statusbar. But if you open an adobe air application the statusbar overlays the stage by default. It creates problems with my tabs.
    I tested the app with an iPod and IPhone, both with iOs7 Both have the Issues. If I compile the app with Adobe air 3.8 the Statusbar will be displayed correct.
    But I can't use air 3.8 because I need the new Icons 120x120 76x76 etc.
    Other people have the same issue. See screenshots https://github.com/mutualmobile/MMDrawerController/issues/51
    I think the solution is in the info.plist. There is an option for the info.plist UIViewControllerBasedStatusBarAppearance. We need this paramter to activate or deactivate the Statusbar overlay.
    any Ideas?

    My variation of the problem shows different results in 790 and 1080. Here's what I'm doing, and what's different:
    When I ask the user to pick a photo from their album, the status bar appears (my app is full screen, and no status bar is showing at first).
    With build 790, the status bar is opaque, black background, and it sits on top of the title banner of the picker (the word "PHOTOS" gets obscured). When I return to the app, the status bar remains there, and is sitting on top of my stage content. The picker is iOS 6 styled.
    With build 1080 the behavior is identical to the above, except that the status bar is transparent, and the picker is iOS 7 styled. The status bar does not obscure the "Photos" word, that is further down the screen. On returning to the app I see the black text of the status bar sat transparent on top of the top part of my stage content.
    If I build for 3.8.0.910, the behavior is the same as it is for 3.9.0.790.
    This is with the GM version of iOS 7.
    Overall, I think I'll build for 1080, and hope the client doens't notice the remnants of the status bar. Hopefully you will have added the new icons to the next iOS 7 AIR build, and found a way to hide the status bar after showing the picker.

  • I0S7 StatusBar Overlays stage, Adobe Air 3.9 Beta Bug VOTE this Bug

    Hi
    I am using Adobe air 3.9 Beta. It seems that iOS7 give you the the possibility to style the Statusbar. But if you open an adobe air application the statusbar overlays the stage by default. It creates problems with my tabs.
    I tested the app with an iPod and IPhone, both with iOs7 Both have the Issues. If I compile the app with Adobe air 3.8 the Statusbar will be displayed correct.
    But I can't use air 3.8 because I need the new Icons 120x120 76x76 etc.
    Other people have the same issue. See screenshots https://github.com/mutualmobile/MMDrawerController/issues/51
    I think the solution is in the info.plist. There is an option for the info.plist UIViewControllerBasedStatusBarAppearance. We need this paramter to activate or deactivate the Statusbar overlay.
    Please vote to fix this bug
    https://bugbase.adobe.com/index.cfm?event=bug&id=3633422
    any Ideas for an workarround?
    p.s.
    sorry for double post in Air Development section

    Hi,
    up until now, I think this might be a general issue, even Xcode (5) apps have this.
    However, if you just need the new icons you shouldn't care too much about this, you nearly can't see the differences when you adjust your icons a little bit (no border on the edges etc.), so I would rather use 3.8 (fast, since you might not be able to upload an app without the icons after tomorrow) and update it once those issues have been fixed (I think that this might need a while, since there are some more problems with 3.9).

  • StageWebView crashes Adobe AIR on iOS when assigning it a stage

    I'm having a problem with StageWebView on iOS (in Android it works fine). More exactly, It's an iPad app.
    I'm loading a dynamic PHP URL with StageWebView's loadURL method, and then I start building Flash interface elements in a left column (the StageWebView browser is in the right column), which works fine, then I wait a couple of seconds for the page to load (with a Timer), and then I finally show the browser to the user with:
    this.webView.stage = this.stage;
    The moment I run that line, the whole iOS application crashes and the iPad goes back to its desktop (I suppose that should never happen in Adobe AIR no matter what you do).
    But the process is still in memory, since if I double click the iPad physical button, I can see my application icon in the running apps bar (though if I click the icon, the app starts from the beginning, instead of resuming).
    Using AIR 2.6. Any ideas on how to solve this crash?
    Thanks.

    Thanks for the link. I've checked it, but the differences listed are not relevant in my app, I think.
    Yes, I know there is also the "Event.COMPLETE" event, but I can't use that because it only fires after the page is fully loaded, with all its images, and the page I'm trying to load has 200 images or so and takes almost a minute to load, so I can't have the user wait that long. I just want to wait until the HTML has loaded.
    Anyway, I've also tried Event.COMPLETE and after the long wait, the app still crashes when trying to show the StageWebView.
    I've even tried a complex solution, by using StageWebViewBridge by Pedro Casaubon to communicate with the JavaScript in the page, using JavaScript's "DOMContentLoaded" event, so it fires as soon as the HTML (but not the images) has loaded. That works, but as soon as I make the StageWebView visible by assigning it the stage, AIR crashes!
    So, AIR crashes when trying to assign the stage to the StageWebView object in all these three cases:
    - After waiting for AS3 Event.COMPLETE event listener added to loadURL()
    - After waiting for JavaScript "DOMContentLoaded"
    - After waiting for a fixed period of time set with a Timer event
    The only way AIR doesn't crash when assigning the stage to StageWebView is NOT waiting at all. That is, running the loadURL function and immediately running the "this.webView.stage = this.stage;" line to show the StageWebView object in the stage. In that case it works, but it shows some ugly white box in the StageWebView area while loading, which I was trying to avoid, plus JavaScript events don't work until the page is loaded.
    All those crashes described above are most likely a bug in Adobe AIR, but I don't know how could somebody else reproduce it since it could be caused by anything (the dynamic PHP page I'm loading, the JS code, something in the AS3 code, though I don't think that code has anything out of the ordinary...)
    Also, when I test the app with ADL in the PC, everything works as expected. The crashes only happen in the iPad (it's an iPad 2).

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

  • 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

  • Adobe Air - Android emulator

    Hi,
    I am trying to put an android aplication working on the android emulator.
    I have developed it in Flash Cs5, then i have created the apk file and installed it on the emulator.
    The emulator has the adobe air for emulator installed.
    When i try to run the app it gives my "the application ... has stoped unexpectedly. Please try again".
    The aplication has a simple square.
    When i write ./adb loga car, i have the following errors:
    I/ActivityManager(   66): Start proc air.Final1 for activity air.Final1/.AppEntry: pid=1082 uid=10031 gids={3003}
    D/TabletStatusBar(  258): lights on
    D/dalvikvm( 1082): Trying to load lib /data/data/com.adobe.air/lib/libCore.so 0x4063abc0
    I/WindowManager(   66): Setting rotation to 3, animFlags=1
    I/ActivityManager(   66): Config changed: { scale=1.0 imsi=310/260 loc=en_US touch=3 keys=2/1/1 nav=3/1 orien=P layout=0x10000014 uiMode=0x11 seq=18}
    D/Tablet/NotificationPanel(  258): notificationCount=0
    W/dalvikvm( 1082): No implementation found for native Lcom/adobe/air/AndroidActivityWrapper;.nativeSetVisible (Z)V
    W/WindowManager(   66): Window freeze timeout expired.
    W/WindowManager(   66): Force clearing orientation change: Window{40c41db0 air.Final1/air.Final1.AppEntry paused=false}
    D/AndroidRuntime( 1082): Shutting down VM
    W/dalvikvm( 1082): threadid=1: thread exiting with uncaught exception (group=0x40014760)
    E/AndroidRuntime( 1082): FATAL EXCEPTION: main
    E/AndroidRuntime( 1082): java.lang.UnsatisfiedLinkError: nativeSetVisible
    E/AndroidRuntime( 1082):     at com.adobe.air.AndroidActivityWrapper.nativeSetVisible(Native Method)
    E/AndroidRuntime( 1082):     at com.adobe.air.AndroidActivityWrapper.SetVisible(AndroidActivityWrapper.java:651)
    E/AndroidRuntime( 1082):     at com.adobe.air.AndroidActivityWrapper.onSurfaceInitialized(AndroidActivityWrapper.java:614 )
    E/AndroidRuntime( 1082):     at com.adobe.air.AIRWindowSurfaceView.surfaceChanged(AIRWindowSurfaceView.java:438)
    E/AndroidRuntime( 1082):     at android.view.SurfaceView.updateWindow(SurfaceView.java:571)
    E/AndroidRuntime( 1082):     at android.view.SurfaceView.access$000(SurfaceView.java:84)
    E/AndroidRuntime( 1082):     at android.view.SurfaceView$3.onPreDraw(SurfaceView.java:173)
    E/AndroidRuntime( 1082):     at android.view.ViewTreeObserver.dispatchOnPreDraw(ViewTreeObserver.java:590)
    E/AndroidRuntime( 1082):     at android.view.ViewRoot.performTraversals(ViewRoot.java:1325)
    E/AndroidRuntime( 1082):     at android.view.ViewRoot.handleMessage(ViewRoot.java:1944)
    E/AndroidRuntime( 1082):     at android.os.Handler.dispatchMessage(Handler.java:99)
    E/AndroidRuntime( 1082):     at android.os.Looper.loop(Looper.java:126)
    E/AndroidRuntime( 1082):     at android.app.ActivityThread.main(ActivityThread.java:3997)
    E/AndroidRuntime( 1082):     at java.lang.reflect.Method.invokeNative(Native Method)
    E/AndroidRuntime( 1082):     at java.lang.reflect.Method.invoke(Method.java:491)
    E/AndroidRuntime( 1082):     at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:841)
    E/AndroidRuntime( 1082):     at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:599)
    E/AndroidRuntime( 1082):     at dalvik.system.NativeStart.main(Native Method)
    W/ActivityManager(   66):   Force finishing activity air.Final1/.AppEntry
    W/WindowManager(   66): Failure taking screenshot for (135x84) to layer 21045
    W/ActivityManager(   66): Activity pause timeout for ActivityRecord{4073f990 air.Final1/.AppEntry}
    D/dalvikvm(   66): GC_EXPLICIT freed 498K, 49% free 13968K/27015K, paused 60ms+18ms
    W/ActivityManager(   66): Launch timeout has expired, giving up wake lock!
    W/ActivityManager(   66): Activity idle timeout for ActivityRecord{4073f990 air.Final1/.AppEntry}
    D/dalvikvm( 1070): GC_EXPLICIT freed 10K, 9% free 16186K/17671K, paused 9ms+5ms
    I/WindowManager(   66): Setting rotation to 0, animFlags=1
    I/ActivityManager(   66): Config changed: { scale=1.0 imsi=310/260 loc=en_US touch=3 keys=2/1/1 nav=3/1 orien=L layout=0x10000014 uiMode=0x11 seq=19}
    W/ActivityManager(   66): Activity destroy timeout for ActivityRecord{4073f990 air.Final1/.AppEntry}
    W/WindowManager(   66): Window freeze timeout expired.
    W/WindowManager(   66): Force clearing orientation change: Window{40745e50 Sorry! paused=false}
    D/Tablet/NotificationPanel(  258): notificationCount=0
    W/WindowManager(   66): App freeze timeout expired.
    W/WindowManager(   66): Force clearing freeze: AppWindowToken{41524680 token=ActivityRecord{4073c818 com.android.launcher/com.android.launcher2.Launcher}}
    I/InputDispatcher(   66): Dropped event because it is stale.
    i hope someone can help
    Thank you

    Hi,
    Did you create your apk file using Flash Builder Burrito? If yes, Flash Builder Burrito does not support emulators. Packages created with Burrito are only intended to run on pyshical devices.
    Thanks,
    -Sedat Akkus

  • How to record a time-limited video with Adobe AIR for iOS

    I am trying to record a time-limited video with Adobe AIR for iOS.
    For example, I want to implement the following function. Start a one-minute timer before launching CameraUI to record video. When the timeout event happens after one minute, stop recording video, close the CameraUI view and obtain the video data so far.
      I have several questions related to that.
      1. How to stop recording video from outside the CameraUI view(in this case, from the timeout event handler) and then close the CemeraUI view? As far as I know, to close the CameraUI view, the only way is to press the [Use Video] button or the [Cancel] button from inside the CameraUI view. Is it possible to close it from outside?
      2. Even if the first problem mentioned above is solved, then how can I get the video data so far(in this case, the video data before the timeout). I know that normally we can get a MediaPromise object from MediaEvent parameter of the  complete handler, and read the video data from the MediaPromise object. But obviously in this case, we can not access the MediaPromise object just because the complete handler itself will not be executed since the [Use Video] button is not pressed.
      3. Is it possible to add a stopwatch to show possible remaining recording time when CameraUI view is open? It seems that the CameraUI automatically uses the full screen of iOS device(in my case, iPad) and there is no extra space to show the stopwatch.
      Are there any solutions or workarounds about the three problem above? I really appreciate it if anyone has any idea about this. Thanks in advance.

    You'd have more control by using the Camera object, showing the camera on a video object inside a Sprite, and capturing that. Then you could put whatever graphics alongside it on the stage.. I've used FlashyWrappers in a test to capture the video to the library.  It took some work, but the test worked well...
    Flash/AIR record videos of your apps and games: Rainbow Creatures

  • I want to hide the blue title bar from my adobe air application

    Hello
    I'm doing an aplication with Flash CS4, using adobe air in as3. I have some frames, and in the frame 25 there's a stop, when user clicks a button, go ahead to frame 27 and stage resize the whole screen, just like a FULL_SCREEN, and then I load an pdf. I can't use FULL_SCREEN or FULL_SCREEN_INTERACTIVE property, because doesn't works the pdf loaded (even adobe help say it), so I would like to simulate it. The application it will be use in windows ( I am not sure if XP, vista, but windows). So when resize the stage, to load pdf, then and ONLY then, I want the title bar disappears, just to simulate full_screen.
    How can I do, to make in a desktop application that ?
    Thanks in advance

    Open the Air Application descriptor file(eg: airproject-app.xml) for your application and
    uncomment the <systemChrome></systemChrome> tag.
    Set it to none like:
    <systemChrome>none</systemChrome>
    It will work.

  • Bad user experience/errors with Adobe Air widget installation

    I'm having a nervous breakdown at work (it's 10pm and I'm
    still in the office), an Adobe Air widget application I've built is
    somehow causing the client to panic (they can't install or run the
    Adobe Air installation or the widget and now they feel all their
    users are having the same problem). If anyone has a minute to try
    this out and let me know if the widget installs correctly of if you
    have any recommendations on a better user experience I'll greatly
    appreciate it. The client is receiving an error message when
    installing Adobe Air (error 0 or something).
    widget is on the bottom left (installs for PC and Mac). If
    the widget installs without any glitches please let me know. God
    bless.
    http://stayonhermind.com

    The application installed just fine for me. I'm running
    Windows XP SP2 and I already have AIR 1.1 runtime installed.
    I do have a few suggestions for improvement though! Just take
    or leave any or all of these! :)
    In your popup you say,
    "Before installing the 9IX Rules Widget verify that
    you’re running the latest version of Adobe Flash."
    Is this really a necessary requirement? If you are
    downloading the .air I think it would not matter whether or not you
    have Flash installed.
    Then you say,
    "After installing Adobe Air (link below), return to this page
    and re-install the 9IX Rules Widget. Install Adobe Air Now .
    Otherwise click on the button below (the widget install button)."
    I understand you are trying to make this easy for people but
    to me this seems confusing.
    <GENERAL AIR COMMENT>
    If someone does not have AIR runtime already installed I
    thought running a .air would trigger the download and install. If
    not this gets pretty complicated. How do you test if they have AIR
    or not? And since most will not at this early stage how dow we
    educate end-users to even know if they have it or not?
    </GENERAL AIR COMMENT>
    You should digitally sign your AIR app so it does not say
    Publisher: UNKNOWN with the big red "?" icon!
    I would recommend against using all caps in your messages.
    I would recommend choosing a better font (maybe a pixel font)
    since the message text is a bit blurry.

  • Adobe AIR 3.7 - iOS run error

    Hi,
    I have set up a simple project to test the latest release of Adobe Air 3.7 which allow loading external swf with bytecode inside.
    The project use the krpano_as3_interface, load the main krpano.swf, and after a simple xml file.
    Building and running in iOs SImulator using my Flex IDe works fine, the panorama load.
    Building and trying runnig on an iOs Device connected with USB doesn't works.
    I get this error :
    Trying to connect to Player
    Player connected; session starting.
    [trace] krpano_load
    [trace] krpano_load_complete
    [Fault] exception, information=Error: Error #3747: Multiple application domains are not supported on this operating system.
    Following this blog article, http://blogs.adobe.com/airodynamics/2012…ir-apps-on-ios/, i correctly load krpano swf file. But it seems that adding krpano content on stage is not possible.
    Any idea ?
    [code]
    <?xml version="1.0" encoding="utf-8"?>
    <s:Application xmlns:fx="http://ns.adobe.com/mxml/2009"
                   xmlns:s="library://ns.adobe.com/flex/spark"
                   applicationDPI="160"
                   applicationComplete="krpano_load()"
                   width="100%" height="100%" usePreloader="false"
            >
        <fx:Script>
                        <![CDATA[
            import mx.core.UIComponent;
            import mx.events.FlexEvent;
            import mx.core.FlexGlobals;
            import mx.events.ResizeEvent;
            import flash.system.Security;
            import krpano_as3_interface;
            public var krpano:krpano_as3_interface = null;
            public var area:Object;
            public var _krpano:*;
            public function krpano_load():void
                trace("krpano_load");
                var loaderContext:LoaderContext = new LoaderContext(false, ApplicationDomain.currentDomain, null);
                loaderContext.allowLoadBytesCodeExecution = true;
                loaderContext.allowCodeImport = true;
                var krpanoloader:Loader = new Loader();
                krpanoloader.contentLoaderInfo.addEventListener(Event.COMPLETE, krpano_load_complete);
                krpanoloader.load(new URLRequest("./krpano.swf"), loaderContext);
            public function krpano_load_complete(event:Event):void
                trace("krpano_load_complete");
                (event.target.content as Object).embeddedstartup(stage, krpano_ready);
                _krpano = (event.target.content as Object);
            public function krpano_ready(krpanointerface:krpano_as3_interface):void
                trace("krpano_ready");
                krpano = krpano_as3_interface.getInstance();
                krpano.call("showlog(true);");
                area = krpano.get("area");
                area.x      = 0;
                area.y      = 0;
                area.width  = stage.stageWidth;
                area.height = stage.stageHeight;
                krpano.call("loadpano(./krpano.xml,null,MERGE,BLEND(1));");
            ]]>
              </fx:Script>
    </s:Application>

    The error #3747: "Multiple application domains are not supported on this operating system." occurs when the Applicationdomain is not set to currentDomain. Can you please debug if the ApplicationDomain is getting set to currentDomain rather than the default one?
    Thanks,
    Nimisha

  • Multi Touch not supported in Adobe Air for IOS?

    Hi, I've just started developing my first app for my iPhone which is an iPhone 3GS. I'm using CS5 to make these apps.
    I did a simple test game where there are two arrows on the screen and a fire button. The screen also has a ground and the player standing on it which can be controlled with left/right and fire. Now, if I press right, he moves right, if I press left, he moves left, if I press fire, he jumps... BUT no matter what I do I can't make dual touch work, ie: I press right AND fire, it only recognize just ONE touch point. So I did alot of researching and didn't find much.  I thought maybe adding a TouchEvent.TOUCH_TAP which I found a guide on on this page: http://openexhibits.org/support/gestures/1/one-finger-tap , but couldn't make it work, so I found this: http://www.adobe.com/devnet/flash/articles/multitouch_gestures.html and it seems Adobe Air for iPhone only allows four different gestures, no TouchEvents. I found a code somewhere that when run it checks to see if the device it's running on supports TOUCH_TAP stuff and in CS5 I got the message that it is not supported, in Adobe Device Central I get it's supported, on the actual phone (yes, got dev license from Apple and all that and can run my apps from CS5 on my iphone) I get it IS supported, but it doesn't work when I try it for real.
    So, my question is: how can I make Adobe Air using CS5 to detect 2 finger presses at the same time in iPhone apps?  Like pressing right+fire at the same time, so it doesn't just detect ONE of them being pressed.
    Thanks a million for any reply.

    Before listening for TouchEvents like TOUCH_BEGIN, TOUCH_MOVE, TOUCH_END etc... you need to set the input mode of your device to TOUCH_POINT. By default it is set to GESTURE.
    This works fine on the iPAD:
    import flash.ui.Multitouch;
    import flash.ui.MultitouchInputMode;
    Multitouch.inputMode = MultitouchInputMode.TOUCH_POINT;
    stage.addEventListener(TouchEvent.TOUCH_BEGIN, touchBegin);
    stage.addEventListener(TouchEvent.TOUCH_MOVE, touchMove);
    stage.addEventListener(TouchEvent.TOUCH_END, touchEnd);
    private function touchBegin(te:TouchEvent):void {
        // your code here
    private function touchMove(te:TouchEvent):void {
        // your code here
    private function touchEnd(te:TouchEvent):void {
        // your code here
    Hope that helps.

  • Adobe Air HTML & JS Developing - Slow on massive Image-Tags

    Hello,
    I want to share a problem i noticed while developing an application with adobe air, based on the HTML & JS Stack, which uses multiple image-tags at the same time. I already mailed a bug but unfortunately did not get a bug number responded to refer to hit here. This post is started because i wanted to share a simple example which exhibits the problem.
    The Bug Report i mailed:
    ******BUG******
    Concise problem statement: Performance Issues with massive Image-Tags (scaled)
    Steps to reproduce bug:
    1. Create a simple Air-Application. No need for any Air-specific library we just want the Air-Webkit to render a HTML-Page
    2.  Load ~130 Pictures with a dimension of approximately 1024 x 768 pixels.  Render each of them as a scaled Image-Tag with the dimension 100x60  pixels.
    3. Load the Page in the Air/Safari/Firefox/IE Environment (Versions: Air 2.5, Safari 5.0.2 (Win XP), FF 3.6.10, IE7)
    4. Try scrolling down/left/right/up and resizing the respective stage
    Results: The Air Environment performs worst among those 4. It reacts unacceptably slow while trying to resize and to scroll.
    Expected results: similar performance to Webkit-Engine in Safari.
    I know of one other discussion which seems to be related to a similar thing (http://forums.adobe.com/message/44913).
    The Page i used to compare the Adobe-Air rendering & scroll behaviour against the behaviour of Safari, FF and IE is posted beneath (pretty long due to the excerpt of 131 pictures taken of flicker web service).
    with best regards
    Robert
    <html>
        <head>
            <title>Mass Img Tags</title>
            <script language="JavaScript">
                var data = [{
                    "Title": "landscape216 jpg",
                    "Summary": "",
                    "Url": "http://xemanhdep.com/gallery/landscape2/landscape216.jpg",
                    "ClickUrl": "http://xemanhdep.com/gallery/landscape2/landscape216.jpg",
                    "RefererUrl": "http://gallery.xemanhdep.com/2008/10/beautiful-landscape-photos-2",
                    "FileSize": 114688,
                    "FileFormat": "jpeg",
                    "Height": "525",
                    "Width": "700",
                    "Thumbnail": {
                        "Url": "http://thm-a01.yimg.com/nimage/f5f58ee2c6a04bfa",
                        "Height": "112",
                        "Width": "150"
                    "Title": "Landscape Bora Bora Lagoon with Catamaran French Polynesia jpg",
                    "Summary": "11 12 13 14 15 16 17 18",
                    "Url": "http://www.bergoiata.org/fe/landscapes2/Landscape%20-%20Bora%20Bora%20Lagoon%20with%20Catamaran%20-%20French%20Polynesia.jpg",
                    "ClickUrl": "http://www.bergoiata.org/fe/landscapes2/Landscape%20-%20Bora%20Bora%20Lagoon%20with%20Catamaran%20-%20French%20Polynesia.jpg",
                    "RefererUrl": "http://www.nitilurus.blogspot.com/",
                    "FileSize": 102604,
                    "FileFormat": "jpeg",
                    "Height": "768",
                    "Width": "1024",
                    "Thumbnail": {
                        "Url": "http://thm-a02.yimg.com/nimage/8673e2bc14b343d0",
                        "Height": "120",
                        "Width": "160"
                    "Title": "Landscape Mount Tombstone Upper North jpg",
                    "Summary": "Landscape Flowers &gt; 02 Sep 2005 22 56 156k Fractal Roiling Vo &gt; 02 Sep 2005 22 56 157k Landscape Mount To &gt; 02 Sep 2005 22 56 172k Landscape Southern &gt; 02 Sep 2005 22 56 200k",
                    "Url": "http://www.bergoiata.org/fe/divers47/Landscape%20-%20Mount%20Tombstone,%20Upper%20North.jpg",
                    "ClickUrl": "http://www.bergoiata.org/fe/divers47/Landscape%20-%20Mount%20Tombstone,%20Upper%20North.jpg",
                    "RefererUrl": "http://www.bergoiata.org/fe/divers47?S=A",
                    "FileSize": 176537,
                    "FileFormat": "jpeg",
                    "Height": "768",
                    "Width": "1024",
                    "Thumbnail": {
                        "Url": "http://thm-a03.yimg.com/nimage/cab907cfa143c5a2",
                        "Height": "120",
                        "Width": "160"
                    "Title": "Landscape",
                    "Summary": "",
                    "Url": "http://media-content.flixya.com.s3.amazonaws.com/files/bxj1986530672.jpg?AWSAccessKeyId=1TKE66PETJJHG8051M02&Expires=2114092205&Signature=1m7fiT7SAIe8HgLiPtae0%2FL62ho%3D",
                    "ClickUrl": "http://media-content.flixya.com.s3.amazonaws.com/files/bxj1986530672.jpg?AWSAccessKeyId=1TKE66PETJJHG8051M02&Expires=2114092205&Signature=1m7fiT7SAIe8HgLiPtae0%2FL62ho%3D",
                    "RefererUrl": "http://www.flixya.com/photo/530672/Landscape",
                    "FileSize": 253644,
                    "FileFormat": "jpeg",
                    "Height": "375",
                    "Width": "500",
                    "Thumbnail": {
                        "Url": "http://thm-a04.yimg.com/nimage/6ca09130080fe348",
                        "Height": "108",
                        "Width": "145"
                    "Title": "purple landscape jpg",
                    "Summary": "Purple Landscape Róbert Štefanka 10 srpen 2006",
                    "Url": "http://www.lightharmony.com/admin/ext/purple-landscape.jpg",
                    "ClickUrl": "http://www.lightharmony.com/admin/ext/purple-landscape.jpg",
                    "RefererUrl": "http://www.lightharmony.com/fotografie/160/cz/author/8/0/purple-landscape",
                    "FileSize": 323686,
                    "FileFormat": "jpeg",
                    "Height": "463",
                    "Width": "700",
                    "Thumbnail": {
                        "Url": "http://thm-a01.yimg.com/nimage/a4609865c6a4cd22",
                        "Height": "99",
                        "Width": "150"
                    "Title": "Landscape Matterhorn Lake jpg",
                    "Summary": "Nature Rainy Lands &gt; 02 Sep 2005 22 50 58k Landscape Mountain &gt; 02 Sep 2005 22 49 89k Landscape Matterho &gt; 02 Sep 2005 22 49 198k Landscape Lighthou &gt; 02 Sep 2005 22 49 177k",
                    "Url": "http://www.bergoiata.org/fe/divers44/Landscape%20-%20Matterhorn%20Lake.jpg",
                    "ClickUrl": "http://www.bergoiata.org/fe/divers44/Landscape%20-%20Matterhorn%20Lake.jpg",
                    "RefererUrl": "http://www.bergoiata.org/fe/divers44?N=D",
                    "FileSize": 202547,
                    "FileFormat": "jpeg",
                    "Height": "768",
                    "Width": "1024",
                    "Thumbnail": {
                        "Url": "http://thm-a03.yimg.com/nimage/0203edf764b1c67c",
                        "Height": "120",
                        "Width": "160"
                    "Title": "landscape",
                    "Summary": "LandScape LandScape 2",
                    "Url": "http://www.smashingdownloads.com/wp-content/uploads/2009/06/landscape.jpg",
                    "ClickUrl": "http://www.smashingdownloads.com/wp-content/uploads/2009/06/landscape.jpg",
                    "RefererUrl": "http://www.smashingdownloads.com/2009/06/04/27-brilliant-examples-of-landscape-photography",
                    "FileSize": 99635,
                    "FileFormat": "jpeg",
                    "Height": "399",
                    "Width": "600",
                    "Thumbnail": {
                        "Url": "http://thm-a01.yimg.com/nimage/fe217612dffd3c10",
                        "Height": "96",
                        "Width": "145"
                    "Title": "landscape3 jpg",
                    "Summary": "its own If you re a fan of the handiwork of Mother Nature and you d like to get a glimpse of the diversity of the world check out this photostream featuring gorgeous landscape photography",
                    "Url": "http://www.dirjournal.com/info/wp-content/uploads/2009/12/landscape3.jpg",
                    "ClickUrl": "http://www.dirjournal.com/info/wp-content/uploads/2009/12/landscape3.jpg",
                    "RefererUrl": "http://www.dirjournal.com/info/the-magnificent-beauty-of-natures-landscapes",
                    "FileSize": 169164,
                    "FileFormat": "jpeg",
                    "Height": "483",
                    "Width": "700",
                    "Thumbnail": {
                        "Url": "http://thm-a02.yimg.com/nimage/0b807ce0d282bfc2",
                        "Height": "103",
                        "Width": "150"
                    "Title": "sm landscape syracuse label jpg",
                    "Summary": "sports video game Stevensgraph of Columbus landing artwork including nice small o b horses and children sheep painting V Perrin small landscape etc Gone with the wind Lamp very nice quality 4 pc leather parlor set barely used 2 canes one w sterling top ca 1879 French Gras Bayonet several nice mirrors great",
                    "Url": "http://www.coylesauction.com/images/Year2005/083005/sm%20landscape%20syracuse%20label.jpg",
                    "ClickUrl": "http://www.coylesauction.com/images/Year2005/083005/sm%20landscape%20syracuse%20label.jpg",
                    "RefererUrl": "http://www.coylesauction.com/AuctionPreview/Year2005/ap083005.htm",
                    "FileSize": 67481,
                    "FileFormat": "jpeg",
                    "Height": "486",
                    "Width": "650",
                    "Thumbnail": {
                        "Url": "http://thm-a04.yimg.com/nimage/dcccdb9e4e66c4e2",
                        "Height": "112",
                        "Width": "150"
                    "Title": "post5 landscape jpg",
                    "Summary": "a little boost to the colour All in all a 20 to 30 minute job Was it worth You decide In my opinion it won the right to have its own place in the sorted folders Landscape Before After",
                    "Url": "http://www.chromystic.com/blog/goncalofigueiredo/resource/img/post5_landscape.jpg",
                    "ClickUrl": "http://www.chromystic.com/blog/goncalofigueiredo/resource/img/post5_landscape.jpg",
                    "RefererUrl": "http://www.chromystic.com/blog/goncalofigueiredo/entry/there-is-still-a-chance",
                    "FileSize": 188108,
                    "FileFormat": "jpeg",
                    "Height": "332",
                    "Width": "500",
                    "Thumbnail": {
                        "Url": "http://thm-a01.yimg.com/nimage/dbb4f27647c5952e",
                        "Height": "96",
                        "Width": "145"
                    "Title": "Landscape thumb jpg",
                    "Summary": "In this tutorial you will learn how to create a fantasy landscape using some simple and easy techniques Create Smoke Effect on Grungy Wallpaper",
                    "Url": "http://ntt.cc/wp-content/uploads/2009/10/Landscape_thumb.jpg",
                    "ClickUrl": "http://ntt.cc/wp-content/uploads/2009/10/Landscape_thumb.jpg",
                    "RefererUrl": "http://ntt.cc/2009/10/16/30-excellent-high-quality-adobe-photoshop-tutorials-new.html",
                    "FileSize": 84377,
                    "FileFormat": "jpeg",
                    "Height": "569",
                    "Width": "484",
                    "Thumbnail": {
                        "Url": "http://thm-a02.yimg.com/nimage/7a3616914ed77cf4",
                        "Height": "145",
                        "Width": "123"
                    "Title": "landscape 1024 30 jpg",
                    "Summary": "",
                    "Url": "http://www.digital-cameras-help.com/landscapes/landscape-1024-30.jpg",
                    "ClickUrl": "http://www.digital-cameras-help.com/landscapes/landscape-1024-30.jpg",
                    "RefererUrl": "http://www.digital-cameras-help.com/wallpaper-landscape-2.html?id=30",
                    "FileSize": 271155,
                    "FileFormat": "jpeg",
                    "Height": "768",
                    "Width": "1024",
                    "Thumbnail": {
                        "Url": "http://thm-a03.yimg.com/nimage/401d2cdfaab693a2",
                        "Height": "120",
                        "Width": "160"
                    "Title": "landscape 800 18 jpg",
                    "Summary": "",
                    "Url": "http://www.digital-cameras-help.com/landscapes/landscape-800-18.jpg",
                    "ClickUrl": "http://www.digital-cameras-help.com/landscapes/landscape-800-18.jpg",
                    "RefererUrl": "http://www.digital-cameras-help.com/wallpaper-landscape-1.html?id=18",
                    "FileSize": 69120,
                    "FileFormat": "jpeg",
                    "Height": "600",
                    "Width": "800",
                    "Thumbnail": {
                        "Url": "http://thm-a04.yimg.com/nimage/cb5db7a20c94d0c8",
                        "Height": "116",
                        "Width": "155"
                    "Title": "landscape 1200 18 jpg",
                    "Summary": "",
                    "Url": "http://www.digital-cameras-help.com/landscapes/landscape-1200-18.jpg",
                    "ClickUrl": "http://www.digital-cameras-help.com/landscapes/landscape-1200-18.jpg",
                    "RefererUrl": "http://www.digital-cameras-help.com/wallpaper-landscape-3.html?id=18",
                    "FileSize": 145920,
                    "FileFormat": "jpeg",
                    "Height": "900",
                    "Width": "1200",
                    "Thumbnail": {
                        "Url": "http://thm-a01.yimg.com/nimage/6e966655546f4d28",
                        "Height": "123",
                        "Width": "165"
                    "Title": "landscape 1200 13 jpg",
                    "Summary": "",
                    "Url": "http://www.digital-cameras-help.com/landscapes/landscape-1200-13.jpg",
                    "ClickUrl": "http://www.digital-cameras-help.com/landscapes/landscape-1200-13.jpg",
                    "RefererUrl": "http://www.digital-cameras-help.com/wallpaper-landscape-3.html?id=13",
                    "FileSize": 280268,
                    "FileFormat": "jpeg",
                    "Height": "900",
                    "Width": "1200",
                    "Thumbnail": {
                        "Url": "http://thm-a02.yimg.com/nimage/2c7eb863b672ec92",
                        "Height": "123",
                        "Width": "165"
                    "Title": "landscape 800 35 jpg",
                    "Summary": "",
                    "Url": "http://www.digital-cameras-help.com/landscapes/landscape-800-35.jpg",
                    "ClickUrl": "http://www.digital-cameras-help.com/landscapes/landscape-800-35.jpg",
                    "RefererUrl": "http://www.digital-cameras-help.com/wallpaper-landscape-1.html?id=35",
                    "FileSize": 101478,
                    "FileFormat": "jpeg",
                    "Height": "600",
                    "Width": "800",
                    "Thumbnail": {
                        "Url": "http://thm-a03.yimg.com/nimage/8efaed051155f5c4",
                        "Height": "116",
                        "Width": "155"
                    "Title": "landscape 1024 23 jpg",
                    "Summary": "",
                    "Url": "http://www.digital-cameras-help.com/landscapes/landscape-1024-23.jpg",
                    "ClickUrl": "http://www.digital-cameras-help.com/landscapes/landscape-1024-23.jpg",
                    "RefererUrl": "http://www.digital-cameras-help.com/wallpaper-landscape-2.html?id=23",
                    "FileSize": 72704,
                    "FileFormat": "jpeg",
                    "Height": "768",
                    "Width": "1024",
                    "Thumbnail": {
                        "Url": "http://thm-a04.yimg.com/nimage/8e632c62ce6398a8",
                        "Height": "120",
                        "Width": "160"
                    "Title": "landscape 800 30 jpg",
                    "Summary": "",
                    "Url": "http://www.digital-cameras-help.com/landscapes/landscape-800-30.jpg",
                    "ClickUrl": "http://www.digital-cameras-help.com/landscapes/landscape-800-30.jpg",
                    "RefererUrl": "http://www.digital-cameras-help.com/wallpaper-landscape-1.html?id=30",
                    "FileSize": 169164,
                    "FileFormat": "jpeg",
                    "Height": "600",
                    "Width": "800",
                    "Thumbnail": {
                        "Url": "http://thm-a01.yimg.com/nimage/7868fafbafeba600",
                        "Height": "116",
                        "Width": "155"
                    "Title": "landscape 1200 28 jpg",
                    "Summary": "",
                    "Url": "http://www.digital-cameras-help.com/landscapes/landscape-1200-28.jpg",
                    "ClickUrl": "http://www.digital-cameras-help.com/landscapes/landscape-1200-28.jpg",
                    "RefererUrl": "http://www.digital-cameras-help.com/wallpaper-landscape-3.html?id=28",
                    "FileSize": 452096,
                    "FileFormat": "jpeg",
                    "Height": "900",
                    "Width": "1200",
                    "Thumbnail": {
                        "Url": "http://thm-a02.yimg.com/nimage/c42bc3d01efd78e2",
                        "Height": "123",
                        "Width": "165"
                    "Title": "landscape 1024 35 jpg",
                    "Summary": "",
                    "Url": "http://www.digital-cameras-help.com/landscapes/landscape-1024-35.jpg",
                    "ClickUrl": "http://www.digital-cameras-help.com/landscapes/landscape-1024-35.jpg",
                    "RefererUrl": "http://www.digital-cameras-help.com/wallpaper-landscape-2.html?id=35",
                    "FileSize": 161382,
                    "FileFormat": "jpeg",
                    "Height": "768",
                    "Width": "1024",
                    "Thumbnail": {
                        "Url": "http://thm-a03.yimg.com/nimage/1852e4fc7a9aefa6",
                        "Height": "120",
                        "Width": "160"
                    "Title": "landscape 1024 31 jpg",
                    "Summary": "",
                    "Url": "http://www.digital-cameras-help.com/landscapes/landscape-1024-31.jpg",
                    "ClickUrl": "http://www.digital-cameras-help.com/landscapes/landscape-1024-31.jpg",
                    "RefererUrl": "http://www.digital-cameras-help.com/wallpaper-landscape-2.html?id=31",
                    "FileSize": 364032,
                    "FileFormat": "jpeg",
                    "Height": "768",
                    "Width": "1024",
                    "Thumbnail": {
                        "Url": "http://thm-a04.yimg.com/nimage/0e613977e04c4882",
                        "Height": "120",
                        "Width": "160"
                    "Title": "landscape 1200 35 jpg",
                    "Summary": "",
                    "Url": "http://www.digital-cameras-help.com/landscapes/landscape-1200-35.jpg",
                    "ClickUrl": "http://www.digital-cameras-help.com/landscapes/landscape-1200-35.jpg",
                    "RefererUrl": "http://www.digital-cameras-help.com/wallpaper-landscape-3.html?id=35",
                    "FileSize": 220979,
                    "FileFormat": "jpeg",
                    "Height": "900",
                    "Width": "1200",
                    "Thumbnail": {
                        "Url": "http://thm-a01.yimg.com/nimage/c5c69d3a273d0880",
                        "Height": "123",
                        "Width": "165"
                    "Title": "landscape 1200 27 jpg",
                    "Summary": "",
                    "Url": "http://www.digital-cameras-help.com/landscapes/landscape-1200-27.jpg",
                    "ClickUrl": "http://www.digital-cameras-help.com/landscapes/landscape-1200-27.jpg",
                    "RefererUrl": "http://www.digital-cameras-help.com/wallpaper-landscape-3.html?id=27",
                    "FileSize": 384204,
                    "FileFormat": "jpeg",
                    "Height": "900",
                    "Width": "1200",
                    "Thumbnail": {
                        "Url": "http://thm-a02.yimg.com/nimage/04c55aa75582b4c2",
                        "Height": "123",
                        "Width": "165"
                    "Title": "landscape 1024 33 jpg",
                    "Summary": "",
                    "Url": "http://www.digital-cameras-help.com/landscapes/landscape-1024-33.jpg",
                    "ClickUrl": "http://www.digital-cameras-help.com/landscapes/landscape-1024-33.jpg",
                    "RefererUrl": "http://www.digital-cameras-help.com/wallpaper-landscape-2.html?id=33",
                    "FileSize": 349491,
                    "FileFormat": "jpeg",
                    "Height": "768",
                    "Width": "1024",
                    "Thumbnail": {
                        "Url": "http://thm-a03.yimg.com/nimage/81646c732fd68452",
                        "Height": "120",
                        "Width": "160"
                    "Title": "landscape 1024 26 jpg",
                    "Summary": "",
                    "Url": "http://www.digital-cameras-help.com/landscapes/landscape-1024-26.jpg",
                    "ClickUrl": "http://www.digital-cameras-help.com/landscapes/landscape-1024-26.jpg",
                    "RefererUrl": "http://www.digital-cameras-help.com/wallpaper-landscape-2.html?id=26",
                    "FileSize": 297062,
                    "FileFormat": "jpeg",
                    "Height": "768",
                    "Width": "1024",
                    "Thumbnail": {
                        "Url": "http://thm-a04.yimg.com/nimage/60c7e1a5b87dca0a",
                        "Height": "120",
                        "Width": "160"
                    "Title": "landscapeStream jpg",
                    "Summary": "pastoral painting in gold frame hollyhock painting rose painting in gold frame Madonna and child oil on canvas as is landscape with stream large European scene painting and much more",
                    "Url": "http://www.coylesauction.com/img/img2009/img033109/landscapeStream.jpg",
                    "ClickUrl": "http://www.coylesauction.com/img/img2009/img033109/landscapeStream.jpg",
                    "RefererUrl": "http://www.coylesauction.com/AucPreview/AP2009/ap033109.htm",
                    "FileSize": 49459,
                    "FileFormat": "jpeg",
                    "Height": "344",
                    "Width": "450",
                    "Thumbnail": {
                        "Url": "http://thm-a01.yimg.com/nimage/934090dff7521230",
                        "Height": "107",
                        "Width": "140"
                    "Title": "DCWP 406 038 Landscape Picture jpg",
                    "Summary": "Landscape Picture 1 I took this landscape picture from a speed boat on the Okavango Delta late one afternoon It shows one of the channels in the Okavango Delta when it is in full flow The delta is one of the",
                    "Url": "http://www.africa-nature-photography.com/images/DCWP_406_038-Landscape-Picture.jpg",
                    "ClickUrl": "http://www.africa-nature-photography.com/images/DCWP_406_038-Landscape-Picture.jpg",
                    "RefererUrl": "http://www.africa-nature-photography.com/landscape-picture.html",
                    "FileSize": 60211,
                    "FileFormat": "jpeg",
                    "Height": "322",
                    "Width": "480",
                    "Thumbnail": {
                        "Url": "http://thm-a02.yimg.com/nimage/b524a62e8458d358",
                        "Height": "93",
                        "Width": "140"
                    "Title": "DCWP 406 019 Landscape Picture jpg",
                    "Summary": "Landscape Picture 7 This landscape picture of moring mist over the Kavango River in Namibia was taken just after sunrise one morning Our tent was less that ten metres from where I stood We were camping at",
                    "Url": "http://www.africa-nature-photography.com/images/DCWP_406_019-Landscape-Picture.jpg",
                    "ClickUrl": "http://www.africa-nature-photography.com/images/DCWP_406_019-Landscape-Picture.jpg",
                    "RefererUrl": "http://www.africa-nature-photography.com/landscape-picture-7.html",
                    "FileSize": 83558,
                    "FileFormat": "jpeg",
                    "Height": "322",
                    "Width": "480",
                    "Thumbnail": {
                        "Url": "http://thm-a03.yimg.com/nimage/27ef2bd37acfbb80",
                        "Height": "93",
                        "Width": "140"
                    "Title": "DCWP 506 023 Landscape Picture jpg",
                    "Summary": "Landscape Picture 5 The large Leadwood trees in this landscape picture are what caught my eye They are quite prevalent in the Moremi Game Reserve of Botswana escpecially near the North Gate campsite where",
                    "Url": "http://www.africa-nature-photography.com/images/DCWP_506_023-Landscape-Picture.jpg",
                    "ClickUrl": "http://www.africa-nature-photography.com/images/DCWP_506_023-Landscape-Picture.jpg",
                    "RefererUrl": "http://www.africa-nature-photography.com/landscape-picture-5.html",
                    "FileSize": 99532,
                    "FileFormat": "jpeg",
                    "Height": "322",
                    "Width": "480",
                    "Thumbnail": {
                        "Url": "http://thm-a04.yimg.com/nimage/17c1a79f67065d90",
                        "Height": "93",
                        "Width": "140"
                    "Title": "DCWP 506 024 Landscape Picture jpg",
                    "Summary": "Landscape Picture 6 The large Leadwood tree in this landscape picture is what caught my eye They are quite prevalent in the Moremi Game Reserve of Botswana escpecially near the North Gate campsite where this",
                    "Url": "http://www.africa-nature-photography.com/images/DCWP_506_024-Landscape-Picture.jpg",
                    "ClickUrl": "http://www.africa-nature-photography.com/images/DCWP_506_024-Landscape-Picture.jpg",
                    "RefererUrl": "http://www.africa-nature-photography.com/landscape-picture-6.html",
                    "FileSize": 93286,
                    "FileFormat": "jpeg",
                    "Height": "480",
                    "Width": "322",
                    "Thumbnail": {
                        "Url": "http://thm-a01.yimg.com/nimage/5b363b95bb9168b2",
                        "Height": "140",
                        "Width": "93"
                    "Title": "DCWP 506 005 Landscape Picture jpg",
                    "Summary": "Landscape Picture 4 I took this landscape picture depicting a large Baobab tree on Kubu Island on the Makgadikgadi Pans Botswana during June 2005 A picture utilising good light is always always better than",
                    "Url": "http://www.africa-nature-photography.com/images/DCWP_506_005-Landscape-Picture.jpg",
                    "ClickUrl": "http://www.africa-nature-photography.com/images/DCWP_506_005-Landscape-Picture.jpg",
                    "RefererUrl": "http://www.africa-nature-photography.com/landscape-picture-4.html",
                    "FileSize": 84172,
                    "FileFormat": "jpeg",
                    "Height": "322",
                    "Width": "480",
                    "Thumbnail": {
                        "Url": "http://thm-a02.yimg.com/nimage/5477f6c511630438",
                        "Height": "93",
                        "Width": "140"
                    "Title": "DCWP 410 001 Landscape Picture jpg",
                    "Summary": "Landscape Picture 2 I took this landscape picture near Grabouw on my way to the De Hoop Nature Reserve in South Africa s Western Cape I just had to stop for it Cloud formations in this part of the country can",
                    "Url": "http://www.africa-nature-photography.com/images/DCWP_410_001-Landscape-Picture.jpg",
                    "ClickUrl": "http://www.africa-nature-photography.com/images/DCWP_410_001-Landscape-Picture.jpg",
                    "RefererUrl": "http://www.africa-nature-photography.com/landscape-picture-2.html",
                    "FileSize": 77414,
                    "FileFormat": "jpeg",
                    "Height": "322",
                    "Width": "480",
                    "Thumbnail": {
                        "Url": "http://thm-a03.yimg.com/nimage/4f07caae67d26392",
                        "Height": "93",
                        "Width": "140"
                    "Title": "about landscape yard jpg",
                    "Summary": "philosophy is that the final scaled landscape plan you receive should convey your landscape ideas in a road map that will be used to transform your house and yard into your home After our design meets your expectations we will submit our bid prices to implement the design and work on packaging and phasing options We use the same bidding process whether",
                    "Url": "http://www.envconst.com/Images/about_landscape_yard.jpg",
                    "ClickUrl": "http://www.envconst.com/Images/about_landscape_yard.jpg",
                    "RefererUrl": "http://www.envconst.com/about/landscape",
                    "FileSize": 39116,
                    "FileFormat": "jpeg",
                    "Height": "315",
                    "Width": "485",
                    "Thumbnail": {
                        "Url": "http://thm-a04.yimg.com/nimage/07706b565b3f956a",
                        "Height": "94",
                        "Width": "145"
                    "Title": "landscape02 JPG",
                    "Summary": "and Monet landscapes but with an Impressionistic approach I still want to re do the water reflections from the buildings and light but for now this will have to do Landscape Landscape close up Another example of the Virtual 3 D work I have been doing is",
                    "Url": "http://www.dustinhetrick.com/art/landscape02.JPG",
                    "ClickUrl": "http://www.dustinhetrick.com/art/landscape02.JPG",
                    "RefererUrl": "http://www.dustinhetrick.com/art.htm",
                    "FileSize": 475136,
                    "FileFormat": "jpeg",
                    "Height": "960",
                    "Width": "1280",
                    "Thumbnail": {
                        "Url": "http://thm-a02.yimg.com/nimage/99ff10027365797a",
                        "Height": "123",
                        "Width": "165"
                    "Title": "landscape 800 2 jpg",
                    "Summary": "",
                    "Url": "http://www.digital-cameras-help.com/landscapes/landscape-800-2.jpg",
                    "ClickUrl": "http://www.digital-cameras-help.com/landscapes/landscape-800-2.jpg",
                    "RefererUrl": "http://www.digital-cameras-help.com/wallpaper-landscape-1.html?id=2",
                    "FileSize": 42291,
                    "FileFormat": "jpeg",
                    "Height": "600",
                    "Width": "800",
                    "Thumbnail": {
                        "Url": "http://thm-a03.yimg.com/nimage/0609a5f1103b8ee4",
                        "Height": "116",
                        "Width": "155"
                    "Title": "landscape 800 1 jpg",
                    "Summary": "",
                    "Url": "http://www.digital-cameras-help.com/landscapes/landscape-800-1.jpg",
                    "ClickUrl": "http://www.digital-cameras-help.com/landscapes/landscape-800-1.jpg",
                    "RefererUrl": "http://www.digital-cameras-help.com/wallpaper-landscape-1.html?id=1",
                    "FileSize": 129843,
                    "FileFormat": "jpeg",
                    "Height": "600",
                    "Width": "800",
                    "Thumbnail": {
                        "Url": "http://thm-a04.yimg.com/nimage/755ad7377c2f381c",
                        "Height": "116",
                        "Width": "155"
                    "Title": "landscape 1024 9 jpg",
                    "Summary": "",
                    "Url": "http://www.digital-cameras-help.com/landscapes/landscape-1024-9.jpg",
      

    Hi,
    Thank you for reporting this. The internal bug number for the issue is #2740755. The issue is currently under review and will be investigated by one of AIR team members.
    Regards,
    Catalin

  • How do I develop for multiple screen resolutions using Adobe Air

    Hi,
    I'm looking at developing mobile apps using Adobe Air but there's something I'm not quite sure. Sorry if this is a newbie question or has been repeated but I have looked at tutorials, etc but just want to get a general idea on how to prepare the assets. Here are some of my questions:-
    1) If I want to develop for the iPhone non-retina and retina resolution, do I actually need to only write the code and layout the graphics in retina(960 x 640) stage size and it will automatically scale down for non-retina resolution?
    2) How do I cater for iPhone 5 resolution? Do I actually need to swap say the background images through code by detecting the resolution size it was in? or do I actually just leave the background image longer it exceeds the stage height so when it's iPhone 5 it will show everything?
    thanks for the help!

    If you are talking about regular Flash work, and not your own code-layout application, then what happens depends on the scale mode of the stage. Typically, when doing code layout the stage is set to no_scale, and you have to do all the hard work yourself, calculating the size of things, and laying them out with ActionScript.
    If it's more of a typical Flash graphical scene there are two other scale modes that make life easier for you.
    The default scale mode is show_all. With that you will be certain to see all of the content of your original Flash stage, and if the screen is a wider ratio than your stage, the content that is off the sides of the stage will be revealed. See this app I made, that uses that technique:
    https://itunes.apple.com/us/app/meet-heckerty-funny-interactive/id514220257?mt=8
    It works well enough, I have enough extra background graphics to go out to a 16:9 screen, including iPhone 5. That particular stage is 1024x768, and it will scale all the way from iPad 3 Retina down to iPhone 3gs.
    The other scale mode that is useful is no_border. In that mode you are certain to not have any black borders around the stage. It achieves that by cropping into either the left and right, or the top and bottom, of the stage. See these apps I made, that work that way:
    https://itunes.apple.com/us/app/milkshake-mayhem/id556962979?mt=8
    https://itunes.apple.com/us/app/p.s.-snowflake-yourself/id571384475?mt=8
    In both of those cases I have content that is correct for half way between the ratio limits of 16:9 and 4:3 (or 9:16 and 3:4 for the portrait case). When the app runs on your device, some amount of the left and right, or the top and bottom, of the stage is cropped. I have enough background content for that to be ok, and all of the important content is within the middle 14:9 or 9:14 area of the screen. The stage size for the landscape app is 1680xx1080, exactly 14:9. This approach is better than the show_all one, in that the user doesn't feel like they are seeing a lot of blank space, as can be the case when viewing a 4:3 stage on a 16:9 screen.
    One last thing, even with either of those techniques the app won't fill the iPhone 5 screen. To get that to work you have to include a splash screen that is 640x1136, and name [email protected]. With that in place iOS knows to make your app use the full width or height of the iPhone 5.

Maybe you are looking for

  • How to best display/update images in gallery??

    I'm designing a site for my photography but I'm stuck. I'm new to this and trying to learn, so I'll try to explain clearly. Usually I have problems with things that sound like they should be really simple but end up with unbelievably complex answers,

  • MAC BOOK AIR CAMERA

    Hi Everbody..I was wondering if using my apple device I'm able to check the inner webcam of the other one.. practically when i leave my mac book air in one room of the house can i see using for example my i phone or my ipad the room images?Yosemite

  • This is getting annoying

    ok i tried that copypodphoto thing and it only is a trial version. and i dont have like 15 bucks for the full version. so i didnt get that. i just gave up and had it delete all my photos so i can put the other photos from my other computer to my ipod

  • Is there such a thing as a hub for a Cinema Display?

    I just resurrected a MacMini (late 2009 - which I will call MM2) & installed Snow Leopard (10.6.8) specifically to only use APPLEWORKS.  My current MacMinI (mid-2011 which I will call MM4) is now running on 10.8.3.   When I want to use Appleworks, I

  • Database sql report

    remove please Edited by: Jay on Mar 5, 2013 11:36 AM