@Prior not working the way I expect it too

All, I need some help :-)<BR><BR>I have the following cube<BR>Essbase v6.5.5<BR>Create on Equation database option is checked<BR>8 dimmensions (including 3 attribute dimensions)<BR><BR>The base dimensions are as followings:<BR>Accounts(Dense) Prices, Cost, volume, etc.<BR>Scenarios (Dense) April Fcst, Actuals, Budget, May Fcst, Working Fcst etc.<BR>UOM (Dense) aka Unit of Measure BBL, MT (metric tons)<BR>Time (Sparse)2002, 2003, 2004, qtr1 07, Jan 07, etc<BR>Worldwide (Sparse) North America, South America, United States, Plant Name, Suppliers (Suppliers are unique to plants and are at level 0)<BR>the rest are attribute dimension based on Worldwide<BR><BR>I lock and send prices to a No Region member in the Worldwide dimension<BR><BR><BR>When I have to look at the prior month price it is not assigning a value to "posting". In other words, Plant 1 is working correctly, but the others which need to use the prior period price is not being calculated.<BR><BR>Here is the calc script:<BR><BR>/* Housekeeping */<BR>Set LOCKBLOCK High ;<BR>Set Cache Default ;<BR>Set Msg Summary ;<BR>Set UpdateCalc Off ;<BR>Set AggMissg On ;<BR>Set FrmlBottomUp On ;<BR><BR>Fix( "Mar 07", &Current_Forecast )<BR>Cleardata Postings; <BR>BBL(<BR><BR>//Plant 1<BR>IF ( @ISMBR (SupplierX, SuplierXX)) <BR>Postings = ("Price3"->"No Region" +"Price4"->"No Region")/2;<BR><BR>ELSEIF (@ISMBR(SupplierXXX))<BR>Postings = ("Price4"->"No Region");<BR><BR>//Plant 2<BR>ELSEIF (@ISMBR(SuplierXY, SupplierXXY))<BR>Postings = @Prior("Price2"->"No Region");<BR><BR>//Plant 3<BR>ELSEIF (@ISMBR(SupplierYY, Supplier YX"))<BR>Postings = @Prior("Price3"->"No Region");<BR><BR>//Plant 4<BR><BR><BR>etc.....<BR><BR>ELSE<BR>Postings = 0;<BR><BR>Endif<img src="i/expressions/face-icon-small-wink.gif" border="0"><BR><BR>ENDFIX<BR><BR><BR>ALL HELP IS APPPRECIATED. THANKS<BR>

Couple of quick suggestions:<BR>- is your Time dimension actually tagged as Time? <BR>- don't think it should matter, but your calc block is for BBL although you are calculating Postings<BR>- as a debugging step, since you are FIXing on Mar 07, try replacing <BR>@Prior("Price2"->"No Region"); <BR>with<BR>"Price2"->"No Region"->"Feb 07"; <BR><BR>If that works, then the issue is indeed @prior. But if that doesn't work, then it's related to data, block creation, order of operations, etc., something other than @prior.

Similar Messages

  • HTML Snippet for FEEDBACK FORM does not work the way I expected

    Hello folks,
    I have used following code as a Snippet to create a FEEDBACK FORM, so people can send their comments. I was hoping that when people write their comments and click Send, the comment will be sent directly to my e-mail. Instead, after clicking Send button, the Mail Manager pops up. So it is pretty much the same as if they click on the e-mail address link. Is this normal? I thought, that these comments will be sent directly via that FEEDBACK FORM, not via Mail Manager.
    Thank you so much for any tip or response.
    This is the Snippet Code:
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 TRANSITIONAL//EN">
    <html>
    <head>
    <title>form</title>
    </head>
    <body>
    <FORM METHOD="POST" ACTION="mailto:[email protected]?subject=Please email me with your feedback"ENCTYPE="text/plain">
    Please enter your name
    <INPUT TYPE="text" NAME="name" SIZE="30">
    Please enter your email address
    <INPUT TYPE="text" Name="usermail" size="50">
    Add any comments below
    <TEXTAREA NAME="comment" ROWS=6 COLS=60></TEXTAREA>
    Clicking "Send it" will launch your mail application
    <INPUT TYPE=submit VALUE="Send it!">
    <INPUT TYPE=reset VALUE="Reset Form">
    </FORM>
    </body>
    </html>

    The action is usually a php file.
    Otherwise, simply create a button and make it a mail link in the Inspector.
    If you cannot figure this out, you'd better refrain from using it.
    Or start learning how to use forms.

  • Numeric Fields not working the way I expected

    I have tried both pieces of code in the click event, but nothing happens with the WearRing_CaseClearance (numeric field) Field.
    var ringDiameter = topmostSubform.Page2.Span[7].WearRing_Case_Diameter.rawValue;
    WearRing_CaseClearance.rawValue = ringDiameter;
    var ringDiameter = topmostSubform.Page2.Span[7].WearRing_Case_Diameter.rawValue - topmostSubform.Page2.Span[8].WearRing_ImpellerHub_Diameter.rawValue;
    if (ringDiameter < PM_CaseClearanceMIN.rawValue || ringDiameter > PM_CaseClearanceMAX.rawValue)
    //WearRing_CaseClearance.rawValue = ringDiameter;
    ///WearRing_CaseClearance.fillColor = '255, 0, 0';
    else
    //WearRing_CaseClearance.rawValue = ringDiameter;
    //WearRing_CaseClearance.fillColor = '255, 255, 255';

    I found an odd but working solution.
    It seems when I converted the Word Document to a PDF, it made each section in my form a span block. Adobe seems to treat span blocks as subforms. So when I right-click (in the hierarchy tab), the span tags, an option of "unwrap subform" is available. Unwrapping all the subforms/spans allowed my fields to see each other regardless of which span block they were in.
    Hope this helps anyone else.

  • Write some JAVA for me please, not working the way I wanted it too...

    Here's what I am getting when I go to run it:
    C:\Documents and Settings\Brad.HOME\Desktop\FINAL>java project1
    Usage: project1 [Array File Path]
    C:\Documents and Settings\Brad.HOME\Desktop\FINAL>
    What I need is for it to ask me to enter the location of the numbers file and then calculate the Max, Min, Mean, etc off of that file I enter in. Right now it just says:
    Usage: project1 [Array File Path]
    -------------------------------java below-------------------------------------------------
    import java.io.*;
    public class project1 {
    * Array File Path
    private String location;
    * set Location
    * @param location String
    public void setLocation(String location) {
    this.location = location;
    * Program initialization
    public project1() {
    int ar[] = new int[50];
    ReadFile(location, ar);
    sort(ar);
    System.out.println("Minimum= " + ar[0]);
    System.out.println("Maximum=" + ar[ar.length - 1]);
    System.out.println("Mean= " + mean(ar));
    System.out.println("Mode= " + modal(ar));
    System.out.println("Median= " + median(ar));
    System.out.println("Std Dev= " + stdDev(ar));
    * Main program
    * @param args String[]
    public static void main(String args[]) {
    if (args.length == 1) {
    new project1().setLocation(args[0]);
    else {
    System.out.println("Usage: project1 [Array File Path]");
    * Calculate the mean
    * @param ar int[]
    * @return double
    public double mean(int ar[]) {
    int sum = 0;
    for (int i = 0; i < ar.length; i++) {
    sum += ar;
    return (sum / ar.length);
    * Calculate the mode/modal
    * @param a int[]
    * @return int
    public int modal(int a[]) {
    int n;
    int freq = 0;
    int Mfreq = 0;
    int Mn = a[0];
    for (int i = 0; i < a.length; i++) {
    n = a[i];
    for (int j = 0; j < a.length; j++) {
         if (a[j] == n) {
         freq++;
    if (freq > Mfreq) {
         Mn = n;
    return Mn;
    * Calculate the median
    * @param a int[]
    * @return int
    public int median(int a[]) {
    if (a.length % 2 == 0) {
    int x = a[a.length / 2];
    int y = a[ (a.length + 2) / 2];
    return (x + y) / 2;
    else {
    return a[ (a.length + 1) / 2];
    * Calculate Standard Deviation
    * @param a int[]
    * @return double
    public double stdDev(int a[]) {
    int s2 = 0;
    int s = 0;
    for (int i = 0; i < a.length; i++) {
    s2 += (a[i] * a[i]);
    s += a[i];
    return Math.sqrt( (s2 - (s * 2) / a.length) / (a.length - 1));
    * Sort integer array
    * @param a int[]
    public void sort(int a[]) {
    int tmp;
    for (int i = 0; i < a.length; i++) {
    for (int j = 0; j < a.length; j++) {
         if (a[j] > a[j + 1]) {
         tmp = a[j];
         a[j] = a[j + 1];
         a[j + 1] = tmp;
    * Read integer array from specified file
    * @param filename String
    * @param ar int[]
    * @return int
    public int ReadFile(String filename, int ar[]) {
    File infile = new File(filename);
    int value, n = 0;
    try {
    BufferedReader reader = new BufferedReader(new FileReader(infile));
    String line = null;
    while ( (line = reader.readLine()) != null) {
         value = Integer.parseInt(line);
         ar[n++] = value;
    return n;
    catch (IOException e) {
    System.err.println("Problem reading input file!");
    System.exit(1);
    return n;

    Please use code tags when posting code. There is a
    button labeled code right above the text box
    where you type in your post.
    Your first problem occurs herepublic static
    void main(String args[]) {
    if (args.length == 1) {
    new project1().setLocation(args[0]);
    else {
    System.out.println("Usage: project1 [Array File
    y File Path]");
    }This code executes when you first launch the
    application. It checks to see if there were any
    arguments in the comman line. If the number of
    arguments is not equal to 1, then you get the Usage
    output. You must launch the program with one
    argument.I tried java project1 C:\\Temp.txt, but it still ends up with a NullException handler. I edited the code and added a catch for it so it returns File doesn't exist, but I swear it does and I'm pointing to it correctly...

  • My phone is not working the way it did before the manditory iOS 7 update.

    My phone is not working the way it did before the manditory iOS 7 update.  It freezes, it lags, I get kicked out of my apps, my messages do not send half of the time, I can't view the pictures in my camera roll if I enlarge them, and the phone glitches randomly.  How can this be fixed or what do I need to do to get it replaced??

    The Basic Troubleshooting Steps are:
    Restart... Reset... Restore from Backup...  Restore as New...
    Restart / Reset   >  http://support.apple.com/kb/ht1430
    Restoring  >  http://support.apple.com/kb/HT1414
    If you try all these steps and you still have issues... Then a Visit to an Apple Store or AASP (Authorized Apple Service Provider) is the Next Step...
    Be sure to make an appointment first...

  • I need to cancel my membership I got today it did not work the way I wanted to and my computer is not working with it. Thank please cancel to today!!

    I need to cancel my membership I got today, it did not work the way I wanted to. So please cancel it today! Thanks

    This is a user forum; we have no access to your subscriptions, but we can help you to get it canceled.  So what did you subscribe to:
    Creative Cloud?
    an Acrobat.com online service?

  • Hi, i would like my membership cancelled. I got it yesterday but its not working the way i wanted it to work. How do i go about that i getting my refund as its before 30 days.

    Hi, i would like my membership cancelled. I got it yesterday but its not working the way i wanted it to work. How do i go about that i getting my refund as its before 30 days.

    Hi kondwastefstef,
    I'm sorry that your subscription didn't meet your needs. Please contact Adobe Customer Support via phone or chat; they should be able to cancel your account and process your refund. Here's the contact information: Contact Customer Care
    Best,
    Sara

  • Ps 3d and filters and save for web are not working the way they should

    At work we just put cs6 on a w7 machine running 64 bit which has more than that required mem and or ram to run cs6 - unfortunately I have to use a windows based machine at work (cheapskates). Anyways. I see the 3d menus and the filter menu in PS but they aren't funtional. The filter menu drop down is there but Liquify is the only one that shows up the rest are gray. The option to choose 3d is also there but they are not functional (grayed out) - I took a look at some online tutorials on using the 3d effect in PS CS6 and Ive gone through it a few times and it still won't work for me. Also, in illustrator when I save for web - when I adjust the pixel dimensions and move the mouse over and click on the image that I am saving for web nothing happens and I'm completely boggled about how to get the image size to change in the save for web pane. Typically I am used to being able to input the the number into the pixel dimenion field and click on the image and the image resizes (on a mac you can either click on the image or hit return and the image will resize in front of your eyes!). I am unable to get this to work the way I am used to, this happens for me in both ill5 and ill6 on this piece of crap windows machine. Maybe I just need to reinstall? Maybe adobe has changed the way this works? Maybe a sledge hammer into this windows machine would solve all my problems!? IDK. someone help... help me... pleeeeaaaaaaaaaaasssseeeee

    unfortunately I have to use a windows based machine at work (cheapskates).
    This gets a "stupid comment of the day" medal. Seriously. These days Macs are just as convoluted and effed up as Windows was a few years ago - nice as long as everything works, but god forbid you have a problem. So by all means, update your graphics driver and be glad that you actually have that choice rather than having to wait half a year for Apple to fix it...
    Mylenium

  • Lightbox not working the way it's supposed to

    I can't get lightbox to show the way it's intended -- images keep popping up on the screen but not in the "lightbox" style.  There's no "popup" and no greyed out background.  I copied and pasted the code for reference.
    I have a folder with all the lighbox parts in it -- css, js and images.  I first had my images in a separate folder, but that didn't work.  I moved the images into the "lightbox images" folder and that didn't work either.
    By the way, I'm fairly new at this so if you see something that's wrong or needs to be adjusted, go easy on me! 
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
    <title>Taylor LightBox Test</title>
    <script type="text/javascript" src="js/prototype.js"></script>
    <script type="text/javascript" src="js/scriptaculous.js?load=effects"></script>
    <script type="text/javascript" src="js/lightbox.js"></script>
    <link rel="stylesheet" href="css/lightbox.css" type="text/css" media="screen" />
    </head>
    <body>
    <p><a href="lightbox2/images/Bay Large Image.JPG" rel="lightbox"><img src="lightbox2/images/Bay Small Image.jpg" alt="Lakewood Bay" width="400" height="300" border="0" /></a>
    <p><a href="lightbox2/images/Dad's Large.JPG" rel="lightbox"><img src="lightbox2/images/Dad's Small.jpg" alt="Dad's House View" width="400" height="300" border="0" /></a>
    <p><a href="lightbox2/images/LO from WL.JPG" rel="lightbox"><img src="lightbox2/images/LO from WL SMALL.jpg" alt="from WL" width="400" height="300" border="0" /></a>
    </body>
    </html>

    Hello,
    Lightbox should be relatively easy to get up and running so, don't worry too much there's bound to be an answer.
    You mention that you changed the location of images, sapping them from one folder to another but where the images are isn't as important as making sure that your page links to them accurately.
    So take this line first of all:
    <p><a href="lightbox2/images/Bay Large Image.JPG"  rel="lightbox"><img src="lightbox2/images/Bay Small Image.jpg"  alt="Lakewood Bay" width="400" height="300" border="0" /></a>
    First thing is to say, there should be a closing </p> tag after each use of the <p> element.
    Then, you have a folder lightbox2 with a sub folder images with an image Bay Large Image.JPG in it.  (It's not such a good idea to have spaces in any file name on the web by the way so if you can, change that to BayLargeImage.jpg or Bay-Large-Image.jpg).  But is your file structure like that?
    The next thing is to point out that each of the script links in the head need to point to the appropriate files too.  So, this line for instance: <script type="text/javascript" src="js/prototype.js"></script> indicates that you must have the file prototype.js in a folder called js.  Is that how it is?
    Having said all that,not closing that <p> element might not be helping at all!
    Martin

  • Copy Cell not working the way it did in Numbers '08

    It seems that Numbers '09 changes the way things get copied and its ruining my work process. I've got a spreadsheet with video timecode and transcriptions in it that I'm doing a rough paper edit in and then copying the timecode into Final Cut Pro.
    In Numbers '08 if you select a cell and copy, the text inside gets copied as formatted text. So when pasting into Final Cut, I'd get this:
    00:00:07:20
    But in Numbers '09, I get this:
    Unnamed Table
    00:00:07:20
    And if I paste it into TextEdit, it pastes the cell as a cell of a table with the name Unnamed Table above it.
    That being said, when I just tried to write this post up, I pasted the cell into this form box and it looked like this:
    00:00:07:20
    So, it would seem that if you are pasting into a plain text area it pastes the basic text, but if you're pasting into a rich text formatted box, it will try to paste a Table.
    I guess my problem is that the Timecode boxes in Final Cut are reading rich text when they really shouldnt be.

    One more time,
    use the script:
    Save this script as an application bundle named clipboard2text.app in:
    <starupVolume>:Users:<yourAccount>:Library:Scripts:Applications:
    Maybe you will have to create the Applications subfolder.
    Seach for the keaword Script in the Finder's Help to learn the way to activate the Menu Scripts in the menu bar.
    When you will have to paste in Final Cut Pro (or other programs)
    From Numbers copy the datas
    menu Scripts > clipboard2text
    Then paste where you want.
    set the clipboard to (the clipboard as text)
    Yvan KOENIG (from FRANCE mardi 27 janvier 2009 16:36:31)

  • Hello I buy apps and it's not working the way I want. So I need my full refund now

    Many times I purchase app for my iPhone it's all goin some of them it's not working  I need my full refund.

    See:
    Refunds from the App Store or iTunes - Apple Club

  • Making Links from UL Not Working the way I would Like

    Hi,
    Just trying to learn more of CSS and am having a problem.
    I make a vertical unordered list and used the li tag to make a "box" arond each link (red text/black background/red border)
    I then made the text in each box a link using the menu "Modify/make link" option. This works fine.
    So next I tried to create a compound rule (li,a:hover) to change the font color to black and the background color to red - basically reversing the colors from the non-hover state. So on hover , while the text changes to black as I want it to the background just changes to red as soon as I select that color in the rule?
    Here are some pics to show what I am trying to explain.
             NON - HOVER
                   li,a:hover tag
    I'm guessing I am not using the li,a:hover tag properly and am sure someone can set me right.
    Also, using the "Modify/Make link menu option will only make the text a link but I would like the whole box area of eah item to be a part of the link - how would you do that? Do I have to make each item an image?
    And heres the CSS.
    @charset "utf-8";
    body {
    background: url(../_images/Background.jpg);
    body, html {
    margin: 0px;
    padding: 0px;
    text-align: center;
    p {
    font-family: "Times New Roman", Times, serif;
    font-size: 18px;
    color: #FFF;
    text-decoration: none;
    h1 {
    font-family: "Times New Roman", Times, serif;
    font-size: 24px;
    color: #FFF;
    margin-top: 0;
    text-decoration: none;
    #wrapper {
    text-align: left;
    width: 1000px;
    position: relative;
    margin-right: auto;
    margin-left: auto;
    #header {
    height: 200px;
    width: 1000px;
    clear: both;
    #header img {
    margin: 0px;
    padding: 0px;
    height: 200px;
    width: 1000px;
    #mainContent {
    height: 900px;
    width: 765px;
    float: right;
    margin-bottom: 45px;
    padding-right: 25px;
    padding-left: 10px;
    #sideBar {
    height: 900px;
    width: 200px;
    float: left;
    clear: left;
    #footer {
    background-color: #060;
    height: 200px;
    width: 1000px;
    clear: both;
    ul {
    padding-left: 5px;
    margin: 5px 0px 0px;
    li {
    font-family: Georgia, "Times New Roman", Times, serif;
    font-size: medium;
    line-height: 1.5em;
    font-weight: bold;
    text-transform: uppercase;
    color: #F00;
    width: 125px;
    border: medium inset #F00;
    list-style: none;
    margin-top: 5px;
    margin-bottom: 5px;
    background: #000;
    padding-left: 10px;
    li, a {
    color: #F00;
    text-decoration: none;
    li, a:hover {
    color: #000;
    background: #F00;
    Thanks

    li, a = apply CSS rule to any <li> tag and (separately) to any <a> tag
    li, a {
    color: #F00;
    text-decoration: none;
    is the same as writing:
    li {
    color: #F00;
    text-decoration: none;
    a {
    color: #F00;
    text-decoration: none;
    li a = apply CSS rule to any <a> tag found inside a <li> tag
    The second one (space between the li and a) is what you want here.

  • JCreator not working the way i want it.

    sorry for the catchy subject header...and my pre thanks for solution providers..
    PROBLEM I AM FACING:
    I am using JCreator pro and its intellisense is not working...I had previously installed JavaFX and then removed it...is it the side effect I am having ?
    MY NEXT PROBLEM:
    also i have copied java API docs to same folder as JDK ..now when i highlight the code and press F1 i don't get API doc for the highlighted keyword...instead a bookview is shown at the right corner.....what could be the problem...please explain the solution in a beginners tone..I am new to java...thank you very much once again..... :D

    Is this what you are looking for?
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
    <title>Untitled Document</title>
    <style>
    body {
        width: 940px;
        margin: auto;
    html {
        background: url(http://www.pwaworldtour.com/fileadmin/user/main_editors/images/hi_res/ARUBA_2011/A11_fs_WOMEN/A11_fs_ARU91_1755.jpg) no-repeat center center;
    .content {
        background: white;
        padding: 20px;
    </style>
    </head>
    <body>
    <div class="content">
        <h1>Header</h1>
        <p>Whose worth's unknown, although his height be taken. Let me not to the marriage of true minds admit impediments; love is not love love's not time's fool, though rosy lips and cheeks. Oh, no, it is an ever fixed mark which alters when it alteration finds, it is the star to every wand'ring bark. Let me not to the marriage of true minds admit impediments; love is not love within his bending sickle's compass come.</p>
        <p>Love's not time's fool, though rosy lips and cheeks if this be error and upon me proved, oh, no, it is an ever fixed mark. Or bends with the remover to remove. Admit impediments; love is not love whose worth's unknown, although his height be taken.</p>
        <p>Within his bending sickle's compass come; which alters when it alteration finds, but bears it out even to the edge of doom. That looks on tempests and is never shaken; love's not time's fool, though rosy lips and cheeks I never writ, nor no man ever loved. If this be error and upon me proved, within his bending sickle's compass come; it is the star to every wand'ring bark.</p>
    </div>
    </body>
    </html>

  • GTX 970 not working the way it should.

    Hello, I bought a msi gtx 970 yesterday but it is not working good. I can not even play league of legends without stuttering. When I play on maximum settings it says 60 fps, but in fact it is stuttering. The memory clock keeps shooting up to 3506 and than goes down again, this keeps happening. When I had call of duty advanced warfare open for 10 minutes, not even being in a game, the gpu usage is 98% and the memory use is extremely high, while nothing is happening on the screen, just some menus.
    All drivers are downloaded and previous drivers from my old video card are removed.
    These are my pc specs.
    i5 760 @ 2,8 GHz
    msi gtx 970
    8gb DDR3 RAM
    Asustek V-P7H55E motherboard
    Windows 8.1 64 bit
    Hope someone can help me out.

    Quote from: Nichrome on 09-February-15, 22:57:36
    My current 780Ti is getting bottleneck by the CPU I have.. so even worse would be if I'd have 970 or 980..
    That's because yours is the T version. It's not even nearly as good as the normal 4670 or K version.
    Actually, it the lowest of the versions. Even S version would be better.
    With normal 4670 and 4670K you wouldn't be getting bottleneck.
    Quote from: lucas-1996 on 09-February-15, 22:07:05
    I have one more question. I cant really decide if I shall get the i5-4690k for my new motherboard or the i7-4790k. Is the i7 worth the 100 euro extra? I dont do things like photoshop, maybe a bit of streaming though.
    What kind of cooling you have currently, or are you using stock cooler?
    If you don't have sufficient cooler or are running stock cooler, you will need to invest on better cooling.
    In which case, get the i5 4670K and buy a new, better cooler with that 100$.
    I would recommend at least Hydro H80i if you have a free 120mm fan slot in the case.
    If not, get the BeQuiet! Dark Rock Pro 3 or similar.

  • Overflow:visible; not working the way i want.

    Hi,
    ok so i have a problem with using overflow. I have an large image that I want to overflow outside the normal 940px wrapper on either side. So far it is all displayed fine however, im left with a scroll bar at the bottom of the screen which allows me to scroll over to the right untill all the image is displayed. I want it to only be visible if a large res display is being used. So how can i keep al this but remove the x axis scrol function?
    here  is my code
    <div id="cinema-wrapper">
    <div id="cinema-displays"></div>
    </div>
    #cinema-wrapper {
              width:940px;
              height:764px;
    #cinema-displays {
              background-image: url(../mackbyte_files/img/cinema-bg.png);
              height: 764px;
              width: 3109px;
              background-repeat: no-repeat;
              position: absolute;
              left:50%;
              margin-left:-1554.5px;
              overflow:visible !important;
    thanks

    Is this what you are looking for?
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
    <title>Untitled Document</title>
    <style>
    body {
        width: 940px;
        margin: auto;
    html {
        background: url(http://www.pwaworldtour.com/fileadmin/user/main_editors/images/hi_res/ARUBA_2011/A11_fs_WOMEN/A11_fs_ARU91_1755.jpg) no-repeat center center;
    .content {
        background: white;
        padding: 20px;
    </style>
    </head>
    <body>
    <div class="content">
        <h1>Header</h1>
        <p>Whose worth's unknown, although his height be taken. Let me not to the marriage of true minds admit impediments; love is not love love's not time's fool, though rosy lips and cheeks. Oh, no, it is an ever fixed mark which alters when it alteration finds, it is the star to every wand'ring bark. Let me not to the marriage of true minds admit impediments; love is not love within his bending sickle's compass come.</p>
        <p>Love's not time's fool, though rosy lips and cheeks if this be error and upon me proved, oh, no, it is an ever fixed mark. Or bends with the remover to remove. Admit impediments; love is not love whose worth's unknown, although his height be taken.</p>
        <p>Within his bending sickle's compass come; which alters when it alteration finds, but bears it out even to the edge of doom. That looks on tempests and is never shaken; love's not time's fool, though rosy lips and cheeks I never writ, nor no man ever loved. If this be error and upon me proved, within his bending sickle's compass come; it is the star to every wand'ring bark.</p>
    </div>
    </body>
    </html>

Maybe you are looking for

  • Smart playlist not working

    My smart playlists aren't doing jack squat for updating. The live-update checkbox is checked. I tried unchecking it, then going back and checking it again. No luck. I have lots of new songs on my computer that simply are not showing up. And the music

  • How to call a Include type Report Program in Executable Program. ?

    Hi experts, I have created a Include type report program and I want to run this include program in other report program. Which abap statement should i use ? Thanks Saurabh

  • Build Error(Weblogic10)

    Hi All, I am getting build error: <Oct 16, 2007 5:48:38 PM EDT> <Error> <J2EE> <BEA-160197> <Unable to load descriptor /home/suppala/projects/soe/staging/lib/tmp_externalorderservice.jar/META-INF/ejb-jar.xml of module tmp_externalorderservice.jar. Th

  • Function modules to send mails from ABAP

    hi            can any one give me the function module to send mails from abap to yahoomail or gmail etc. i will be grateful if any one can provide me a sample code. thanks & regards rajesh

  • Problem in Initialization Parameter file...Oracle10g

    Hi all, I am working in oracle 10g.I created a pfile from an exiting spfile and changed the Processes parameter and then again created a spfile from this changed pfile. Didnt delete the previous spfile and bounced the database. At startup I encounter