SerialElement and RTMPPosterFrame sizing issue

Ok, I have figured out why I can't get ScaleMode.LETTERBOX to work properly.  It's because the MediaPlayerSprite never seems to know the height of the SerialElement, and sets it to 0 ... which then screws up any ScaleMode you would like to use, except for ScaleMode.NONE.
Is there a fix that could be made for this?  Or is there something I could try temporarly until this is resolved?
Thank you!

You can see the problem in your own ExamplePlayer.  Just modify the "MainWindowLayout.mxml" so that the MediaPlayerWrapper is added to a Canvas container:
<!-- Center (Player) Region -->
     <mx:Canvas id="container" width="320" height="240" backgroundColor="0x0096ff" horizontalCenter="0" verticalCenter="0">
          <players:MediaPlayerWrapper
               id                         ="mediaPlayerWrapper"
               top                         ="0"
               left                         ="0"
               bottom                         ="0"
               right                         ="0"
               />
     </mx:Canvas>
In MainWindow.as, change the ScaleMode property to ScaleMode.LETTERBOX.  Run the app and go to the" RTMP Poster Frame" example you have made.
You will see what I mean.  If you would still like for me to file a bug, that's no problem.

Similar Messages

  • IMac desktop and dock sizing issues

    I have been having an issue recently when booting my iMac. The dock and the background wallpaper show in about 2/3rds of the screen size (see attached pic). This has only happened in the last fortnight. Sometimes the dock will then revert to normal size but the background does not. In system preferences it does not allow me to change the wallpaper - basically nothing happens.
    Is there a fix for this - or can anyone advise?
    thanks

    Might be corrupted preferences ...
    Open the Finder.
    From the Finder menu bar click Go > Go to Folder
    Type or copy paste the following;
    ~/Library/Preferences/com.apple.dock.plist
    Click Go then move the com.apple.dock.plist file to the Trash.
    Do the same for:  ~/Library/Preferences/com.apple.desktop.plist
    Restart your Mac.
    See if that made a difference.

  • Croping and sizing issues

    I have been using lightroom 4 for about 5 months.  But I am having issues with croping and sizing of pictures.  When I use the crop tool it does not always draw the picture in closer. I do shoot in RAW and not in JPEG.    I was wodering if there is a setting that I am not using or its not avaiable.  Also when I export out of lightroom4 and convert them from RAW to JPEG I have sizing issues depending on what size the customer orders.  I have tried to export them out at certain sizes but its still not correct.  The only way I have found to do it is going into photoshop and sizing them correctly but its very time consumeing .  Any help would be great!!

    You didn't tell us the desired output. All you said "...but its still not correct". What output are you trying to obtain?
    Also, what do you mean "When I use the crop tool it does not always draw the picture in closer"? Normally, you drag a corner (or corners) of the crop rectangle to crop tighter. Are you doing this? Is it not working? Explain.

  • How do I avoid sizing issues with a Bevel?

    I am designing a logo for a startup business, and a beveled filter really looks nice for this particular company. The client really likes what I came up with. The problem is the filter seems to cause sizing issues. Enlarging it is creating ugly pixelation. Is there a method for avoiding this, or can I simply not use a bevel?
    Thanks.

    In the preferences check scale strokes and effects

  • CompositionElement sizing issue needs to be addressed.

    Ok, so it's not just the PosterFrame and VideoElement inside a SerialElement that's sizing wrong.  It's anything inside a Parallel or Serial Element that includes an element with a temporal trait, and a static element such as RTMPPosterFrameElement, PosterFrameElement, or ImageElement.
    I just tried to use ScaleMode.LETTERBOX with a ParallelElement that included a progressive AudioElement, and ImageElement.  The ImageElement does not size properly, and can be replicated in your ExamplePlayer flex project.
    Just add the MediaPlayerWrapper to a container with a smaller fixed size (like a canvas container at 320x240 ).  You will notice that no Serial or Parallel Element with a static element will scale properly.
    This needs to be addressed.  The direction for this functionality is great!  Having a Posterframe for Audio and Video is a must ... but it currently does not size properly.  The only acceptable ScaleMode is NONE.

    The Layout system was created after our UI components, and a separate UIComponent was created to work with the Layout system.  We have a backlog item to fix this in the current sprint, starting today.  I have a work around below which demonstrates how to use this little know component call a RegionGateway.   Cheers!
    <?xml version="1.0" encoding="utf-8"?>
    <mx:Application xmlns:mx="http://www.adobe.com/2006/mxml"
    layout="absolute"
    creationComplete="init()"
    xmlns:players="com.adobe.strobe.players.*">
    <mx:Script>
    <![CDATA[
    import org.osmf.media.MediaPlayer;
    import org.osmf.metadata.Metadata;
    import org.osmf.gateways.RegionGateway;
    import org.osmf.layout.RegistrationPoint;
    import org.osmf.display.ScaleMode;
    import org.osmf.layout.LayoutUtils;
    import org.osmf.proxies.TemporalProxyElement;
    import org.osmf.utils.URL;
    import org.osmf.media.URLResource;
    import org.osmf.image.ImageLoader;
    import org.osmf.image.ImageElement;
    import org.osmf.composition.SerialElement;
    private static const REMOTE_IMAGE:String = "http://mediapm.edgesuite.net/osmf/image/adobe-lq.png";
    private static const REMOTE_IMAGE2:String = "http://mediapm.edgesuite.net/strobe/content/test/train.jpg";
    private var region:RegionGateway;
    private var serial:SerialElement;
    private function init():void
    serial = new SerialElement();
    serial.addChild(new TemporalProxyElement(5, new ImageElement(new ImageLoader(), new URLResource(new URL(REMOTE_IMAGE)))));
    serial.addChild(new TemporalProxyElement(5, new ImageElement(new ImageLoader(), new URLResource(new URL(REMOTE_IMAGE2)))));
    serial.addChild(new TemporalProxyElement(5, new ImageElement(new ImageLoader(), new URLResource(new URL(REMOTE_IMAGE)))));
    serial.addChild(new TemporalProxyElement(5, new ImageElement(new ImageLoader(), new URLResource(new URL(REMOTE_IMAGE2)))));
    for( var itr:Number = 0; itr < serial.numChildren; ++itr)
    LayoutUtils.setLayoutAttributes(serial.getChildAt(itr).metadata, ScaleMode.LETTERBOX, RegistrationPoint.CENTER);
    LayoutUtils.setRelativeLayout(serial.getChildAt(itr).metadata, 100, 100, 0, 0);
    region = new RegionGateway(serial.metadata);
    wrapper.addChild(region);
    serial.gateway = region;
    var mediaPlayer:MediaPlayer = new MediaPlayer(serial);
    invalidateDisplayList();
    protected override function updateDisplayList(w:Number, h:Number):void
    super.updateDisplayList(w,h);
    if (region)
    LayoutUtils.setAbsoluteLayout(region.metadata, stage.stageWidth, stage.stageHeight);
    ]]>
    </mx:Script>
    <mx:UIComponent
    id="wrapper"
    width="100%"
    height="100%"
    />
    </mx:Application>

  • Sizing Issue

    I'm doing a project for school and having some sizing issues
    with my pages. earlier in the project my partner and I had some
    major issues with style sheets and banner headings, but now
    whenever we preview a page it changes size. We have about 10 pages
    and when you change from page to page the main text area either
    becomes really big, shrinking the other text areas, or becomes
    extremely small letting the other text areas take over. Can anyone
    tell me what we are doing wrong and how to dix this problem?

    Can you post a link to these pages, please?
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.dreamweavermx-templates.com
    - Template Triage!
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    http://www.macromedia.com/support/search/
    - Macromedia (MM) Technotes
    ==================
    "luv4dirish" <[email protected]> wrote in
    message
    news:ekhd19$abb$[email protected]..
    > I'm doing a project for school and having some sizing
    issues with my
    > pages.
    > earlier in the project my partner and I had some major
    issues with style
    > sheets
    > and banner headings, but now whenever we preview a page
    it changes size.
    > We
    > have about 10 pages and when you change from page to
    page the main text
    > area
    > either becomes really big, shrinking the other text
    areas, or becomes
    > extremely
    > small letting the other text areas take over. Can anyone
    tell me what we
    > are
    > doing wrong and how to dix this problem?
    >

  • Cluster setup and APS sizing

    Hi,
    I have 2 windows servers here with BI 4.0 SP2 installed on each of them and I have clustered the two CMS. Now, in CMC, I see 18 servers each for each node - so total of 36 servers that are running and enabled. ( I am talking about APS, AJS, CMS, IFRS, OFRS, dashboard servers etc.....). My questions are:
    1) Should I leave them all enabled and running at all times ? my understanding is that I should, because that is how the load balancing and failover will happen.  But at a couple of forums, I have read that some people leave the servers of one node off.
    2)I read in some forum that by clustering the two bobjs on two servers, basically only the CMS is being load balanced. Is that true ?? Does this mean that other servers like APS, AJS, Dashobard server, crystal server and the corresponding services within them are not really being load balanced even though both are running at the same time ?
    3) My installation is default and we havent gone live yet. I havent really created or modified any of the servers like APS etc. but I am reading that in your production system, you should create multiple APS servers and distribute similiar services among them ? is this true ? Note # 1580280 and the sizing companion for BO 4.0 talks about it too.Should i really worry about this even if I am only going to have 100 users in production ?
    Thanks,
    Jason

    1) Should I leave them all enabled and running at all times ? my understanding is that I should, because that is how the load balancing and failover will happen. But at a couple of forums, I have read that some people leave the servers of one node off.
    You should stop and disable all default APS and AJS servers and then create Specific APS/AJS servers only with services that you need.
    There are several KB's on APS issues in BI4 and most are resolved with splitting them up.
    Non APS servers you should stop those that are not part of your reporting requirements.
    2)I read in some forum that by clustering the two bobjs on two servers, basically only the CMS is being load balanced. Is that true ?? Does this mean that other servers like APS, AJS, Dashobard server, crystal server and the corresponding services within them are not really being load balanced even though both are running at the same time ?
    That is not true. When 2 BI4 nodes are clustered , over time the load of each service is balanced.
    3) My installation is default and we havent gone live yet. I havent really created or modified any of the servers like APS etc. but I am reading that in your production system, you should create multiple APS servers and distribute similiar services among them ? is this true ? Note # 1580280 and the sizing companion for BO 4.0 talks about it too.Should i really worry about this even if I am only going to have 100 users in production ?
    Yes, the default APS are not good at all and should never be used in the production, even if you only have 5 users

  • [svn:fx-trunk] 5367: The changes here are mostly fixing some sizing issues.

    Revision: 5367
    Author: [email protected]
    Date: 2009-03-17 15:26:35 -0700 (Tue, 17 Mar 2009)
    Log Message:
    The changes here are mostly fixing some sizing issues.
    For the FlashContainerPlaceholder, the first child is now MyFlexContentHolder, which extends mx.flash.FlexContentHolder but meets the invariant that it has 1 child and that child is FlexContentHolderThumbnail, which I?\226?\128?\153ve added as a swc to the project. I changed this by accident last time to refer to mx.flash.FlexContentHolder, when it should've referred to a concrete instance created by Flash from a swc. I also added a chrome of 151x151 to match the FlexContentHolderThumbnail since otherwise the container itself would have no chrome at all, and this let?\226?\128?\153s it size correctly.
    Also, for sizing, in a container, rather than sizing to the size of the chrome, I now size to the size of the FlexContentHolder thumbnail that all FlexContentHolder?\226?\128?\153s have. This means in ContainerMovieClip, I don?\226?\128?\153t need to override bounds anymore.
    ContainerMovieClip now implements IVisualElementContainer.
    Also, I fixed a resizing event bug in UIMovieClip where the resize event was getting dispatched more than once.
    QE Notes: -
    Doc Notes: -
    Bugs: SDK-19271, SDK-19788, SDK-19789
    Reviewer: Glenn
    tests: checkintests
    Ticket Links:
    http://bugs.adobe.com/jira/browse/SDK-19271
    http://bugs.adobe.com/jira/browse/SDK-19788
    http://bugs.adobe.com/jira/browse/SDK-19789
    Modified Paths:
    flex/sdk/trunk/frameworks/projects/flash-integration/src/mx/flash/ContainerMovieClip.as
    flex/sdk/trunk/frameworks/projects/flash-integration/src/mx/flash/FlexContentHolder.as
    flex/sdk/trunk/frameworks/projects/flash-integration/src/mx/flash/UIMovieClip.as
    flex/sdk/trunk/frameworks/projects/utilities/build.xml
    flex/sdk/trunk/frameworks/projects/utilities/src/FlashComponentPlaceholder.as
    flex/sdk/trunk/frameworks/projects/utilities/src/FlashContainerPlaceholder.as
    Added Paths:
    flex/sdk/trunk/frameworks/projects/utilities/libs/
    flex/sdk/trunk/frameworks/projects/utilities/libs/FlexContentHolderThumbnail.swc
    flex/sdk/trunk/frameworks/projects/utilities/src/MyFlexContentHolder.as

    Hello Everyone,
    We request you all to try your applications with http://labs.adobe.com/technologies/flashplatformruntimes/air3-5/
    Release Notes - http://labsdownload.adobe.com/pub/labs/flashplatformruntimes/shared/air3-5_flashplayer11-5 _releasenotes.pdf
    Please let us know how it goes.
    -Thanks
    Pahup

  • Gmail/Exchange email and calendar syncing issues

    I have wiped my email accounts several times and entered in my data in the various ways as shown through the forums but my email accounts do no sync properly whether it is manual or active synced.
    I read my emails in my gmail and my Microsoft exchange account and will delete or file them away but then when I check my accounts on my desktop, they are not synced as I've done so on my phone. I've also noticed that my calendars are not synced correctly either.
    Could someone help me understand why and how these issues can be fixed? I'm in meetings for most of the day so I rely on my phone to keep me mobile. Was this a bad purchase?!?!

    Hi JadeyMU,
    How do you have your Microsoft Exchange account configured on your BlackBerry Z10? Are you using ActiveSync, BlackBerry Enterprise Server (BES), IMAP or POP?
    Thanks.
    -CptS
    Come follow your BlackBerry Technical Team on twitter! @BlackBerryHelp
    Be sure to click Kudos! for those who have helped you.Click Solution? for posts that have solved your issue(s)!

  • My experience with Apple TV and HDMI/HDCP issues

    I am convinced that it is the software update to 4.2.2 from 4.2.1 that is causing this issue.  All forms of applications only worked once for me and then it reverted back to HDCP issues.  I read several postings everywhere including plenty at Apple's forum and AVS where people were very frustrated with this HDCP issues.  Anyways, here is what I did before taking it back to Apple store....I bought AUVIO high speed cables from Radio Shack which is rated very high and tried that and I still got HDCP issues when using NetFlix or AirPlay from iPad.  Youtube from Apple TV always worked well without HDCP complaints.
    I packed everything back and took it to Apple Store (you can return without re-stocking fee up to 14 days from the day of purchase).  After 14 days, you cannot even return it and you can ONLY fix it.  I waited for a Technician.  They heard my complaints but didn't refute any of it (possibly because they have had numerous complaints on this product).  It took 5 minutes inside for them to test and see similar issues with the box that I had.  So, they have swapped it for a new box.  Before I left the store, I checked the settings including software version and Audio/Video settings in the Apple TV that is connected at the store.  I found three main differences none of which the Apple customer service staff agreed could be the reason for my problems (surprise!!)
    1.  The software update from the shelf and the one they were using was NOT updated to 4.2.2 (it was still running 4.2.1)
    2.  Because of the software update, the Audio/Video setting for HDMI had the options to toggle between Auto, RGBy, RGBhi & RGBlo bandwidth.  I believe this was in place to make the HDMI interface output as component with higher or lower bandwidth but the newer update will ONLY give you the Auto option (!!!)
    3.  They had this directly Ethernet wired and not through Wireless network and were recieving the all the full bar strength signals.  On the box that I returned, eventhough I have 18 Mbps speed at the house (any given time of the day), the Network speed test was taking a long time.  Moreover, after the Apple TV network test, it doesn't spit out the outcome of the tests (a BIG bummer and useless for testing).
    Anyways, I took the new box and hooked it up directly to my SONY BRAVIA XBR3 TV to one of the HDMI ports, disabled the feature to send or recieve data to Apple directly and did NOT update the software.  It worked fine and have tested all of the options.  From what I have read so far (I have only spent 30 hours of my weekend on this when Apple product hookups are supposed to take 5 minutes ONLY), there is NO guarantee that it will work continuously as people have had things work on them for 6 months and then suddenly have the HDCP issues.
    Will wait to see....if it continues to work....

    I figured it out. Had to go to general settings on the main screen and restart. Synch of audio is much better.

  • I have a serious (and bizarre!) issue with my novation impulse (Although i've tried it with two other keyboards and i still have the same problem) and its compatibility with mainstage 3

    i have a serious (and bizarre!) issue with my novation impulse (Although i've tried it with two other keyboards and i still have the same problem) and its compatibility with mainstage 3.
    the problem is best explained on the following one - page thread: 
    https://discussions.apple.com/thread/3951518?start=0&tstart=0
    (Clearly i'm not alone in this problem, although i think i figured out what's going wrong a little more than he did...read on!)
    his solution, to put mainstage in jump mode, is very unsatisfactory to me, as it bounces all of a sudden to drastically different settings.
    basically, my analysis is that my controller is NOT receiving MIDI date from mainstage.  in other words, mainstage knows what my controller is doing, but my controller doens't know what mainstage is doing.
     let's say i turn the knob all the way to the right ... 127...and the virtual fader goes to the right like it's supposed to. 
    now...next...let's say i change to a different patch, where that same VIRTUAL fader is not at the max clockwise position..maybe it's only at 1pm.  now when i turn the physical knob to the RIGHT, the midi data is still at 127 on the controller!  it didn't "reset" to sync up with the new level (say 80 or so) setting on the new patch.  so i can't increase that new setting of 80 by continuing to turn the knob to the right.  i have to turn it all the way to zero,...and then continue PAST zero until the controller thinks that IT is at 0...at that point the controller and mainstage are in agreement, and things work fine....so bascially, the keyboard thinks the level is at max...but mainstage thinks the level is at 1pm.
    i am using Logic 9, and i have a macbook pro 2.9 Ghz I7 with 8 gigs of memory and OS X 10.8.4

    Hi Josh,
    Thanks for taking the time to contact us here a Novation for technical support. Lets continue to correspond via email so we can get your issue resolved.
    Thanks.
    Mike Towns

  • Interesting and an  imporatant issue at sales order schedule line.

    hi all,
    interesting and an  imporatant issue at sales order schedule line.
    i created a sales order with 10 qty.and the system proposed a two schedule lines.
    let's say to order created date is 27.11.2008.and the requested delivery date is 27.11.2008.
    but the stock is not available today then the system proposed two more schedule lines apart from the 27.11.2008.so now there are three schedule lines like below.
    schedule line date                      Material availabilyt date   delivery date                   
    27.10.2008 with zero quantity.     
    28.10.2008 with 5 qty.                28.10.2008                     29.10.2008
    02.10.2008 with 5 qty.                02.10.2008                     03.10.2008
    now the delivery and pgi already for the schedule line 28.10.2008.
    then when i run the availability check on 01.11.2008 system is over writing the material vailability date as today at the scheduleline number two.
    now i can able to view only two schedule lines only.
    schedule line date                      Material availabilyt date   delivery date                   
    28.10.2008 with 5 qty.                01.11.2008                     29.10.2008
    02.10.2008 with 5 qty.                01.11.2008                     02.11.2008
    now my concern when we reschedule the avalability check it should notchange the Material availability date of the schedule line which i already delivered.
    Regards,
    sheshukumar

    can any one repsond for this.....

  • I downloaded CS6 and am having issues with my print driver. It is not compatible with the HP 2600n and have tried to download drivers given to me by adobe ( (Jupiter 3) but it is not working. after a few days. Its a temporary fix and is still looking for

    I downloaded CS6 and am having issues with my print driver. It is not compatible with the HP 2600n and have tried to download drivers given to me by adobe ( (Jupiter 3) but it is not working. after a few days. Its a temporary fix and is still looking for the HP driver when i boot up. It also will not save in any print or postscript format. Does anyone know how to fix?
    Currently use a Mac with the latest Mavericks 10.9.4

        Oh boy! Acting kind of weird seems to be an understatement, aquaequus!
    What type of troubleshooting were we able to do with you? I want to make sure that we can get some sort of resolution for this problem.
    It is quite possible the battery door may get your phone in working order again. I'm not sure if the store has it in stock, but it is available in our warehouse for $14.99 which can be ordered via customer service.
    Tamara H.
    Follow us on Twitter @VZWSupport

  • Report Builder - Last page issue and Report Footer issue

    I am using ColdFusion 9 Report Builder, am new to this product and encountering 2 issues.
    Issue 1 - I have a field that I would like to print on the last page of my report.  How can I determine the last page?  I initially tried using a calculated field set to the 'highest' calc.Page_Number.  Then I could compare the current page to the last page in the 'Print When' property.  But calc.Page_Number can not be used in a definition of a calculated field.
    Issue 2 - Depending on the amount of report detail, sometimes my report footer prints alone, without a page header and page footer.  The report includes this page in the total number of pages.  For example, if it is a 2 page report, the page header on page 1 will display Page 1 of 2.  Then the only data on Page 2 is the Report Footer.  No page header or page footer prints. 
    Any assistance on these issues would be most appreciated.  To date, using the Report Builder has not been easy.

    To issue 1: The report contains a report band called report footer. thsi is always at the last page. The report footer band initially is collapsed, so you have to expand it by dragging the last band divider.
    To issue 2: I guess this is a page break calculating error when detail data reaches really near the page footer area.
    Try some experiments with different setting of the following properties/issues:
    - in elements, e.g. calculating fields in the bands between report detail and page footer: In Properties / Print Control / Printing Options: Activate the option "Remove line when blank". This will remove the whole report band area if this field is blank. May save some empty space.
    - try to remove unused empty space between detail rows.
    - try to resize and reposition all detail fields so that they snap to the grid.
    Best regards

  • Just bought a new iPhone and am having trouble with iTunes and App Store. I can log in to Cloud, iTunes, and app store but once I try to download, it says "Youe apple id has been disabled". I've reset my password three times and have no issue on my Pad.

    Just bought a new iPhone and am having trouble with iTunes and App Store. I can log in to Cloud, iTunes, and app store but once I try to download, it says "Youe apple id has been disabled". I've reset my password three times and have no issue on my Pad.

    Hi FuzzyDunlopIsMe,
    Welcome to the Support Communities!
    It's possible that resetting your password multiple times has triggered this security.  Click on the link below for assistance with your Apple ID Account:
    Apple ID: Contacting Apple for help with Apple ID account security
    http://support.apple.com/kb/HT5699
    Here is some additional information regarding your Apple ID:
    Apple ID: 'This Apple ID has been disabled for security reasons' alert appears
    http://support.apple.com/kb/ts2446
    Frequently asked questions about Apple ID
    http://support.apple.com/kb/HT5622
    Click on My Apple ID to access and edit your account.
    Cheers,
    - Judy

Maybe you are looking for

  • To startup database in  noarchivelog

    Hi All, I want to know how can I start database in noarchivelog mode without using alter database noarchivelog; Is there anything to set with parameter? Thanks, Vishal

  • Reformatting Word Files to PDF

    I am changing over computers. On my old PC I only had Reader XI, but in Word files over the years (I am talking Word 2003 and 2007), under 'Save As', I was able to save to all kinds of formats, including PDF. I downloaded Reader XI on the new laptop

  • Fault Message Types

    Hi experts i have a following scenario. the scenario is SOAP to XI to ECC, and from XI to ECC RFC's are being used. i have doubt about the fault message types? what are fault message types and why should they be created??? for the above required scen

  • Where to find java source code on tiger?

    I'm taking a class on java, and i need to open up some of the java source code for classes like Abstractcollections and Abstractlist to see how their implementations work. Does anyone know where the java folder is located and how to open up the sourc

  • Is it possible to place different files on the desktops in different spaces?

    I have 6 spaces set up and would like to have different files on the desktop of each space.  Currently every file is on every desktop.  Is it possible?