Adobe AIR : Issue with StageVideo FullScreen on MacBook w/ Retina

Has anyone run into an issue with StageVideo running in FullScreen mode on high-res monitors, such as a MacBook Pro with retina?
The issue I'm seeing is that the video runs fine if the application is windowed, but when it goes full screen, the video display is cropped to a quarter of the MacBook Pro screen size. The rest of the viewable area is black.
Things worth knowing:
Fullscreen works perfect on lower-res monitors
This only happens on a MacBook Pro in the ADL Preview  OR  when requestedDisplayResolution is set to TRUE in the Application Descriptor file.
If requestedDisplayResolution is set to FALSE, and your run the application (outside of ADL Preview), FullScreen works fine.
I'm setting the viewport with stageVideo.viewPort = new Rectangle( 0 , 0 , 1440  , 900 );
I haven't been able to find any information out there on this.
Any help is greatly appreciated.
-m

According to the docs (StageVideo - Adobe ActionScript® 3 (AS3 ) API Reference):
The absolute position and size of the video surface in pixels.
The position of the video is relative to the upper left corner of the stage.
The valid range of the x and y properties of the viewPort Rectangle object are -8192 to 8191. Therefore, you can position the video completely or partially off the stage. You can also make the video larger than the stage if you make the width and height properties of the viewPort property larger than the stage.
It seems like you need to pass the full stage width and height to the stageView.viewPort call.  Currently you're hardcoding it to 1440 x 900, what is the actual dimensions of your screen?

Similar Messages

  • Kindle Fire & Adobe Air issues with scaling & bottom menu - GPU Mode only

    Hi,
    Long post ahead, please buckle down for a while.
    I'm having issues with the Kindle Fire and the bottom 20 pixel menu in GPU mode, CPU mode behaves correctly. The project was created with flash cs5.5, the stage size is 1024x600 and I've set the NO_SCALE flag. When the app is run on the Kindle Fire the Kindle scales it to 1024x580 for the bottom 20 pixel menu. If I create the project as 1024x580 it still scales it down and then centers it vertically introducing a 10pixel black bar at the top and I would assume a 10 pixel black bar at the bottom under their menu. In CPU mode the app is not scaled and the bottom 20 pixels is obscured.
    The problems I have encountered so far are incorrect mouse locations as reported in various mouse events. Messed up scrollRects when I try and clip something for display. Not being able to press buttons because of the incorrect mouse coordinates, the further down on the screen the more incorrect the buttons are. You can click below a button near the bottom of the screen and have it activate whereas a button at the top acts perfectly. This is due to the accumulated error value from the yPos * scaleValue.
    The mouse positions are off exactly by a scale factor of 600 / 580 (1.034).
    The video below shows the problems, sorry for the poor video handling. The red line in the video is drawn in the center of the y position detected on a mouse move and mouse down event, but shifted to the left for visibility. The center of that stylus is where it should be at all times, as you can see it isn't. You can also see displayed the buttons not working correctly, they are clearly being activated when the press on the screen is not over the button (indicated by the red line).
    The circle in the middle of the screen has it's scrollRect set to to the width and height of the circle, as you can see it is clipped.
    At the end of the video I press the power button then press it again to unlock, you can see the screen looks good for a split second then gets resized. Once resized the circle becomes clipped again. If I were fast enough I would assume the buttons would work correctly as well. Watch closely, it happens fast.
    Oh, and the app works fine on the desktop in either GPU or CPU mode. The app also works fine in GPU and CPU mode on my iPad2, Google HTC Nexus One, Nook Color and my 4th gen iPod Touch.
    Now whos issue is this? Adobes, Amazons or mine? I know what the problem is but don't know how to fix it.
    Youtube video link:
    http://youtu.be/660O3YMK9k8
    Thanks for your time!
    PS: if anyone wants the .fla for testing themselves, just ask and I will post a link to it.

    I'm going to forward this along to our android team for their review.  In the meantime, could you open a bug on this over at bugbase.adobe.com?  Please post back with the URL so that others affected can visit the bug and cast their votes.
    Thanks,
    Chris

  • URGENT: Tomcat + Adobe AIR, problem with open .doc

    Hello!
    I've got a web application (Java) in Tomcat.
    I compile using Adobe AIR sdk with this:
    adt -package -storetype pkcs12 -keystore melcos.pfx -target native MELCOS.air
    MELCOS-app.xml MELCOS.html AIRAliases.js icons
    This is my app.xml:
    <?xml version="1.0" encoding="UTF-8"?>
    <application xmlns="http://ns.adobe.com/air/application/2.5">
      <id>project.html.melcos</id>
      <name>
        <text xml:lang="it">Software M.EL.COS. - MME</text>
      </name>
      <versionNumber>1.0.0</versionNumber>
      <filename>Prova</filename>
      <copyright>Copyright</copyright>
      <initialWindow>
        <content>MELCOS.html</content>
        <title>Prova</title>
        <visible>true</visible>
        <width>1024</width>
        <height>768</height>
      </initialWindow>
         <icon>
              <image16x16>icons/logo16.png</image16x16>
              <image32x32>icons/logo32.png</image32x32>
              <image48x48>icons/logo48.png</image48x48>
              <image128x128>icons/logo128.png</image128x128>
         </icon>
         <allowBrowserInvocation>true</allowBrowserInvocation> 
    </application>
    and this is MELCOS.html:
    <html>
    <head>
    <title>M.EL.COS. - MME</title>
      <script type="text/javascript" src="AIRAliases.js"></script>
      <script type="text/javascript">
        function appLoad(){
            window.location="http://localhost:8082/MELCOS";
      </script>
    </head>
    <body onLoad="appLoad()">
    </body>
    </html>
    Now...Tomcat6029 are a Windows service and it start with user SYSTEM.
    In my Java project i build a .doc file and i try to open it directly with default windows application:
    FinalFile = "prova.doc";
    File file = new File("C:\\MELCOS\\run\\web\\tomcat6029\\webapps\\MELCOS\\fronte_quadro\\"+FinalFile);
    Desktop desktop = Desktop.getDesktop();
    desktop.open(file);
    The process start (for example WINWORD.exe) but start with user SYSTEM, and user interface of Microsoft Word don't start.
    (I've try to use getDesktop, ProcessBuilder, getRuntime without results).
    If i try to open directly .doc like browser (stop on url http://localhost:8080/MELCOS/fronte_quadro/prova.doc) Adobe AIR don't open anything.
    I've read that there is a method named openWithDefaultApplication, but i haven't find if it's possible to call this method in java file.
    Can you help me?
    I've got to start Microsoft Word (in this example) and open my files, or i've to open a pop-up like browser's "open - save as - close" window.
    Thanks.
    Morkar88

    Thanks Chris,
    i try to create file "open_document.js":
    import flash.filesystem.File;
    import flash.net.FileFilter;
    var f = air.File.desktopDirectory.resolvePath("preventivo_11.doc");
    f.openWithDefaultApplication();
    when i try to open this file in Adobe AIR (i call http://localhost:8080/MyProject/document/open_document.js"), Adobe Air open new window and with my file .js like a normal text file.
    I try also with "open_document.html":
    <html>
    <head>
    <script language="javascript">
    import flash.filesystem.File;
    import flash.net.FileFilter;
    function opendoc() {
      var f = air.File.desktopDirectory.resolvePath("preventivo_11.doc");
      f.openWithDefaultApplication();
    </script>
    </head>
    <body onLoad="opendoc()">
    </body>
    </html>
    But nothing start....
    (my file "preventivo_11.doc" is in C:\Project\tomcat\webapps\MyProject\document\)
    Why? What i have to do?
    Thanks
    P.S. i've got error with import: flash.ecc... and if i remove import, error with air.File.

  • I cannot use this version of the application Adobe Air Installer with this version of Mac OS X.

    I have Mac OS 10.5.8 and every time I try to install Air Adobe 3 I get the message
    "You cannot use this version of the application Adobe Air Installer with this version of Mac OS X." 
    Could anyone help me? 
    Jai

    Hi,
    Adobe won't be developing for 10.5.8 new features (including new runtime) only security relates updates for existing runtimes (Flash 10.3.*/Air 2.7.*). Flash 11/Air 3.0 are only supported on 10.6.8.*/10.7.*, see:
    http://kb2.adobe.com/cps/916/cpsid_91694.html#main_system_requirements
    There is recent,  lengthy thread on forums with Adobe's employees statements on that subject (support/development for 10.5.* and newer) but I cannot find it quickly as basically forum search is broken/hard to do,
    regards,
    Peter

  • Having start-up issues with my 1st gen Macbook Pro

    Hi everyone. I just started having start-up issues with my first generation Macbook Pro. It was working fine the other day when I last used it, but today I went to use it and it wont load up to my desktop...? It starts up (grey screen with the little swirly bar under the apple,) then it goes to a blue screen, then my background and dock appear, then (before any of my desktop files even show up,) it goes to a blue screen (that brightens up and then dims a little,) and it just keeps showing this with a little swirly progress symbol (shows when the screen is darker blue, then disappears when the screen is a brighter blue.) I've included a video that I took with my iPhone to show it situation. Any ideas as to what's wrong with it? Thanks in advance!
    http://youtu.be/oDCfHM-Zoes

    Safe Boot by restarting your computer while holding down the "shift" key.  Safe booting disables all nonessential processes, often times allowing you to start up when you would otherwise crash.
    As of OS X 10.5.6 Safe Boot deletes the dynamic loader shared cache location in the /var/db/dyld directory.  A corrupt cache here can cause the blue screen crash.  Once you restart normally, the cache will be recreated.  This should take care of the issue.
    http://support.apple.com/kb/HT1564
    http://support.apple.com/kb/HT1455
    Use Software Update to update your os to 10.6.8 and anything else that needs to be updated.

  • Testing adobe air application with qtp

    Hi,
    We want to test our adobe air applications with quicktest. Where can I find addin for QTP and how do the AIR applcation have to be developed? What have to be done? There is no much info in google about this.
    Thank you in advanced!

    QTP does not currently work with AIR applications.  It will work with Web deployed FLEX applications.
    I have been told by Adobe that whilst they're not sure of an exact date, they do believe that QTP will be supported in AIR with Flex 4.
    You might want to look at some alternatives:
    http://code.google.com/p/fluint/
    http://code.google.com/p/flexmonkey/
    http://www.borland.com/us/products/silk/silktest/index.html

  • How well does Adobe Air work with the MacBook Pro?

    If I install a program that uses Adobe Air will it affect my MacBook Pro?

    I have several other Macromedia applications - but not Air. But if the other applications are an indication, boot is going to be slow (around a minute); Air's dependence on Flash will guarantee relatively slow performance. As you know, most other applications boot in seconds.
    Your best solution would be to download the free part of the programs to determine if you find the performance acceptable.

  • AIR bug with iOS fullscreen video! (easy repro)

    Here's a bug with fullscreen AIR apps not dealing with iOS fullscreen video resize. Easy repro:
    1. Create an mc with a background graphic aligned with the top and bottom of the stage. (This is so you can easily see the bug.)
    2. Add a stageWebView and load an html page with embedded video. (or just load a video directly)
    3. Play video and enable fullscreen mode.
    4. Rotate device 90 degrees while in fullscreen mode and then hit "Done" button to return to stage (exit fullscreen).
    5. BUG: Stage is now "pushed down" and off-screen. (even though the mc still traces x = 0)
    Conclusion: the display bug occurs when the user exits the iOS native player fullscreen mode from a different orientation then they started with (common if the original aspect ratio was portrait)
    Can someone else please confirm this? (The amount of stage "push" appears to corrolate with the height of the iOS status bar.)
    Thanks.
    PS. You don't necessarily need to load an html page. You can just have stageWebView load a video directly and experience the same result.
    PPS. I also tried using the new UIWebView Native Extension and am seeing the same thing, so this is really looking like an AIR/Flash bug with the iOS native player.

    A simpler summary for this issue:
    If the device has been rotated since entering Fullscreen native player, a fullscreen app will be "pushed downwards" and off-screen slightly.
    BUG: Adobe AIR app does not stay in fullscreen mode after such and event, ruining graphic UI for fullscreen apps.
    Simple workaround: listen for on orientationChange and if stage.displayState == StageDisplayState.NORMAL, set to stage.displayState = StageDisplayState.FULLSCREEN.
    However, iOS native player will lose traditional status bar appearance (and risk rejection by Apple??)
    Complex workaround (as mentioned earlier) will keep the native player's status bar but result in the app's screen "flashing" upon resizing the stage.
    Please help fix this bug by commenting in my bug report. Thanks again.
    https://bugbase.adobe.com/index.cfm?event=bug&id=3486264

  • Accidentally associated Adobe AIR file with Acrobat, now an otherwise easily fixed problem has been causing me far too much anger.

    I accidentally associated an Adobe AIR file to open Adobe Acrobat in it's stead, now an otherwise easily fixed problem has been causing me far too much anger.
    Basically I downloaded an .air file after recently reformatting my computer, and I tried to open it with Acrobat. Now, since there is no actual application and or shortcut created by AIR I can't just tell the file to use that. I've found that I'm not alone in this issue, have tried a few things I've read on both this forum and others, and have come to no resolution as of yet. This file isn't anything of any great significance, but it bugs me so much that at this point I just want to know how to fix this and win this little battle.
    Thanks in advance to anyone willing to help.

    Thank JJMack - that has helped me get closer to the problem.
    I opened the resource monitor and you can see a screenshot of what is going on when I try to save a simple, 9 Kb graphic. (I'm saving an RGB JPG, not a PNG or animated GIF file. Doing anything complex / memory intensive than saving or simple edits in PS is almost impossible.)
    As you can see from the screencap below, when I save (it doesn't make a difference if it is save vs. save to web or a network or local drive) Photoshop becomes unresponsive. (From past experiences, if I try to switch to a non-Adobe program it will also freeze and sometimes crash.) When PS becomes unresponsive, the NT Kernel & System immediately goes to the top of the list and uses 200+ threads.
    From there Photoshop will typically be frozen for about a minute, then will recover and take another minute or two to finish the save. At that point PS is okay, but the rest of the computer is still frozen with CPU oscillating up to almost 100%.
    As soon as the NT Kernel & System settles down, everything is back to normal again (as long as I haven't used other programs, which in one case required a hard reboot.)
    It is pretty clear the problem is rooted in Adobe / Window 7 as I only have this problem with Adobe programs. (Illustrator isn't as bad, but I've had problems with it as well.)
    The question is: How do I fix this, as it is killing my ability to work?
    Thanks! Julie

  • Adobe Connect issues with Windows 7

    Has anyone found a solution to the problems Adobe Connect has with Windows 7?

    Sounds like something is blocking network traffic. I'm not aware of any Windows 7 specific issues. I've used Windows 7 with connect for 2 years with no Windows specific issues.
    I'd call support at 800-945-9120 and see if they can indentify the issue and give you a resolution.

  • Adobe 9 issues with forms in Acrobat Reader 7

    I've been reading up on this forum as to why the adobe rights are disabled after a user saves their data in Reader.  I have been adding form fields in Adobe Standard 9 then save the file,  test it in Reader, then Extend the Forms Fill-In for Adobe Reader and save the file with a slightly different name. The only usage rights that are allowed is to Save Form Data.  When I test the file in Reader 7, I can save the data but when I go into the document to make sure my data is there, I get that dreaded and popular message "Adobe Rights have changed and are no longer valid dialog box...
    I never changed the original extended file to cause this..even when I don't add data but save to a new file anyway I lose the writable functionality.
    A side note, I do not use LiveCycle and have been asked not to when creating these forms.
    I did not have any problems with the forms that I had other people create and extend in Adobe Pro 8.  It seems to be a Standard 9 and Pro 9 problem.  Or, it could very well be me!
    I use Reader 7 to test because these forms are for a volunteer organization and there are users on some early versions of Reader.  II do not use earlier versions of Reader.  This doesn't seem to be an issue in Reader 9.  I cannot vouch for Reader 8.
    I just had one of my form writers take my form that was done in Standard 9 and Extend Forms Fill-In via Adobe Pro 8.  She initally received a message stating that the file appears to use a new format and it may not open or display correctly.  I then got that same message when opening the extended version of the file.  The document rights on the new form allow me to add comments and markup, a digital signature and save form data. Once I fill out the fields and try to save, also get another dialog box telling me that I need Adobe Standard or Professional to save (in this case it was 7 since I'm testing in Reader 7).
    The forms that I am creating are initally PDFed by another party.  The orignal forms are created in QuarkXpress 4.1 and PDFed using Acrobat Distiller 4.0 for Macintosh.  I retrieve the files from a web site and save them to my hard drive to work on them.  They are shared via email.
    Any help would be greatly appreciated.  I've spent the last week researching but no anwers to help me solve this particular issue with 9.

    Interesting.  I did just do the Reduce File Size and extended the document and there were no dialog boxes when I saved my data.  The file size got larger instead of smaller and I received the message at the end of the Reduce File Size cycle that said " Enforcement of compatability to an earlier version of Acrobat has increased the size of some images".  There is an image in the file, not one that I added, but from the original document.  No change to the image either.  No biggie to me.  As long as my users can fill out the form and come back to it later to make changes, I'm happy!
    Thank you.  I think that solved it!

  • Adobe Bridge issue with index.html files

    Hi, I have a perplexing problem.... Three weeks ago, I created a web photo gallery in Bridge. I transferred it to my website via FTP and it worked like a charm. Three days later I created another web gallery transferred it to my website using my ftp and the address of what I uploaded takes me to a blank page. I contacted my web hosting support and was told it looks like an issue with my index.html file. Here is a link to the gallery that is working: www.janieblanchard/com/galleries/prettylights/index.html
    Here is the link to the site that is not working:
    www.janieblanchard.com/galleries/macrogallery/index.html
    Any advice would be so helpful, I've spend too many hours trying different galleries and uploading multiple times.
    Thanks!

    What exact camera make and model?
    What specific, exact version of Adobe Camera Raw (ACR) plug-in?
    What specific, exact versions of Bridge and of Yosemite?
    BOILERPLATE TEXT:
    Note that this is boilerplate text.
    If you give complete and detailed information about your setup and the issue at hand,
    such as your platform (Mac or Win),
    exact versions of your OS, of Photoshop (not just "CS6", but something like CS6v.13.0.6) and of Bridge,
    your settings in Photoshop > Preference > Performance
    the type of file you were working on,
    machine specs, such as total installed RAM, scratch file HDs, total available HD space, video card specs, including total VRAM installed,
    what troubleshooting steps you have taken so far,
    what error message(s) you receive,
    if having issues opening raw files also the exact camera make and model that generated them,
    if you're having printing issues, indicate the exact make and model of your printer, paper size, image dimensions in pixels (so many pixels wide by so many pixels high). if going through a RIP, specify that too.
    etc.,
    someone may be able to help you (not necessarily this poster).
    a screen shot of your settings or of the image could be very helpful too.
    Please read this FAQ for advice on how to ask your questions correctly for quicker and better answers:
    http://forums.adobe.com/thread/419981?tstart=0
    Thanks!

  • Adobe CS3 Issues with Snow Leopard 10.6.1

    After spending an initial $1,800.00 for CS3, I'm not dropping another $40
    0 to $500, just so I can use them under Snow Leopard. Although, I'm hearing a lot of issues with CS4 and Snow Leopard, too.
    The problem I have found so far is that when any one of the CS3 applications attempts to check for "Updates...", they crash. I'm unable to update each of the CS3 applications from the original versions on my DVD.
    I receive a dialog box that states that "Adobe Updater" quit unexpectedly.
    Apple and/or Adobe MUST fix this. I have a newer Intel-based iMac. I completely reinstalled the Mac OS X to Snow Leopard and installed the Adobe apps on a clean computer. ALL of my other applications from other manufacturers are running fine

    Can you get your updates from, say, [here|http://www.adobe.com/cfusion/search/index.cfm?loc=en_us&term=adobe%20upda tes%20photoshop%20cs3&cat=support]. Check fast these are search results. To reproduce what I found, I went to Adobe.com and searched on Adobe updates Photoshop CS3. That's the only CS3 program I searched on.
    Message was edited by: donv (The Ghost)

  • Issues with exporting video from MacBook Pro to flash drive

    I cannot sucessfully transfer [export] video taken on my gopro camera, from my MacBook Pro to any flash drive and play them on other computers.  For some reason the files are not playable, even with quicktime.  They will not play with ANY of my video softwares such as divx or any AVCHD software on a windows computer.  I need to make a presentation for a club trip in a few days! Can any one please suggest what is wrong?  They play on the Mac using Flip player but not quicktime!
    Oh, and I don't have issues with transfering or exporting Jpegs or other photo formats.  Only video.
    Message was edited by: gmob25

    hmmm.. the files from GoPro are already mp4 format.  The Flash is already FAT32, brand new 16gig...
    I am new to Macs but have no problems with PC's.  I suspect that because the files are exporting as shadowed files which won't play and are very small kb files, yet they are actually in excess of 140 mb each that it might have something to do with the iphoto software?  That's where the pics and video are, they imported to there by default, not to a folder in the home folder [which is where I would have expected them to be]
    By the way, the GoPro is already in mp4 format so it is easy when transferring to computers. No need to convert. I tried converting them to see what the outcome might be, and none worked!  I tried every format I could find using Video converter ultimate software, which is excellent.
    And the problems began when quicktime wouldnt play the file, the screen was black.

  • Adobe flash issues with both IE6 and Firefox

    I just installed adobe flash 9 on my win2k computer. When I
    try to go to www.yourminis.com I get two different results, in IE6
    I start to get a web page, but then IE freezes. In Firefox, I get a
    big blue quicktime Q the blinks a bit, then a question mark
    superimposes over the Q and nothing else happens.
    I also cannot view this page under Firefox in Freespire
    Linux, but there, it tells me I don't have a new enough version of
    Flash Player, but I downloaded and installed the newest version
    available for Linux, and I tried both the normal automatic install
    and the manual install (which was a pain in the butt because
    Freespire has no admin log in, and you have to do all your copying
    of files from a command line using the sudo command...)
    Why is this happening? I even have an issue with flash and
    the yahoo home page, in IE6 it works fine, but in Firefox, where
    you normally see the yahoo logo at the top of the page, instead you
    see the big blue Quicktime Q and then the question mark, and the
    yahoo logo never comes up (this isn't a big issue, I don't need to
    see the animated yahoo logo, but since Firefox is doing the same
    thing on www.yourminis as it is with the Yahoo logo animation, I
    thought it might be significant)
    I even disabled ALL file types in Quicktime's settings except
    Quicktime Movies format, because QT won';t LET me disable that one.
    Still having the same problems.
    Oh, and all this is happening under Administrative User, with
    full priveledges in Win2k, so don't tell me I need to be admin or
    something like that.

    This should be the <b>about:crashes</b> page.
    If you have submitted crash reports then please post the IDs of one or more crash reports that have this format:
    *bp-xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx
    You can find the IDs of the submitted crash reports on the <i>about:crashes</i> page.
    *You can open the <b>about:crashes</b> page via the location bar, like you open a website.
    See:
    *http://kb.mozillazine.org/Mozilla_Crash_Reporter
    *https://support.mozilla.org/kb/Mozilla+Crash+Reporter
    You can check for problems with current Flash plugin versions and try these:
    *disable a possible RealPlayer Browser Record Plugin extension for Firefox and update the RealPlayer if installed
    *disable protected mode in Flash 11.3 and later
    *disable hardware acceleration in the Flash plugin
    *http://kb.mozillazine.org/Flash#Troubleshooting
    *http://helpx.adobe.com/flash-player/kb/flash-player-113-crash-mozilla.html

Maybe you are looking for

  • Using predefined JDBC database connection in runtime for BC4J

    I've created an aplication using BC4J context, however I want to have several distinct users acessing this aplication, so I create the connection to the database using stantart JDBC 2.0, and now I want my application to use this connection instead of

  • CE integrated in PE

    Is it possible to create MPLS network only with the use of P and PE routers? In other words, is it possible to integrate the functionality of CE routers in PE routers. In this case PE will act as CE and PE. The idea behind this is that we are trying

  • Excel file upload restriction

    Dear, I have developed a object which upload any type of file( mainly excel file ) form desktop. Now i want to restrict user to upload the excel file , if that file is open in desktop. Please give me idea how i ll solve this issue ?????? Thanks & Reg

  • Photo organization in Finder

    Hello all. At some random point iphoto stoped sorting my files by date and started sorting them by roll number. It used to sort it by year - month - day. Now there is just roll numbers. Does anyone know how to change this setting?

  • Reversing Order of Slides in Slideshow

    We were finalizing a slideshow and went into Settings and must have accidentally clicked some shortcut - our entire 124 slide slideshow reversed in order. Does anyone know what happened? More important, how can we reverse this? Thanks.