Actual Pixel Value for Screen Res...(Doc Window)...Incorrect in DW ?

hello again...
In Dreamweaver MX 2004...the dropdown menu on the status bar (right corner) of the document window...showing actual pixel dimensions vs. maximized screen resolution...
...for the 1024 X 768 SR...I'm showing actual pixel dimensions of 955 X 600.
is that not correct...???
I have always gone under the assumption that those figures are 1003 X 567 (& my pages always seem to work fine, dimensionally, w/ those #'s).
Is 955 X 600 the default for DW...or did my settings somehow get inadvertantly changed...???
thanks,
mark4man

Browser chrome eats up approx. 30px on each side.  So if you're building a page to fit in a 1024px wide display without horizontal scrollbars, a page width of 970px or below is usually a good target.
Nancy O.
Alt-Web Design & Publishing
Web | Graphics | Print | Media  Specialists
http://alt-web.com/
http://twitter.com/altweb
http://alt-web.blogspot.com

Similar Messages

  • Getting pixel values for an image

    Hi,
    I am trying to compare images to detect where the differences between them occur. I am encountering a few problems
    1) when i print out the pixel values for the image,all values are the same - clearly wrong, code i use:
    ImageIcon icon = new ImageIcon("x.jpg");
    Image image = icon.getImage();
    int width = image.getWidth(null);
    int height = image.getHeight(null);
    BufferedImage buffImage = new BufferedImage(width, height, BufferedImage.TYPE_INT_RGB);
    int[] rgbs = new int[width*height];
    buffImage.getRGB(0, 0, width, height, rgbs, 0, width);
    for(int i = 0; i<width;i++){
    for(int j = 0; j<height; j++){
    int rgb = buffImage.getRGB(i, j);
    System.out.println("pixel @(" + i + "," + j + ") " + rgb );
    and 2)when i compare 2 completely different images my code tells me they are the same...
    for(int i = 0; i<width;i++){
    for(int j = 0; j<height; j++){
    int rgb1 = buffImage.getRGB(i, j);
    int rgb2 = buffImage2.getRGB(i, j);
    if(rgb1 == rgb2)
    matches++;
    weHaveAMatch = ((int)((float)matches/(float)pixelCount*100) >= tolerance);
    Can any1 please tell me what I am doing wrong or show me how to detect differences between images correctly. Any help is much appreciated

    so my for loops were just in the wrong order?No, I don't think you were looping over the image you loaded. It appears that you load one image, but loop over another newly created (hence, blank) image.
    I'm having trouble using BufferedImage im = ImageIO.read.. the compiler is telling
    me that the method read is not recognised even though i have imported
    import javax.imageio.*;you must learn to read the APIs and pay attention to the compiler error messages. ImageIO.read takes either a
    -File
    -InputStream
    -URL
    -ImageInputStream
    In my example, I pass in a File, so it works. You must still be passing a String.
    When i create a bufferedImage the way i originally did,the values printed out are still all -16777216.Yes, because you created a new, blank image, so the value reflects this.
    Sorry i'm a complete beginner, can u give me some guidence!Thats ok, everyone is at some time. Guidance : read and understand.

  • Default values for Screen Fileds

    Hi All
    By default, if a user doesnt give a value for a particular field, it will have the Default Value of the particular type.But i want it to retain a Null Value in such case. Is it possible.
    I have a numeric field in my screen. I need ot trigger a error message if the user doesnt enter any value..
    And to accept if ihe enters 0.
    BUt even if the user doesnt give any value, the screen field gets 0.
    Is there any way to do this

    You might want to check out using the "on request" on some modules in the screen flow to determine if the user has keyed something in... from [Conditional Module Calls|http://help.sap.com/saphelp_46c/helpdata/EN/9f/dbabbd35c111d1829f0000e829fbfe/content.htm] :
    ON REQUEST
    The module <mod> is only called if the user has entered something in the field. This includes cases when the user overwrites an existing value with the same value, or explicitly enters the initial value.
    Jonathan

  • Target finish value and Actual confirmed value for the header material

    Hi guys,
    For a given production order, I need to get the below mentioned two values for the header material of the production order:
    1. Planned or Target finish value
    2. Actual confirmed value
    will this value be calculated like: 
    Target finish quantity x standard price of the material (maintained in MBEW-STPRS)  = Target Finish Value
    Actual confirmed quantity x standard price of the material (maintained in MBEW-STPRS)  = Actual confirmed Value
    OR
    I can get these required value directly in DB table.
    Please guide here.
    Thanks & regards,
    Ravish
    Edited by: Ravish Kumar Ojha on Oct 28, 2009 5:41 AM
    Edited by: Ravish Kumar Ojha on Oct 28, 2009 5:41 AM

    CO03- go to Costs-- Analysis should give you these details.
    if you are not OK with the columns appearing, you can change by selecting the change Layout and selecting the required options.
    Regards
    Ratan

  • Tabale for Actual cost value for Process orders

    Hi Friends
    From which table can we retrive the actual values relates to process orderwise, like actual material consumption cost, activites cost, overhead cost and other costs.

    Hi
    You would find the actual for process orders in Table COEP with Object Number = OP*. Also Check if you would require COSS, COSP for Controlling Tables and to get the Object numbers you need to used AFPO with Order type of Process order PI01...
    Regards,
    Suraj

  • Pixel coordinates for different size docs.

    I am makeing a pixel colorsample on a particular point in a document. The problem is when the picture demesions change the point where I am selecting from changes. I was wondering if anyone has an idea to handle the different sizes. Thanks.

    So I figured what my current measurements percentage was and included it in my calculations for my point. Thank you for your help.
    This is what I used.
    var w = app.activeDocument.width.as( 'px' );
    var h = app.activeDocument.height.as( 'px' );
    pw=w*0.405;
    ph=h*0.48125;

  • Value input for screen and to apply it to formula in Query Designer

    Hi Gurus !
    How could i input an value for screen in BEx and soon to apply it to formulas resident in cells in Query Designer, the result must be appear for each cell in the report.
    Thank You for your helps.

    create a variable with Manual/user input option.
    use its value to populate the calculated field.

  • Getting screen size minus Windows taskbar

    I'm wondering if anyone knows of a good way to get the actual size of a screen, minus the windows tastbar.
    I'd like to set the size of my program to the maximum available size of the screen realestate.
    Currently, I just get the screen resolution via the ToolKit, and I just check to see if the OS is windows, and I take into account that the tastbar is probably visible, and take a few pixels off. Obviously not a very good way to handle the situation.
    However, whenever you call a JFrame to maximize itself, it takes the tastbar into account, so I'm wondering if there's some way to access this information myself.
    Even a way to programatically call the JFrame to maximize itself so I can then find it's size would work.
    TIA.

    There's no clean way to determine the screen size sans the task bar. If you're using jdk1.4, I suppose you could maximize a frame window as you thought. Otherwise, there's no frame maximize state prior to jdk1.4. If you're desperate for a semi-clean approach, you could always access the visiblity and dimensions of the task bar via JNI.
    fyi, a frame "knows" the proper maximized bounds because it is a native window i.e., Windows handles the maximized boundary of frames, not the AWT.

  • After successful install, all my adobe cc docs, when open, change pointer arrow, i-beam and window to oversize. When doc closes all return to normal size. I'm on a PC. Screen res set to medium 1920x1200. Any ideas how to fix?

    After successful install, all my adobe cc docs, when open, change pointer arrow, i-beam and window elements to oversize. When doc closes all return to normal size. I'm on a PC. Screen res set to medium 1920x1200. Any ideas how to fix?

    Ok thanks Linxup I would recommend posting in the respective forums for each of those software titles as opposed to the Creative Cloud Download & Install forum.  The relevant forums are as follows:
    InDesign - InDesign
    Illustrator - Illustrator

  • What is the alternative for DisplayMemberPath="Value" for Windows Store applications?

    I think there is a bug with Windows Store Applications when it comes to using DisplayMemberPath="Value".
    Here is my code
    <ComboBox Height="40" VerticalAlignment="Stretch" SelectedValuePath="Key" DisplayMemberPath="Value" x:Name="comboBox1" FontSize="25"/>
    var source = new Dictionary<string, double>();
    source.Add("Item1", 0.4);
    source.Add("Item2", 0.3);
    source.Add("Item3", 0.1);
    source.Add("Item4", 0.1);
    var formateDSource = new Dictionary<string, string>();
    foreach (var item in source)
    formateDSource.Add(string.Format("[{0}, {1}]", item.Key, item.Value), item.Key);
    comboBox1.ItemsSource = source;
    If you use this code in WPF in works perfectly. However if you use this code in a Windows Store Application then the Combo Box is empty and an error is thrown. So is there an alternative way to do this in Windows Store Applications and have I unearthed a
    bug? Because I have researched the Web for days and found no solution to this.*please do not comment unless you have tried my code as a Windows Store App not a WPF in Visual Studios. Can Someone post an example based on my code that works in Windows Store
    Apps please because this is terrible.
    Thanks

    It looks like you got an answer on SO:
    http://stackoverflow.com/questions/29817124/what-is-the-alternative-for-displaymemberpath-value-for-windows-store-applicat
    This does look like a bug.
    Matt Small - Microsoft Escalation Engineer - Forum Moderator
    If my reply answers your question, please mark this post as answered.
    NOTE: If I ask for code, please provide something that I can drop directly into a project and run (including XAML), or an actual application project. I'm trying to help a lot of people, so I don't have time to figure out weird snippets with undefined
    objects and unknown namespaces.

  • How to get the actual value rather than pixel value in vision assistant

    how to get the actual value rather than pixel value by vision assistant in my program.As shown in the figure            this is my programme   this is the result       But i want to get this result

    Check the documentation for the "ADF Dialog Framework"
    It may help
    Atilio

  • Match code in report selection screen does not show any values for 0FISCPER

    Hi Experts,
    I have problem with selection screen in several reports. When I use match code for fiscal period selection I get only # as a possible value. I have checked the master data they seem to be correct. I work with 7.0 BW system. Can you please give me any hint what I should check?
    Thank you,
    Michal

    Hi,
    maybe I ask different way - how do you add characteristic values for a characteristic in the BEx? Is it automated somehow in SAP (e.g. from master data)? For the fiscal period I use custommer exit to fill in the default value, which is the current fiscal period. But this is something different, right?
    <removed by moderator>
    Michal
    Edited by: Arun Varadarajan on Nov 14, 2008 3:55 PM

  • I need to pass value for Actual GI date field in VL01N t code, I am using BAPI_DELIVERYPROCESSING_EXEC. can any one tell me how can i pass vaule ?

    I need to pass value for Actual GI date field in VL01N t code, I am using BAPI_DELIVERYPROCESSING_EXEC. can any one tell me how can i pass vaule ?

    Hi Abdul,
    Sorry for my unprecise answer, but you talk about a tcode, but you're using a BAPI Call. Maybe you want to call the transaction in batch mode?
    http://help.sap.com/saphelp_erp60_sp/helpdata/de/fa/09715a543b11d1898e0000e8322d00/content.htm
    Regards,
    Franz

  • How to Restrict Master data in value help screen for a user???URGENT

    Hello Gurus,
    I have a requirement.When a authorized user logins to view the report, he should see only list of customers assigned to that user in the value help screen, instead of displaying whole master data.and the data is displayed perfectly fine for the authorized sales rep. By default, Value help screen displaying all the customer numbers.
    How can I restrict in the value help screen?
    Any help appreciated with points.
    Regards,
    PNK

    Hi Chandran,
                I got that Idea too. I created a authorized customer, I created a authorized Object and assigned to a role.But in the role, when I am changing the object to generate profile, it is asking to select list of customers from the customer table.If the customers are always constant then this would work,  but in my scenario, customers for the sales rep changes over time and when I ever reps open the query, they should see updated list of customers assigned to them only, as we update the master data everyday from source system and that shud reflect in the value help.
    I am trying User Exit to achieve this, but I am not getting proper ideas how to do this.
    Any Help on this issue with user exit code???
    Thanks in Advance
    regards,
    PNK

  • Setting default values for field on screen.

    Hello,
    I am trying to set default value for one of the fields I have on screen when I execute the custom transaction.
    I am doing that in PBO as follows. But the default value is not set for Date field.
    PROCESS BEFORE OUTPUT.
    MODULE PBO_OUT.
    MODULE STATUS_5000.
    *&      Module  STATUS_5000  OUTPUT
          text
    MODULE STATUS_5000 OUTPUT.
      SET PF-STATUS 'NON_SAP_DOCUMENT'.
      SET TITLEBAR '001'.
    ENDMODULE.                 " STATUS_5000  OUTPUT
    *&      Module  PBO_OUT  OUTPUT
          text
    MODULE PBO_OUT OUTPUT.
      ERDAT = SY-DATUM.
    ENDMODULE.                 " PBO_OUT  OUTPUT
    Please help.
    Thanks.
    Regards,
    Rajesh.

    Works Now...

Maybe you are looking for