Wrong detection of screen.width and screen.height

Latest version (26.0 Windows)
After seeing unexplainable behaviour I built a page with an alert
alert (screen.width+ - +screen.height)
The first time I load the page the answer is correct: 1920 - 1080
If I leave the page and I load it again the answer is: 1536 - 864
The odd beahaviour consists of altering sizes and positions for sizes and images.
Other browsers (Chrome, Opera, Safari and even the old IE ver 8) behave as expected.
I unistalled Firefox and installed it again without any luck.
Thanks.

Sorry, nothing to do with zoom. This was the first thing I checked!

Similar Messages

  • Background, screen-width and screen-height

    can you help me a bit guys? how shall I create a movie where
    the background will be always 100% of screen-width and 100% of
    screen-height but the rest of the movie will be not affected by
    screen resolution - it means will be of fixed size.
    example: have a photo in front (200x300px) which needs to be
    always of that size and the background will resize according to the
    screen resoluiton ...
    it is even possible? thanks for any help ...

    Hello,
    Could you please try unchecking the sticky footer option from Site properties and then check if you face the same issue or not?
    Regards,
    Sachin

  • CS6 problem. When I open the Mask panel, it takes up the entire screen width and the Looks controls disappear, Also, there is a new panel below the Mask panel that seems to have no purpose that I can find. The documentation says "Mask and Look panels - Th

    CS6 problem. When I open the Mask panel, it takes up the entire screen width and the Looks controls disappear, Also, there is a new panel below the Mask panel that seems to have no purpose that I can find. The documentation says "Mask and Look panels - The Mask panel is now placed next to the Look panel. WIth the masking and grading tools placed side-by-side, you can now work faster on the mask workflow." Is there a way to move, hide, or otherwise manipulate the panels for a custom layout? All the examples I can find on the Web show the Looks panel to the left of the Mask panel where the controls are available.

    Ok, here is what I have so far. Appdelete the iWork and reinstalled. Pages and Number work, but not Keynote.
    Now, I downloaded a couple apps that I need, and no matter what I did, the spinning ball came up and the download stopped till it unlocked itself. It is really frustrating because the download was not completed and whatever came through would not mount. Could this issue be the internet connection? Permission fix showed a lot of Airport issues. I will try to run permissions fix again.

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

  • Screen saver and screen sleep not working consistently

    Recently with one of the most recent updates my screen saver and screen sleep stopped activating when they should.  Sometimes I leave the room and come back an hour later only to find my screen is on and no screen saver.  I have screen saver set for 5 minutes and screen sleep set for 10 minutes (regardless of battery or plugged in state).  I have tried changing them and reserving to no avail.  Any way to fix this?
    Thanks.

    When was the last time you restarted your computer or even repaired permissions?
    Try trashing the ~/Library/Preferences/ com.apple.systempreferences.plist file and restarting the computer.

  • Screen-active and screen-invisible

    Hi all,
    What is the difference between screen-active and screen-invisible as both are used in making the selection screen parameter invisible.
    Regards,
    Sandeep

    Hi all,
    i have worked with both screen-active and screen-invisible.  Below are the sample code where both of them are giving the same output. So i dont understand how the two can be used differently.
    Using Screen-active
    REPORT  zdemo_test.
    PARAMETERS: p_pernr1 TYPE pernr_d,
    p_pernr2 TYPE pernr_d.
    PARAMETERS: rd1 RADIOBUTTON GROUP g1 DEFAULT 'X' USER-COMMAND abc,
    rd2 RADIOBUTTON GROUP g1 .
    AT SELECTION-SCREEN OUTPUT.
    IF  rd1 EQ 'X'.
    LOOP AT SCREEN.
    IF screen-name = 'P_PERNR1'.
    screen-active = '0'.
    MODIFY SCREEN.
    ENDIF.
    ENDLOOP.
    ELSEIF rd2 EQ 'X'.
    LOOP AT SCREEN.
    IF screen-name = 'P_PERNR2'.
    screen-active = '0'.
    MODIFY SCREEN.
    ENDIF.
    ENDLOOP.
    ENDIF.
    Using screen-invisible and screen-input
    REPORT  zdemo_test.
    PARAMETERS: p_pernr1 TYPE pernr_d,
    p_pernr2 TYPE pernr_d.
    PARAMETERS: rd1 RADIOBUTTON GROUP g1 DEFAULT 'X' USER-COMMAND abc,
    rd2 RADIOBUTTON GROUP g1 .
    AT SELECTION-SCREEN OUTPUT.
    IF  rd1 EQ 'X'.
    LOOP AT SCREEN.
    IF screen-name = 'P_PERNR1'.
    screen-invisible = '1'.
    screen-input = '0'.
    MODIFY SCREEN.
    ENDIF.
    ENDLOOP.
    ELSEIF rd2 EQ 'X'.
    LOOP AT SCREEN.
    IF screen-name = 'P_PERNR2'.
    screen-invisible = '1'.
    screen-input = '0'.
    MODIFY SCREEN.
    ENDIF.
    ENDLOOP.
    ENDIF.

  • Re: Yoga 2 Pro - Screen Flickering and Screen Blanking

    sarbin wrote:
    Moderator comment: Several posts were removed for contravening the Community Rules:
    "No vendetta posts, or online campaigning. It is acceptable to state concern for how a particular Lenovo policy, performance, or procedure does or does not meet the expectation of a particular member, but it is not acceptable to use this forum in an attempt to broadly organize or incite members en mass, to cancel orders, return systems, undertake legal action or otherwise disrupt the normal business processes of Lenovo."
    Rather than telling us what we can't do...how bout, as a mod, help by empathizing and perhaps suggesting solutions of courses of action for us.

    kbonura wrote:
    I still feel like you can offer a suggestion rather than simply sweeping in and exerting your mod authority. This is a major issue that at this point there is no real evidence of lenovo addressing. 
    Are you an owner of a yogo 2 pro? If not, then you have no idea. You can't sit back and defend lenovo by modding us or hindering any potential efforts via discussion. You can't in good concience sit back and believe this to be ok.
    Regarding paragraph 1:
    1- If I had a suggestion to offer, I would have done so.
    2- The moderation done to the thread (and the post moved here) was to apply conformance to the Guidelines.
    3- Please see: http://forums.lenovo.com/t5/Idea-Windows-based-Tablets-and/Yoga-2-Pro-Screen-Flickering-and-Screen-B...
    Regarding paragraph 2:
    1- I have a Y2P, but don't have the issue described in the thread.
    2- The moderation applied was not a defense. It was an application of the Guidelines.
    Finally, again from the Community Guidelines, please recall:
    "Extended debate with moderators or admins over their decisions with regard to moderation of posts is considered trolling."
    Please feel free to continue the discussion, on-topic and within the Guidelines, in the ongoing thread.
    Regards.
    English Community   Deutsche Community   Comunidad en Español   Русскоязычное Сообщество
    Community Resources: Participation Rules • Images in posts • Search (Advanced) • Private Messaging
    PM requests for individual support are not answered. If a post solves your issue, please mark it so.
    X1C3 Helix X220 X301 X200T T61p T60p Y3P • T520 T420 T510 T400 R400 T61 Y2P Y13
    I am not a Lenovo employee.

  • How to get full screen width and height  when using CustomItem not canvas ?

    hi..
    I have to append one Textfield and a CustomItem ( as canvas) for painting on a single form.
    I have to draw a rectangle in CustomItem in full Screen width of mobile .
    So I have to know the screen width of mobile for drawing a rectangle.
    Please Suggest me. how can I do that ?
    Thanks

    Did you check javax.microedition.lcdui.Form.getWidth() and javax.microedition.lcdui.Form.getHeight() methods?
    Atul

  • 100% percent width AND 100% height rectangles.

    Muse should be able to have a rectangle with an image in it scaled to 100% width and height so if my browser goes full screen, the rectangles adjust to it.
    No I am not talking about a Pinned rectangle sidebar menu. I am talking about rectangles on the page that contain images with a 100% width.
    Muse should be able to have MULTIPLE 100% height rectangles, so as you scroll, each section with a 100% width and height rectangle adjusts to your browser size.
    To see the desired effect, check out this site.  
    http://www.schlage.com/en/home/keyless-deadbolt-locks/touch.html

    Thats right ...
    there is no provision of defining percentage of ALV grid.
    it takes the size of contianer automatically....
    Though you can try dynamic screen generation. but i am not sure if it allows you to determine user's screen resolution and size.
    As all the processing is done on Applicaition serer this doesnt makes any sense.
    So u have to stick to old style programming and Static ALV grid size
    Hope this helps you.

  • SWF at 100 % width and proportional height

    I have a SWF that I would like to use in an XHTML 1.0 Strict document.
    My need is that the flash must:
    - Be 100% width
    - Grow / shrink proportionally in height (depending on width)
    - The flash may not be cropped or distorted
    - I must be able to to put a div just before the flash
    - I must be able to place a div right after the flash
    The flash should behave just as if you pasted below image in an HTML file:
    <img
    style ="
    width: 100%;
    min-width:800px;
    min-height:280px;
    height: auto; "src="xxxx"
    alt ="-"/>
    I need it to show a dias show (SWF), where the size changes with the browser window size.
    If some someone can help, I would be very happy :-)

    Here is an older post that has examples of various scaling:
    Here are examples of different scaling parameters available in the Publish settings. You can also add these parameters directly in the html (<param name="scale" value="noscale"). All the examples replace the actual Flash dimensions with 100% for both width and height (width="100%" height="100%"). These examples use the old <object> and <embed> to illustrate the different ways to scale Flash. Once you understand how it works I’d recommend that you use swfobject to place the Flash in your final project.
    View the source code for each page to see the full code.
    http://www.cidigitalmedia.com/tutorials/scale/exact_fit.html
    "exactFit" scales the file to fit exactly within the confines of the screen, irregardless if the movie becomes consequently distorted. The original aspect ratio is not maintained. So round things are not round and squares are not square.
    http://www.cidigitalmedia.com/tutorials/scale/noScale.html
    "noScale" is the default setting, and causes the movie to be displayed at the originally designed dimensions.
    http://www.cidigitalmedia.com/tutorials/scale/no_border.html
    "noBorder" causes the movie to be scaled to what ever dimensions are needed to have no border surrounding the movie within the player, which consequently could result in some of the movie being cut off from view. In other words, the movie will maintain the original aspect ratio and will fill the screen completely. But if the movie has to be streched wider to fill both sides of the screen, it will also stretch taller, but then some of the top and the bottom of the movie may be cut off from view.
    http://www.cidigitalmedia.com/tutorials/scale/show_all.html
    "showAll" scales the movie to the size of the screen (which could cause pixelation if the file contains raster information), the difference between showAll and exactFit is that showAll mantains initial movie size proportions. Because it maintains the original aspect ratio, there can be space to the sides or the top and bottom. But everything always shows and they are not distorted. But notice the photo in the center, it becomes pixilated at larger screen resolutions.
    The trickiest part of trying to go full screen is that it’s difficult to make the Flash wider without making it taller also, that is, to maintain the correct proportions or aspect ratio of everything on the stage. These methods are just simple scaling accomplished with html. There are also methods to dynamically scale the stage and it’s elements using Actionscript… but that’s a much more complex undertaking.
    Best wishes,
    Eye for Video
    www.cidigitalmedia.com
    Adninjastrator

  • JTabbedPane: Tab Text, Tab Width and Tab Height

    Whenever i put text on JTabbedPane tab it displays it in one line, so when i have a text e.g. "XXXXXXXXX XXXXXXXXX"
    it displays it as it is not like XXXXXXXXX
    XXXXXXXXX
    How can I display it in two line or more?
    Does Tab width and height automatically adjust itself relative to the text inside it? If not how can I set the tab width and height?
    Thanks in advance.

    leemax quote:
    Simply add the escaped new line character "\n" to display the text of the tab on the next line.
    --Yeah i tried that already but anyway i solved the problem by making used of htnl tags "<br>"                                                                                                                                                                                                                                                                                                                                                                                                                               

  • How to make an Imagine in Adobe Muse span 100% width and 100% height.

    Hello,
    So this has been really puzzling me for a long time now and I have not found the correct answer.
    I want to create the effect on my website where I have an image that fills the screen now matter what size screen you look at it from. I know that this is possible with the 100% width option but you cannot replicate the same thing with the height.
    The best way to explain what i mean is by showing this example I have found:
    Nils Frahm
    If you look at this site, the image fills the screen, use your zoom in and out tools and you will notice no matter what your zoom the page still stays in full screen view! Now, wat's evem better is when you go to scoll using your mouse wheel or the scroll bar, you will notice this full screen image then scrolls up.
    Summary:
    What I want is a full screen image which covers the screen no matter what size you look at it.
    Any ideas??

    Yes, you can create that.
    Use the image as browser fill with position and apply scroll to fill , so that at certain key position the image will also scroll.
    Something like this : http://imagescroll01.businesscatalyst.com/index.html
    Thanks,
    Sanjit

  • X60 - Screen flickers and screen shutoff - problem with power management or hardware failure?

    Hello everyone,
    this is one of the longest unsolved threads in Lenovo Forum. To keep a summary of the posts for new victims (as suggested by PDG in page 23, edited by me):
    Bottom line:  
    This is a video driver problem
    If you have XP and can, roll back to 4450 (I currently run with 4860 in XP without problems)
    If you have Vista you are basically screwed.  No one has posted any link to a functioning V32 driver.
    You can find a link to a backlevel XP driver on p.21 or thereabouts.
    {Windows 7, Linux} may or may not help. (no problems for me with Ubuntu 8,9 currently)
    LENOVO WILL NOT HELP.  Don't waste your time.  Lenovo will say its a hardware problem because that's all they know and charge you big bux to do basically nothing when you ship them your PC.
    This is the original entry:
    Hi,
    I always stay at the current level of available drivers with System Update.
    In the last days the screen starts to flicker / jiggle once in several minutes until suddenly the whole screen turns black and can't be reactivated. I then put the X60 into standby and it wake up right after. The screen is then turned on again...
    Its a 1706-AA7...
    I rolled back the graphics driver to an earlier version, didn't help. Does it look like some faulty power management? Or a potential HW issue?
    dsp
    UPDATE: this time the screen was totally light blue... same workaround: standby -> wakeup
    UPDATE2: I removed the driver completely and installed it manually from the driver matrix page. It took a couple of reboots. In between resolution was down to 640x480 with 4 bit. Not its working again without flickering...
    Was this a wrong driver pushed via System Update?
    Message Edited by dsp on 04-07-2008 07:01 AM
    Solved!
    Go to Solution.

    Hi,
    no - 2 video adapters are correct! You should not remove them. Read the Intel FAQ here.
    Strange - could it be that it also updated your video driver the same time? When I rolled back the video driver to a very old version, I never experienced the flicker again. No colorful blanks anymore.
    The Intel downloadpage offers a backlevel driver for the chipset;
    * Microsoft Windows* XP
    * Driver Revision: Production Version 14.32.3
    * Package: 43262
    * Graphics: 6.14.10.4906
    * HDMI Audio: 5.10.0.1030 But I don't know whether I should try. This release doesn't appear in the Thinkpad video driver history. Hopefully the bug will be acknowledged and they work for a fix. Where should bugs be reported, when they are not taken serious by the first level support?
    dsp
    Message Edited by dsp on 05-06-2008 01:19 PM

  • Desktop screen capture and screen clicks dropping

    Two questions- I can't seem to find in the manual. 1.Can captivate record the desktop? I can't figure out how to do it. And when I record a web application, my clicks which record going from screen to screen are getting dropped. I waited to make the time lapse longer hoping that would help but it doesn't. Is this a bug or am I doing something wrong?

    Hi there
    On my old laptop I had no issues with that. But I recently moved to a new laptop with Windows 7 64 bit. I find that things are somewhat hit and miss with Captivate. It works for the most part, but the only way I was able to record creating a shortcut on the desktop was by recording in Full Motion.
    Is your operating system by chance 64 bit Windows 7?
    Cheers... Rick
    Helpful and Handy Links
    Captivate Wish Form/Bug Reporting Form
    Adobe Certified Captivate Training
    SorcerStone Blog
    Captivate eBooks

  • Yoga 2 Pro - Screen Flickering and Screen Blanking

    Hi,
    I love the Yoga 2 Pro. But i have fews issues with it. Especially when used on battery.
    My screen flicker from time to time. The onyl fix i found was to close the lid to put the laptop to sleep and the reopen it. Not very convinient.
    An other issue I encounter is the screen blanking after a while when the computer is not in use. It's like the computer blank the screen to save battery power, but when you want to reuse it again, it won't start again. THe only fix is to hard reset the computer (eg : press 10s the power button)
    I am running a fresh clean install of Windows 8.1 Pro with all the Lenovo Drivers up to date (exept the BIOS one)
    If you could help me fix my issues. I think it's software related.
    Do you think i should put the BIOS update ? Does anybody ever try with a clean windows 8.1 install ?
    Thanks a lot,
    Romain

    I have the same issue, only it occurs at low brightness.
    It flickers rapidly for a few seconds and goes away. It occasionally comes back, making it unable to work in darker environments with the rapid flickers.
    I've checked all the auto-brightness and intel power saving options. I tried using both refresh rates, and they don't make a difference. The problem occurs in all power plans and even in the non-Lenovo energy manger modes. All drivers and BIOS are up to date.
    I'm at a complete loss as to why this is happening...I would greatly appreciate a solution. I sincerely hope I don't have a defective laptop..):

Maybe you are looking for

  • I have Windows XP and the latest Itunes and Itunes does not recognize my Iphone 4

    I have tried all of the trouble shooting ideas. I have installed and reinstalled Itunes. I have restarted my phone. I have restarted the computer. I have gone into MSCONFIG and made sure that all of the Iphone type services were ON. Nothing. My compu

  • Bridge crash

    Hello, using mac os X 10.7.3, if i try to start Bridge directly or from photoshop. There is a crash of Bridge. Here is the crash report: Process:         Adobe Bridge CS6 [585] Path:            /Applications/Adobe Bridge CS6/Adobe Bridge CS6.app/Cont

  • QM inspection at various quality gates during production

    Hi All, We need clarification on how to plan inspection during production at various stages. 1. How to trigger and use inspection point planning at various inspection stages?? 2. How will the characteristic be activated, processed and closed at vario

  • Reverse/cancel outgoing excise invoice

    Hello, We are using version 2005B.  We created an outgoing excise invoice by copying from a goods return.  We then noticed that the ship to address was posted incorrectly and need to reverse/cancel the outgoing excise invoice.  After looking through

  • Wireless Autentication + WLC + ACS + AD

    Hello Everyone, I'm trying to configure autentication policy in my wireless network. I need to autenticate users members of group "Wireless users" in active directory. My question is: I need use ACS for this autentication in AD Group? Or only the con