Parallax scrolling for different screens

Hi there...
Does anybody know how to deal with different screen sizes and parallax scrolling?
It know the 100% width option so that is not the issue.....the issue is the height!!
Laptop versus desktop etc..
So what is the best height to use so it will fit all screen sizes?
Thanks, Cor

Hai Daniel,
I faced the same problem with the overflow controller.
Then depending on the number of records that I am showing in the table I have adjusted the size of the overflow controller in pixels.
my code looks some thing like this.
lv_oflc_height = 53 + ( lv_actual_visible_rows * 21 ).
if the filter is on 20 more pixels added to the height.
<xhtmlb:overflowContainer id     = "OFLC_RCN_HDR"
                            height = "<%= lv_oflc_height %>px"
                            mode   = "SCROLL" >
and this worked for some standard resolutions with out big difference.
Best Regards,
Venkat.

Similar Messages

  • Scaling front panel objects for different screen sizes

    Hi,
    Can anybody help me of designing Vi for different screen sizes. I have designed a VI for a monitor of small size and lower resolution but when I open the same Vi on a different monitor,objects are not aligned properly. The properties which I have changed are
    Window appearence->Default
    Window Size -> Panel size 0,0   & Tick marked options of Maintain propotions for different monitors and scale all objects 
    Window Run Time position-> Maximum
    Regards
    Imran
    Solved!
    Go to Solution.

    Imran,
    I can't solve your problem entirely.  However when I have to write a program that will be deployed on a variety of monitor sizes, I tend to set the size of the Front Panel to suit the smallest monitor, and then remove the ability of the user to resize it.
    Also, set it to run in the centred position.
    See attachments.
    Many Thanks,
    Dan
    Dan
    CLD
    Attachments:
    Customize Window Appearance.JPG ‏44 KB
    VI Properties.JPG ‏29 KB

  • Resizable page for different screen sizes but with static image content. Shall I use media query?

    I’m making a page that has of mostly image content. It’s a large circle in the middle so I want it to be centered vertically and horizontally. I also want it to stay centered and resized proportionally for different screen sizes. I’ve read about media query but it seems to me that the elements just become fluid. Can I make the elements stay in place using the media query?
    I’m working in Dreamweaver CS5.5

    Here's the code I'm working with now, I've taken away the things that I don't really understand.
    It's working but I guess it won't hold when I start with the media queries.
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html>
    <head><style type="text/css">
    body {}
    div {
       font: 12px Arial;
    span.bold { font-weight: bold; }
    #the-circle {
      height: 960px;
    width:960px;
    margin-left:650px;
    margin: 0px 10px 0px 10px;
    margin-left:650px;
    .link-row {
    position:absolute;
    width: 960px;
    height: 74px;
    top: 130px;
    left:660px;
    .link-row-2 {
       position: absolute;
       width: 960px;
       height: 74px;
       top: 300px;
       left:660px;
    .link-row-left {
    float: left;
    .link-row-right {
    float: right;
    .link-row-right {
    float: right;
    .link-row-right {
    float: right;
    </style></head>
    <body>
    <br /><br />
    <div id="the-circle">
    <img src="ACE Test/Logo-DW.png" width="960" height="960" />
    </div>
    <div class="link-row">
    <div class="link-row-left"><img src="ACE Fotografier EP och Video/Logo/Wix ACE Logo.png" width="111" height="74" /></div>
    </div>
    <div class="link-row-2">
    <div class="link-row-right"><img src="ACE Fotografier EP och Video/Logo/Wix ACE Logo.png" width="111" height="74" /></div>
    </div>
    </body></html>

  • How to programmatically resize vi for different screen resolutions ?

    Hi,
         I have been struggling with this,How can i built a vi that should run for different screen resolutions (on different pc's).
    There are several threads on forum , But i dont find the exact solution for it.
    I have already tried with VI properties in the VI but i dont think its working.
    Can someone please help me ?
    Thanks and regards,
    Shivkant Paswan

    Yup it is a pain to use panes, but that is the easiest method I've found which meets my requirements.  Learn to use panes and splitters effectively, and then learn their limitations and workaround when you find those limitations.  In general LabVIEW should handle multi-resolutions, and resizing better but these are the tools we have today.
    Unofficial Forum Rules and Guidelines - Hooovahh - LabVIEW Overlord
    If 10 out of 10 experts in any field say something is bad, you should probably take their opinion seriously.

  • How do you open a project started in Muse, Dreamweaver, or other to tweak for different screen sizes

    How do you open a project started in Muse, Dreamweaver, or other design program to tweak for different screen sizes?

    Hi. As of now HTML import is not plan of record for Reflow 1.0.  See this FAQ for a bit more info - http://forums.adobe.com/message/5071510#5071510.
    -C

  • Design and Testing Suggestions for Different Screen Resolutions

    Intermediate Dreamweaver CS3 user, in need of "Design and Testing Suggestions for Different Screen Resolutions".
    Thank you, J. Chavez

    Adobe Browser Labb and BrowserShots.org

  • Optimizing captivate file for different screen resolution

    Hi,
    I've a problem in optmizing the captivate file for different screens like laptop,netbook and pc. In PC's and laptops, this is not a major issue as the size of the screen is large. But when we play the captivate generated swf file in a netbook, the whole website gets resized to fit in to the resolution of the screen except the captivate file.Captivate file gets truncated in such a way that, the user can read only half of the slide.
    Thanks in advance
    Parvathy

    One thing you can try is adjusting the swf dimensions manually.  I haven't found a way to do it in Cp.  We had a similar problem with some eLearning we built that all our testers used just fine.  But once someone undocked their laptop and was off their desktop monitor, had the same problem you describe, where the bottom of the movie was cut off.
    Once you publish the files, open the .htm file with notepad or your text/html editor of choice.
    Look for a line that looks something like this:
    var so = new SWFObject(strURLFile + strURLParams, "Captivate", "1100", "798", "10", "#CCCCCC");
    or
    var so = new SWFObject("filename.swf", "Captivate", "1600", "1200", "10", "#CCCCCC");
    Change those numbers in quotes to 100%, like this:
    var so = new SWFObject("filename.swf", "Captivate", "100%", "100%", "10", "#CCCCCC");
    save the .htm
    My experience has been it will adjust the swf so it fits either the height or width of the display, whichever is shorter.  That is, it will either fill the top to bottom OR side to side, but keep the swf in proportion.
    hope that helps.

  • Site Formatting for different screen sizes

    Hi there,
    I am designing a website for a customer and having some problems with the site fitting on different screens.  I set it to what I was led to believe is the universal resolution/screen size, and it looks great on large, wide-screen computers, but doesn't fit right and requires lots of scrolling on smaller screens.  I also have a pop-out light box feature when visitors click TEAM and it doesn't fit on smaller screesn either.  How can I make the site auto adjust to different screens?  This is a big must for the customer and I'm still pretty new to MUSE so i don't entirely know what I'm doing.  Any help would be greatly appreciated. 
    The site is: http://apopecary01.businesscatalyst.com
    Thanks!
    Nick

    Truly variable width "liquid" layouts are not supported. However, visual designs that fill the full browser width are possible using browser fill image tiling and 100% width page items. Also page item pinning and browser fill scrolling can be leveraged to create designs where content moves relative to each other when the browser window height or width changes.
    We may be exploring responsive layout options for Muse in the future, but right now it is fixed width only.
    - Abhishek Maurya

  • Creating an app for different screen resolutions/sizes

    Hi
    I'm currently in the process of learning application development for the iPhone and could do with some help on how to cater for retina and non-retina screens. I want to create image assets for each screen type.
    What the best way to go about detecting if the user has an iPhone 4 for example and selecting the appropriate images for that resolution? I understand that you attach '2x' to file names when coding natively but for a pure Actionscript project where the assets might be contained in a swc file what would be best to do?
    Thanks

    Hi Vic,
    The biggest advantage of building apps in Flash CS5.5 or Flex is the ability to target multiple devices and the 2 major platforms, iOS and Android oh and also Blackberry (anyone?).
    Best way to approach a build is to assume you do not know the screen size your app will be used on, since Android is so all over the place.
    I have been using stage.stageHeight and stage.stageWidth religiously for all my scaling although I have heard that method has its problems, it has worked well for me, I have put out 2 apps personally and 3-4 for work using this method both in Landscape and Portrait orientations and this method has worked well.
    The easiest way to build a multi screen app is to design it for an average ratio, 3:4 being the lowest = iPad so lets say you pick some decent size that wont be too big for smaller screens like the iPhone 3gs 480x320 and wont be too low for high res screens like the new Google Nexus or the Motorola Xoom 1280x800. I usually target the iPhone 4 screen 960x640 right now it seems to fall in the middle between older phones and tablets.
    The real quick and dirty way of doing it is to build all your assets inside a movie clip and then scale that movie clip proportionally to the stage, first checking to make sure none of it would be cut off due to different screen ratios, this is not the best way of doing it but it works well and its the easiest method.
    A better way is to scale and place your content in relation to the stage, again the stage.stageWidth and Height properties are your friends so if you have an element that always goes in the middle you would place it my_mc.x = stage.stageHeight / 2 and same with the y, you can also scale it to the stage my_mc.width = stage.stageWidth/4 this way the movie clip is always 1/4th of the stage width regardless of the screen, its a lot planning up front but this method allows you to cover the entire screen instead of just cramming your movie clip in there however it fits.
    Let me know if any of that helped I can go into further detail but I feel like I am rambling on.

  • Need help resizing pages for different screens

    Hey guys,
    Ok well I made this website that has a lot of pages now and
    the only problem is that I have a 21" widescreen monitor so
    everything I created has to be scrolled on a lot of smaller
    screens. I'm almost possitive that there is a way to tell the html
    to resize the website when different screen sizes are detected. Any
    help would be great. Thanks.
    Also if there is a way to do this, then would it be possible
    to change the settings sitewide without using templates?
    Jeremy

    > I'm almost possitive that there is a way
    > to tell the html to resize the website when different
    screen sizes are
    > detected. Any help would be great. Thanks.
    There is - it's called "design"! You have to build the page
    to be
    flexible - see this tutorial as an example of how to do it
    with tables:
    http://www.dwfaq.com/tutorials/Tables/flexible_tables.asp
    Once you have the page built, you cannot just drop in a magic
    pill and make
    it resize itself.
    And remember, screen size is not the real variable you need
    to worry about -
    it's browser viewport size. Even when you know my screen is
    1280x1024, you
    still do not know what my browser size is.
    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
    ==================
    "dayencom" <[email protected]> wrote in
    message
    news:eiqmfu$33q$[email protected]..
    > Hey guys,
    >
    > Ok well I made this website that has a lot of pages now
    and the only
    > problem
    > is that I have a 21" widescreen monitor so everything I
    created has to be
    > scrolled on a lot of smaller screens. I'm almost
    possitive that there is a
    > way
    > to tell the html to resize the website when different
    screen sizes are
    > detected. Any help would be great. Thanks.
    >
    > Also if there is a way to do this, then would it be
    possible to change the
    > settings sitewide without using templates?
    >
    > Jeremy
    >

  • Parallax scrolling for phone layouts

    I think the parallax scrolling should be available especially for mobile phone designs, as these need to have all content vertically. Scrolling with the finger is also much more intuitiv than with a mouse, so this effect would give some playful interest to the website on a mobile device.

    So weird that you dont get the problem when taping on a menu button. Still, that anchor thing may be the problem cause now that I remeber anchirs where a little bit to the left out of the effective area, so that could be the problem. I'm gonna try changing that and report results.
    Thanks so much triquita.

  • Best resolution for different screen sizes?

    Hi,
    I just created a project and several of the viewers complained that they had to scroll horizontally in order to view the movie.
    What is the best resolution to record my next project in so as to ensure that no user will have to scroll (neither vertically or horizontally) to see the contents?
    Alternatively, is there some type of feature that automatically adjusts the contents to the viewer's screen?
    Thanks very much in advance.

    Hi there
    I think many folks use 800x600 as a common size.
    Choosing the "Best" resolution is nearly always a bit of an art form. You need to consider the lowest common denominator. For example, are your tutorials intended for senior citizens? If so, then you need to consider that they may be running an older computer configured for a smaller resolution.
    There are ways to coax the video to play back at whatever resolution is available, but they all will involve a sacrifice in quality. This is because any time you play back your project at a different size than it was recorded, the quality will suffer. The degree to which it suffers depends entirely on how much scaling is happening. Scale just a little and it's not too bad. Scale a lot and things go downhill.
    One way to allow scaling is to link to the .SWF instead of the .HTM that is produced. Another way is to edit the HTML page Captivate creates. Remove the pixel values and insert percentages.
    Cheers... Rick
    Click here for Adobe Certified Captivate and RoboHelp HTML Training
    Click here for the SorcerStone Blog
    Click here for RoboHelp and Captivate eBooks

  • How do I autofit the site for different screen sizes?

    I've built my site in iWeb.  But is there a way to have it autofit to the size of the screen it is being displayed on?  For example, I built it on my 24 inch 16x9 display at home.  I built it using dimesnions so that there are no scroll bars left or right.  I get a nice full page.  But, when I visit the page on a smaller 4x3 display for example, it doesnt shrink to the new size screen.  It just shows what it can then you have to scroll left/right to see the rest of the page. 
    So is there a functionality in iWeb, or a work around, to have it adjust according to the size of the screen it's being viewd on?
    Any help would be greatly appreciated.
    Thanks!

    The "dynamics" for the textboxes are only vertical, not horizontal.
    To have everything move vertical and horizontal, you have to add width attributes to the text boxes. I tried it with a percentage. But did not like the result.
    The displayed text are separate textfiles that are loaded with AJAX.
    So once you have made the textboxes change their width with JavaScript, these text files fill the available space.
    You also have to make the width and height of pictures and movies dynamic.
    You can make it as complicated as you like.

  • Swing Layout for different screen resolution

    Hi All,
    I am developing an application which will always run in a FULL SCREEN mode.
    I intend to make it working on all screen sizes (resoultions) and on different OS and devices.
    Since I am new to Swing, could anyone of you suggest a good layout manager to manage the components?
    I am using NetBeans 6.8 (which uses a GroupLayout) for designing the GUI but when I change the screen resolution, the arrangement is all messed up.
    Also, I am not able to design my application's GUI using NetBeans GUI builder as there is noway I can get an idea of how things will look like in the EXTENDED_BOTH state.
    It will be very helpful if anyone could suggest..
    Thanks!

    The entire point of Swing LayoutManagers is to get a (reasonably) consistent layout across different resolutions, window sizes, platforms, etc. Of course, different window sizes and aspect ratios will affect things slightly, but any LayoutManager properly used will do the job you're describing.
    As for which LayoutManager to use, I think that's a misleading question because it's not uncommon to use multiple LayoutManagers for a single screen. But in my experience it's possible to do 95% of what you want using GridBagLayout and a properly nested hierarchy of JPanels. GridBagLayout is a pain to get used to (caution against re-using GridBagConstraints), but once you do it's amazing what you can get out of it.

  • Need help with hiding divs for different screen sizes with fluid layouts.

    Ok, so i've got a single page giving info that my website is coming soon and i've designed it for pc, tablet and mobile as i should.  I have hidden the divs i don't want from each view and when testing it, all works fine and as it should be but when it is on the server and live, it shows all the divs that are meant to be hidden on one screen?????   Is there something else i should be doing and can anyone help me here or is this a question for my host???
    Thanks for any help in advance

    Probably a coding issue.  Without a link, no way to help.
    Nancy O.

Maybe you are looking for

  • How to rotate a whole table

    Hi, In a page layout document, I have a table that was created to be read 90°. Now, I need to bring the table in a normal orientation. I know how to rotate de text inside the cell but I need to rotate the whole table. So the header that is actualy th

  • BSP - How to avoid the Logon Popup

    Hi All, When I test any BSP application from SE80, a popup is displayed asking for username and password. How do I avoid this popup. Useful answers will be rewarded. Thanks in Advance, Regards, Archana

  • How to insert the data to selected cell in multicolumn

    Hello Labviewer I am new for labview, and have a problem when i am using a multicolumn listboxes, how can i insert the data to my selected cell, something like header      XXX   

  • How to define selectedRowKeys for a table?

    Hi, I have a table defined in jsff page and it is not defined using searchResultsIterator. Instead it is defined using CollectionModel. How can I define the selectedRowKeys attribute for this table? Table code: <af:table value="#{pageFlowScope.PipePr

  • Looking for a "buzz the secretary" feature

    I have a customer (law firm) who, on their existing PBX, can contact the secretary w/o exiting a call (e.g. buzz the sec to retrieve a fax while client is on the line. Anyone seen a feature/software/solution that would do this.