Maximum Stage Width

I built a video player w/ fullscreen mode. I just upgraded my
moniter to a 30" and when I tested the video player my bg_mc did
not scale the total width of the screen. I then checked youtube,
revver, dailymotion, ect. All had the same behavior. I tried adding
1000 pixels to the Stage width and it had no affect.
Why is the max Stage.width smaller then consumer monitor
resolutions?
What is the max width for a single mc?
When is this going to be corrected?

This is a peer-to-peer forum, and by no means official
support. Please
Contact Adobe for
official support.

Similar Messages

  • How can I get stage width of an loaded swf?

    Is there any way to get the real stageWidth of an loaded swf?
    The problem comes when the loaded swf has some elements outside the scene. In this case content.width becomes bigger then the scene.
    My code looks like this:
    var request:URLRequest = new URLRequest(file.url);
    var loader:Loader = new Loader();
    loader.load(request);
    loader.contentLoaderInfo.addEventListener(Event.INIT, checkSize);
    loader.contentLoaderInfo.addEventListener(Event.COMPLETE, addImg);
    private function checkSize(e:Event) {
                // this is where I need to see the width of my loaded swf
    trace(e.target.content.width);
    private function addImg(e:Event) {
                    trace("complete");
    Thanks,
    Andrei

    I don't think you can get the stage width of the loaded file unless you assign it as a constant somewhere within the file.  The loaded file forfeits its stage when it is loaded into another swf

  • Stage.width undefined

    I have an existing Flash 8/AS2 game that uses Stage.width and
    Stage.height quite a bit, problem is that when I package as an AIR
    app the Stage.width and Stage.height properties are undefined,
    although Stage itself still shows up as an Object with 8-10
    properties, all of which are undefined.
    Under Flash 8/AS2 how can you get Stage.width and
    Stage.height to work in AIR?
    Any help is appreciated!!

    Is this still a know issue? is there a fix?
    I have the same problem and as i can see the bug is open
    since april 2008.
    Regards

  • External SWF using stage width & height...

    Hi,
    I have an external .swf file (zoomify-esque) that I would like to use in my Flex app, but it's size attributes use the stage width and height.
    This basically means that the loaded swf file will load at 100% of the size of the stage. I can resize the loaded .swf using whatever Flex component I put it in, but that shrinks it rather than behaving like it would if I embedded it in an HTML page.
    I hope that makes sense. If anyone could help me out with this, I'd be very grateful!
    Thanks in advance,
      Alex.

    Thanks for your response Alex,
    The swf is from an external company that we pay for virtual slide serving software, and I am currently unaware of any other zooming tools that can efficiently view medical images averaging over 5 gigapixels in size. If you know of any, that'd be really useful, but correctly embedding the original swf is preferred.
      Alex.

  • [svn:fx-trunk] 12007: When the Internet Explorer browser window is obscured Stage. width and Stage.height never return the proper sizes until/ unless the IE window is unobscured long enough for the player to feel it needs to render initially .

    Revision: 12007
    Revision: 12007
    Author:   [email protected]
    Date:     2009-11-19 12:45:27 -0800 (Thu, 19 Nov 2009)
    Log Message:
    When the Internet Explorer browser window is obscured Stage.width and Stage.height never return the proper sizes until/unless the IE window is unobscured long enough for the player to feel it needs to render initially.  This was preventing our preloader from completing, since we were waiting for a non-0 Stage size.  Took a slightly different approach to solving the bug for which the original logic was added to work around.
    QE notes: None
    Doc notes: None
    Bugs: SDK-24191
    Reviewer: Alex, Evtim
    Tests run: Checkin
    Is noteworthy for integration: No
    Ticket Links:
        http://bugs.adobe.com/jira/browse/non-0
        http://bugs.adobe.com/jira/browse/SDK-24191
    Modified Paths:
        flex/sdk/trunk/frameworks/projects/framework/src/mx/managers/SystemManager.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/preloaders/Preloader.as

    Revision: 12007
    Revision: 12007
    Author:   [email protected]
    Date:     2009-11-19 12:45:27 -0800 (Thu, 19 Nov 2009)
    Log Message:
    When the Internet Explorer browser window is obscured Stage.width and Stage.height never return the proper sizes until/unless the IE window is unobscured long enough for the player to feel it needs to render initially.  This was preventing our preloader from completing, since we were waiting for a non-0 Stage size.  Took a slightly different approach to solving the bug for which the original logic was added to work around.
    QE notes: None
    Doc notes: None
    Bugs: SDK-24191
    Reviewer: Alex, Evtim
    Tests run: Checkin
    Is noteworthy for integration: No
    Ticket Links:
        http://bugs.adobe.com/jira/browse/non-0
        http://bugs.adobe.com/jira/browse/SDK-24191
    Modified Paths:
        flex/sdk/trunk/frameworks/projects/framework/src/mx/managers/SystemManager.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/preloaders/Preloader.as

  • Loading flash 8 SWF in adobe AIR, loses the stage width in flash 8 SWF

    Currently i am using a CS3 IDE to compile AIR application.I
    am trying to load the flash 8 SWF inside my AIR application.After
    loading the SWF, when i try to trace the stage width inside the
    flash 8 SWF , it says undefined.Not sure why..
    Googling few hours not able to get the solution.
    Please help me on this, urgently needed.
    Thanks in advance

    This is a fairly common question on these forums. Basically,
    AS2 and AS3(Flex/AIR) can't communicate directly. You will either
    need to use LocalConnection or use ExternalInterface and javascript
    to pass info between the 2.

  • Swf = stage width in Dreamweaver

    I created a Flash navigation bar with the bar = stage width
    and button elements centered. Works fine in Test Movie mode or
    Flash Player, but tried to insert Flash movie into Dreamweaver HTML
    page as the header nav bar and the Flash file stays same size and
    does not expand in width to fit stage width. Any
    suggestions?

    I tried that and it didn't work. This is the Actionscript
    Flash code for the nav bar. Stage.scaleMode = "noScale";
    Stage.align = "TL";
    bar._width = Stage.width;
    dots2._x = Stage.width-200;
    menu_bar._x = (Stage.width/2);
    symmlog._x = (Stage.width/2);
    basebar._x = (Stage.width/2);
    stageListener = new Object ();
    stageListener.onResize = function(){
    Stage.align = "TL";
    bar._width = Stage.width;
    dots2._x = Stage.width-200;
    menu_bar._x = (Stage.width/2);
    symmlog._x = (Stage.width/2);
    basebar._x = (Stage.width/2);
    Stage.addListener( stageListener );
    The bar itself stretches to fill stage width at any screen
    size, the buttons and logo center in the middle of the bar at any
    size. When I add the swf file to Dreamweaver, the size of the nav
    bar does not stretch to fill the stage width. The addition of the
    above code seemed to make no difference. Is there anything else I
    could try?

  • Is there a limit to stage width?

    Whenever I try to set stage width to anything larger than
    1000px, Flash doesn't actually cap the number to 1000 but creates a
    file that's significantly less than a target width. I traced the
    Stage.width and what's really bizzare is that numbers are not
    consistent across projects and even change after restarting!!! Like
    I would try to set the width to 1200, 1500 or 2000 px in one
    project and the traced value would always be 1023 but 1173 in
    another. Then after restarting, 1023 would change to 1025 and 1173
    to 1186!!!. Am I going crazy?

    visitor13 wrote:
    > Whenever I try to set stage width to anything larger
    than 1000px, Flash doesn't
    > actually cap the number to 1000 but creates a file
    that's significantly less
    > than a target width. I traced the Stage.width and what's
    really bizzare is that
    > numbers are not consistent across projects and even
    change after restarting!!!
    > Like I would try to set the width to 1200, 1500 or 2000
    px in one project and
    > the traced value would always be 1023 but 1173 in
    another. Then after
    > restarting, 1023 would change to 1025 and 1173 to
    1186!!!. Am I going crazy?
    2880x2880
    Best Regards
    Urami
    <urami>
    If you want to mail me - DO NOT LAUGH AT MY ADDRESS
    </urami>

  • CS5 Device Central Stage.width/Stage.height update problem when change the device profile.

    When creating FL 3.0/3.1 app   and testing it at the CS5 Device Central if you change the profile of the active device(select different phone with different screen size) Stage.width/Stage.height could't change. Always stays the same as the first device's Stage.width and height. Even if you add addListener with Delegate nothing happends. Also it effects to Screen Oriantation. It looks like a problem or is this a bug?

    Having the same problem, though I can't get it to connect even once. I just started researching the problem tonight - no solution yet...
    I'm on Windows 7 Pro 64-bit, Production Premium CS 5.5.
    I've got no other internet issues, Adobe update works fine.
    Please - Anybody have an idea how to troubleshoot this problem?
    Thank you.

  • Get the stage.width before including on DisplayList

    Hi!
    I have a component, that automatically get the stage.width
    and stage.height. But the property stage is not valid until I draw
    the component with a addChild method. I would like to get the
    stage.width and stage.height properties without needing to include
    the component on the DisplayList.
    So, two questions:
    1. Is there a way to get the stage.width and stage.height
    without adding it to DisplayList (with a addChild)?
    2. What is my component does not extens a DisplayObject, how
    do I get the stage.width?
    Thank you,
    CaioToOn!

    So, any suggestions?
    CaioToOn!

  • Maximum panel width

    Hi,
    I'm using CVI 2012, and I have a question about the maximum width of a panel.
    I have created a panel on the user interface editor of 3840 pixel width, but when I run my application, the displayed width of the panel seem to be 3350 pixel (and the rest is cropped).
    Even if I try to enlarge the panel with mouse the limit remaining.
    There is a way to pass this limit ?
    Thanks for your precious support.
    Solved!
    Go to Solution.

    Hi Wolfgang,
    Thanks for your reply.
    I did as you suggested:
    "GetPanelAttribute" get 3344 pixel width (the portion of panel displayed), and SetPanelAttribute (panel, ATTR_WIDTH, 10000) return 0 (non errors), but the portion of panel displayed remain unchanged.
    You do not need a large display to run the test.
    Attached the code
    Thanks again
    Attachments:
    MaxWidth.zip ‏283 KB

  • Maximum Line Width when Report is running in background

    Hello Experts,
    I have written a ABAP program and user is running in background. My output is of width of 599 characters. But wehn the user is running in the background, it is showing a warning that last 345 columns won't be displayed.
    What is the maximum width, that is allowed for report being displayed in background.
    Kindly help and points will be rewarded. its really urgent.
    Thanks in advance.
    Thanks and Regards,
    Saurabh

    Hey Saurabh,
    I am facing the same problem. I have a report which has 406 characters. It is displayed correctly when executed in foreground but only 255 characters when executed in background.
    You have resolved this issue. Can you please provide me the solution to execute it in background and get the complete output.
    Regards,
    Anosh

  • How to keep the stage aspect ratio when stage width=100%?

    Hey,
    if I would like to make an animation that always fits into the browser window by fitting the width to 100% I'm having trouble keeping the aspect ratio of the stage's height. I can only configure 100% there which will stretch the content also to 100% of the browser window's height. If I configure a pixel value for the height, then I am also stuck on this value.
    All I want is the stage to adjust to the width of the browser window, and the height of the stage to preserve the aspect ratio depending on the width.
    this video shows what I mean. unfortunately I am not familiar with coding: http://www.youtube.com/watch?feature=player_embedded&v=hrLt0Y9QAY8
    Can somebody help me?

    sorry can't get the code working properly onwith the html code function. Sorry for that

  • How to define maximum field width on an updatable report

    I have an updatable report.
    From a user's perspective, this is a form in my app. How can I define the maximum number of characters the user can enter into a field?
    I tried entering the following into the report column's element attributes, but none of these worked:
    width=10px
    width:10px
    max-width=10px
    max-width:10px
    I don't know why the Tabular Form Element section allows to define Element Width and Number of Rows, but not the maximum width.
    Thanks
    Boris

    Hi Boris,
    If your updateable report is created by using a wizard than its not.
    You could use the apex_item.text api which allows for setting the max field width.
    Jos

  • SWFLoader.content: stage width and height, can i override to return proper results  ?

    Hiya.
    I'm loading with SWFLoader games that where written using stage functions to get the width and height of the stage and to draw the game and calculate game movements accordinly. When I load a game using SWFLoader, the stage size changes from the stage size of the flash application that i loaded with SWFLoader to the stage size of my entire flex application with breaks the loaded flash application.
    is there a way to override the stage related functions in the loaded flash application in order for them to return the proper value ?
    if my flash application is width=50px height=50px and it's located at my flex stage at x=20px width=20px,
    then the width and height of the stage of the flash application will return 70px.
    is there a way to resolve that ?

    If an app has dependencies on stage size, it will not behave well as a
    sub-app.

Maybe you are looking for

  • RFEBKA00 and days of grace

    Hello Experts, we are using RFEBKA00 with file format MT940. The clearing of open FI invoices of our customers  do no work when the payment is later with discount as the allowed days in payment conditions. Example: Invoice with 100,- EUR with documen

  • Trinidad problem in JDeveloper 10.1.3.2

    Hi All, I follow the steps from http://www.oracle.com/technology/products/jdev/howtos/1013/trinidad/trinidad.html to use JSF trinidad in JDeveloper, but I don't get to see a preview of the pages. The jsp page appear in outline. I saw at console of JD

  • Coldfusion 11 java/jre ssl mutual auth api calls.  Help with coldfusion/java logs.

    Hello, I am here because I have exhausted my Coldfusion/Java ssl keystore certs trouble shooting abilities.  Here is the issue. I am developing a Coldfusion 11 application that must make api calls to Chase payconnexion SOAP services. I am using the c

  • Save as type shows default as web page instead of excel

    Hi. After exporting the data to excel,When we try to do a save as to the excel,the default type is shown as '"web page".We neded the default save as type to be shown as excel... Any pointers would be of great help Thanks in advance Bhagyarekha.

  • Square boxes at the end of report output.

    Hi, In one of the issue, in the output of all the reports customer is getting the few square boxes at the end of each page. How to remove these square boxes from the output, Let me know , where to look for this. Refer SR 5841642.992 please see the ou