Box in layouts

i the first page
i wrote:
position....
box 30 tw somting like that an i get box.
in the <b>next page</b> i wrote exactly and i dont get page why?

Hi,
1st see for 2and page you given NEXT page or not.
In the next page the windows must be same as in the 1st page.
If you have the same windows in both the pages no need to code here and there. If you code in 1st page window it will automatically reflect in 2and page window.
First got to PAGES.
There you click on the NEXT page or 2and PAGE what ever you created.
here you need to get the main/footer/address windows also.
MENU>EDIT>CREATE ELEMENT.
One pop up will come the you double click on the desire window.
If you do like this you will get same windows in both the pages.
If you do changes in 1st page window it will automatically reflect in 2and page window also.
Remove that window from NEXT page and again copy from the WINDOWS.
Try like this.
Thanks.
If this helps u reward with points.
Message was edited by: KDeepak

Similar Messages

  • Show Borders check box in layout tab

    Is there a way to  change the default setting for the Show Borders check box so that it is turned OFF instead of on? In all of our dashboards we do not want the border to show and in each case I have to go into the layout tab and click off the Show Borders option. We have hundreds of analytics top post and it gets very tedious to do this for each one.
    Thanks,
    Tom

    I don't know of any place where you can set this, unfortunately.

  • Solved: InDesign CC: Problems with text in text box: text flows around invisible object

    I just upgraded from CS4 to CC. I have two problems with text in some text boxes:
    The text seems to flow around invisible object that I cannot find or delete. It's as if there is a photo or other object behind the text box; but when I press COMMAND-a to select all, I don't see any such object.
    When I move this text box, the layout of the text within changes. For example, when the box is high on my spread, the text flows correctly within the box; but when I move it down, it flows around that hidden other object. For another example, when the box is low on the page, the text starts at the top of the box; but when I move the text box up, the text starts somewhere in the middle of the box.
    I have checked margins of the text box and the paragraph options of the text paragraphs (margins, indents, alignments). They all look OK.
    If I modify the text box, checking the box "Ignore text wrap", then the problem goes away; but then the text also will not flow around a real object that I want it to flow around.
    Solution:
    There were objects in a hidden layer on that one spread. It seems that in CS4 when you "select all" you would also select objects in hidden layers; but in CC it doesn't.

    Arthur, Garry
    Would be great if you could send the files as attachment in an email to [email protected]
    Else, you may post here using these steps: http://forums.adobe.com/message/3994281
    Thanks!
    - Neeraj

  • Page layout mode - margins

    Hi,
    i would like to set fixed margins in page layout mode.
    e.g site layout with inside 1 cm and outside 2 cm.. simple.. - document margins doesn't work in layout mode.
    Rulers are no solution - i don't want to set or change rulers for every site and i can't fix the ruler correct anyway (e.g. only on .83cm and .79cm not on .80.. zooming in doesn't change it)
    thanks for your help-
    greetings
    Chris
    ah.. and.. of course.. help, manual, search function previously in use..

    thanks for your help - maybe i described the problem not exact.. my problem is:
    If you add a box in layout mode (doesn't matter whats inside - text, shapes or images) - you can drag the boxes out of the image, close the page border or with some margin to the border - you can align boxes to each other (horizontal, vertical...)
    But i didn't find a method for aligning all boxes with a certain margin like the document margins in text mode.
    Lets say i have a dozen boxes on a page and a couple of pages and i want to align all of these boxes with 2cm margin to left, top, right and bottom.. like the boxes in given templates.
    Do i have to drag all these boxes manually? - and what happen if i want to change my margin (lets say the printer calls you - it needs some 5mm more margin) - what i am looking for is something to set a certain margin i can align all boxes on and change quickly (.. like in text mode)
    Christoph

  • Little plus sign box

    I'm using text boxes in layout format of pages...
    some of the text boxes I have made small enough to only hold arrows as part of the pictorial diagram.
    2 of them (and they print as it has happened to me before) have little plus box tabs and do not "disappear" with the regular outlines of the text boxes when you click out of them.
    thanks for any help telling me how to "remove" these.

    M,
    Another way to state the problem that the + sign is trying to warn you about is this: "Not everything you put in the document is going to be visible on the screen or in a printout."
    If you think you're disappointed now, wait until you ignore the + sign and someone asks where your conclusion went.
    Jerry

  • MessageRadioSet  layout with uix

    I would like to have my messageRadioSet layout horizontally rather than vertically. The following is the code that I currently have, there doesn't seem to be any way to get the radio boxes to layout horizontally.
    &lt;messageRadioSet model="${bindings.Surfacedrainage}" prompt="Surface Drainage" selectedValue="${bindings.Surfacedrainage}"&gt;
    &lt;contents&gt;
    &lt;option text="Yes" value="Y" /&gt;
    &lt;option text="No" value="N" /&gt;
    &lt;/contents&gt;
    &lt;/messageRadioSet&gt;
    If anyone knows how to do this it would be greatly appreciated...

    You cannot lay it horizontally and that is not the intended behaviour.
    To achieve what you are asking for, you have to use flowLayout and use radioButtons inside it.
    Regards,
    Vijay V

  • Dual JList Layout

    I am trying to create a JPanel that has a JList on the left, one on the right and a tool bar in the middle. (JLists are in a JScrollPane) It is for selecting items and moving them between the two lists. That part works fine but I cannot get the layout to work out. I can get it to look nice in one container, but it will not re-size correctly. What I want is with a horizontal re-size both lists expand equally and the tool bar stays the same size, and vertical re-size the lists grow and the tool bar does not change. I have tried border, flow, box, group layouts and each one has some kind of issue. I need the lists to expand and re-size properly within the panel, and the tool bar to stay the same and in the center. So far group worked out the best, but the left list box was the only one that would re-size. After the lists where created, they will not re-size or expand with the border layout. Any suggestions and is there a way to specify what components will re-size and in what direction, and what ones will stay at a static size. I am using Jigloo to help with the group layouts, but I did the others by hand.
    try {
                   BorderLayout thisLayout = new BorderLayout();
                   this.setLayout(thisLayout);
                   this.setEnabled(false);
                        JPanel inPanel = new JPanel();
                        includeModel = new DefaultListModel();
                        include = new JList();
                        include.setModel(includeModel);
                        include.setCellRenderer(new CListCellRenderer());
                        inPanel.setBorder(BorderFactory.createTitledBorder(BorderFactory.createEtchedBorder(BevelBorder.LOWERED),
                                  "Selected", TitledBorder.LEADING, TitledBorder.DEFAULT_POSITION));
                        inPanel.add(new JScrollPane(include));
                        JPanel avaPanel = new JPanel();
                        avalibleModel = new DefaultListModel();
                        avalible = new JList();
                        avalible.setModel(avalibleModel);
                        avalible.setCellRenderer(new CListCellRenderer());
                        avaPanel.setBorder(BorderFactory.createTitledBorder(BorderFactory.createEtchedBorder(BevelBorder.LOWERED),
                                  "Avalible", TitledBorder.LEADING, TitledBorder.DEFAULT_POSITION));
                        avaPanel.add(new JScrollPane(avalible));
                        tools = new JToolBar();
                        tools.setOrientation(SwingConstants.VERTICAL);
                        tools.setFloatable(false);
                        this.add(inPanel, BorderLayout.LINE_START);
                        this.add(tools, BorderLayout.CENTER);
                        this.add(avaPanel, BorderLayout.LINE_END);
                             add = new JButton();
                             tools.add(add);
                             add.setIcon(new ImageIcon(getClass().getClassLoader().getResource("Support/Back24.gif")));
                             add.setActionCommand("add");
                             add.setToolTipText("Add Item(s)");
                             add.addActionListener(this);
                             del = new JButton();
                             tools.add(del);
                             del.setIcon(new ImageIcon(getClass().getClassLoader().getResource("Support/Forward24.gif")));
                             del.setActionCommand("del");
                             del.setToolTipText("Remove Item(s)");
                             del.addActionListener(this);
                             up = new JButton();
                             tools.add(up);
                             up.setIcon(new ImageIcon(getClass().getClassLoader().getResource("Support/Up24.gif")));
                             up.setActionCommand("up");
                             up.setToolTipText("Shift Item Up");
                             up.addActionListener(this);
                             down = new JButton();
                             tools.add(down);
                             down.setIcon(new ImageIcon(getClass().getClassLoader().getResource("Support/Down24.gif")));
                             down.setActionCommand("down");
                             down.setToolTipText("Shift Item Down");
                             down.addActionListener(this);
              } catch (Exception e) {
                   e.printStackTrace();
              }

    kb9mfd wrote:
    I think I answered my own question, I did not try gridbaglayout. It looks like that is the one I need to use.Here's one way, using GridBagLayout. Keep in mind:
    1) This is only one of many different ways to do this. Nested panels with varying LayoutManagers, which is a common technique, could also be implemented
    2) This code is for illustrative purposes only. Those who use GBL frequently (like myself) usually have a helper class or two to make the code easier to read and manage. As a result, the sample code here wouldn't be nearly as long.
    3) You described desired behaviors for stretching horizontally and vertically. You didn't mention shrinking. Regardless of LM used, I typically wrap my content panel in a JScrollPane (not shown here) to prevent unwanted results due to shrinkage ("I WAS IN THE POOL! I WAS IN THE POOL!!!").
    import java.awt.*;
    import javax.swing.*;
    public class Demo implements Runnable {
      public static void main(String[] args) {
        SwingUtilities.invokeLater(new Demo());
      public void run() {
        String[] items = new String[] { "apple", "banana", "carrot", "date" };
        JPanel swapPanel = createSwapPanel(items);
        JFrame f = new JFrame();
        f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        f.add(swapPanel, BorderLayout.CENTER);
        f.pack();
        f.setLocationRelativeTo(null);
        f.setVisible(true);
      private JPanel createSwapPanel(Object[] items) {
        JList availableList = new JList(items);
        availableList.setPrototypeCellValue("XXXXXXXXXX");
        availableList.setVisibleRowCount(6);
        JScrollPane availableScroll = new JScrollPane(availableList);
        availableScroll.setHorizontalScrollBarPolicy(
            JScrollPane.HORIZONTAL_SCROLLBAR_AS_NEEDED);
        availableScroll.setVerticalScrollBarPolicy(
            JScrollPane.VERTICAL_SCROLLBAR_ALWAYS);
        JList selectedList = new JList();
        selectedList.setPrototypeCellValue("XXXXXXXXXX");
        selectedList.setVisibleRowCount(6);
        JScrollPane selectedScroll = new JScrollPane(selectedList);
        selectedScroll.setHorizontalScrollBarPolicy(
            JScrollPane.HORIZONTAL_SCROLLBAR_AS_NEEDED);
        selectedScroll.setVerticalScrollBarPolicy(
            JScrollPane.VERTICAL_SCROLLBAR_ALWAYS);
        JButton addButton = new JButton(">");
        JButton removeButton = new JButton("<");
        JPanel p = new JPanel(new GridBagLayout());
        GridBagConstraints gbc = new GridBagConstraints();
        gbc.gridx = 0;
        gbc.gridy = 0;
        gbc.weightx = 0.5;
        gbc.weighty = 1.0;
        gbc.anchor = GridBagConstraints.NORTHWEST;
        gbc.fill = GridBagConstraints.BOTH;
        gbc.gridheight = 4;
        p.add(availableScroll, gbc);
        gbc.gridx = 1;
        gbc.gridy = 0;
        gbc.weightx = 0.0;
        gbc.weighty = 0.5;
        gbc.anchor = GridBagConstraints.CENTER;
        gbc.fill = GridBagConstraints.VERTICAL;
        gbc.gridheight = 1;
        p.add(Box.createVerticalGlue(), gbc);
        gbc.gridx = 1;
        gbc.gridy = 1;
        gbc.weightx = 0.0;
        gbc.weighty = 0.0;
        gbc.anchor = GridBagConstraints.CENTER;
        gbc.fill = GridBagConstraints.NONE;
        gbc.gridheight = 1;
        p.add(addButton, gbc);
        gbc.gridx = 1;
        gbc.gridy = 2;
        gbc.weightx = 0.0;
        gbc.weighty = 0.0;
        gbc.anchor = GridBagConstraints.CENTER;
        gbc.fill = GridBagConstraints.NONE;
        gbc.gridheight = 1;
        p.add(removeButton, gbc);
        gbc.gridx = 1;
        gbc.gridy = 3;
        gbc.weightx = 0.0;
        gbc.weighty = 0.5;
        gbc.anchor = GridBagConstraints.CENTER;
        gbc.fill = GridBagConstraints.VERTICAL;
        gbc.gridheight = 1;
        p.add(Box.createVerticalGlue(), gbc);
        gbc.gridx = 2;
        gbc.gridy = 0;
        gbc.weightx = 0.5;
        gbc.weighty = 1.0;
        gbc.anchor = GridBagConstraints.NORTHWEST;
        gbc.fill = GridBagConstraints.BOTH;
        gbc.gridheight = 4;
        p.add(selectedScroll, gbc);
        return p;
    }

  • How do I get the book title and author to appear on all pages?

    I'm trying to create a new layout, and I can't quite figure out some of the auto-text boxes.
    I'd like the book title, and author to appear at the top of the pages.
    Also, I'd like the chapter title to be at the top of the page for the subsequent chapter pages, but not in the same size as the chapter title at the beginning of the chapter.
    I've tried copying the chapter text box in layouts, then applying it to the chapter pages.  However, when I reformat the copied box for text size and orientation, the reformat effects all instances of that text box.  Grr.
    (I know this all sounds like too much text and garbage on each page, but it's for an instructional piece that people will likely print a page or two at a time)

    Hello Andy,
    Have you looked at the Layout Section.
    If it is not visible pull down the handle and the master pages are there down the list for you to add and change.
    Just first duplicate any page that you may want to change and then add the name and author titles to that page and press "APPLY"
    I hope this helps…
    Regards,

  • Problem with opening my current website in Muse

    Hi, I have a big problem with Muse.
    I can't open my current website.
    In fact, I have the following error message "Assert: "arrange Children:Very large bounds calculated for box with layout vertical". Could you please help me ? I'm using the new trial version and this is for an important job !!! 
    Thanks a lot in advance
    Tsuki

    Please send a link to this thread and your .muse file to [email protected] If your file is greater than 20mb you can use something like Adobe SendNow or SendThisFile.

  • Printing a multi page pdf -with multiple pages per sheet

    In order to save paper I create multiple page pdfs and in the print dialog box under Layout I select Pages per Sheet 2 , etc. The problem is when i try to print out the document, it only prints out the first page. The other pages fail to print. this only occurs when printing a pdf in this way. I have already re-installed Acrobat.
    error on printer is: error typecheck offending command and the file name changes on the printer to acr.000000.tem
    I'm using acrobat 8. Printing to a xerox docu-color printer.
    Mac 10.4.11

    Nope, that's a Flash-only effect. Sometimes people try to embed a SWF (Flash file) into a PDF, but that only plays like it's a movie, and doesn't work well.
    I think you should give up on the idea if you want to use PDF as the distribution method.

  • Table in design view not displaying properly

    I put in a table at 100% width - to house a spry menu.  It shows up fine in all browsers and in live mode, but in dreamweaver design view the table and menu display off to the right - outside of the workspace. It's a pain!  How do I fix this?

    You certainly do NOT need a table to hold your menu -- no matter which one you use.
    Table layouts went the way of the dinosaur last century.  Nowadays, we use CSS for layouts.  To illustrate, copy & paste this code into a new, blank document and preview in browsers.
    <!doctype html>
    <html>
    <head>
    <meta charset="utf-8">
    <title>HTML5 Document</title>
    <style>
        /**fixes the box model**/
        -moz-box-sizing: border-box;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
    /**basic layout**/
    body {
        width: 80%; /**adjust width in px, em or % as desired**/
        margin:0 auto; /**with width, this is centered**/
        background: maroon;
        font-family: Segoe, "Segoe UI", "DejaVu Sans", "Trebuchet MS", Verdana, sans-serif;
        font-size: 100%;
    header, footer { color: #FFF; }
    /**left sidebar**/
    aside {
        display:table-cell;
        width: 25%;
        padding: 1%;
        background: #C99;
    /**main content**/
    article {
        width: 75%;
        display:table-cell;
        padding: 2%;
        border-left: 1px dotted silver;
        background: #EAEAEA;
    footer {
        clear: left;
        font-size: 80%;
        text-align: center;
    /* BEGIN HORIZONTAL DROP-MENU */
    nav {
        position: relative;
        width: 100%;  /**adjust width as needed**/
        margin: 0 auto;
        padding: 0;
        text-align: center;
        z-index: 1000;
    nav ul {
        margin: 0;
        padding: 0
    nav li {
        list-style: none;
        font-size: 12px;
        float: left;
        text-align: center;
    /**top level menu**/
    nav li a {
        display: block;
        text-decoration: none;
        margin-right: 2px;   /* space between links */
        width: 12em;   /* adjust as needed or use auto */
        padding: 6px 15px;
        font-weight: bold;
        line-height: 2em;
        color: #1e5799;
        border: 1px solid #FFF;
        background: #C7D5E3;
    /**top menu style on mouse over**/
    nav li:hover > a {
        color: #FFF;
        background: #1e5799;
    /**sub-menu**/
    nav li ul {
        display: none;
        text-align: center;
        margin: 0;
        padding: 0 1em;
        background: #C7D5E3;
        font-weight: normal;
        font-style: oblique;
    /**sub-menu, help for older IE**/
    nav li:hover ul, nav li.hover ul {
        display: block;
        position: absolute;
        padding: 0;
    nav li:hover li, nav li.hover li { float: none; }
    /**drop-menu style**/
    nav li:hover li a, nav li.hover li a {
        width: 12em;  /* adjust width as needed or use auto */
        margin-top: 0;
        line-height: 1.25em;
        font-weight: normal;
        border: none;
    /**drop-menu style on mouse over**/
    nav li li a:hover {
        background: #D3E1B7;
        color: #004A43;
    /**clear floats**/
    nav:after {
        clear: both;
        display: block;
        content: '';
    /**END DROP MENU STYLES**/
    </style>
    </head>
    <body>
    <header>
    <h1>Your Awesome Site Name</h1>
    <h2>Some Pithy Slogan</h2>
    </header>
    <nav>
    <ul>
    <li><a href="#">Menu Item1 &#9660;</a>
        <ul>
        <li><a href="#">Sub_menu1a</a> </li>
        <li><a href="#">Sub_menu1b</a> </li>
        </ul>
    </li>
    <li><a href="#">Menu Item2 &#9660;</a>
        <ul>
        <li><a href="#">Sub_menu2a</a> </li>
        <li><a href="#">Sub_menu2b</a> </li>
        <li><a href="#">Sub_menu2c</a> </li>
        <li><a href="#">Sub_menu2d</a> </li>
        </ul>
    </li>
    <li><a href="#">Menu Item3</a></li>
    <li><a href="#">Menu Item4</a></li>
    <li><a href="#">Menu Item5</a></li>
    </ul>
    </nav>
    <aside>
    <h3>Left Sidebar</h3>
    <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.  Mauris vitae libero lacus, vel hendrerit nisi!  Maecenas quis velit nisl, volutpat viverra felis. Vestibulum luctus mauris sed sem dapibus luctus. </p>
    <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.  Mauris vitae libero lacus, vel hendrerit nisi!  Maecenas quis velit nisl, volutpat viverra felis. </p>
    </aside>
    <article>
    <h3>Aritcle Heading</h3>
    <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.  Mauris vitae libero lacus, vel hendrerit nisi!  Maecenas quis velit nisl, volutpat viverra felis. Vestibulum luctus mauris sed sem dapibus luctus.  Pellentesque aliquet aliquet ligula, et sagittis justo auctor varius. Quisque varius scelerisque nunc eget rhoncus.  Aenean tristique enim ut ante dignissim. </p>
    <h3>Heading 3</h3>
    <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.  Mauris vitae libero lacus, vel hendrerit nisi!  Maecenas quis velit nisl, volutpat viverra felis. Vestibulum luctus mauris sed sem dapibus luctus.  Pellentesque aliquet aliquet ligula, et sagittis justo auctor varius. Quisque varius scelerisque nunc eget rhoncus.  Aenean tristique enim ut ante dignissim. </p>
    </article>
    <footer>
    <small>© 2015 Your Site Name. All rights reserved.</small>
    </footer>
    </body>
    </html>
    Nancy O.

  • Color Management Confusion-Photoshop and monitors

    Ok, so I am asking this question because I am literally at my wits end with this color management stuff. I have become so confused in the past few days that I can’t even think straight. Anyway, I am hoping you all can help me “understand” how it all work. Let me start with some background information (since I know it will probably be asked)
    am a photographer, I utilize Lightroom 4 and CS3 (I know its old but I am planning on getting CS6 soon).
    put my pictures on the web that I will assume will be viewed on multiple different browsers.
    also will be sending my pictures to print at mpix or whcc. I may decide to print my own but haven’t really made that determination at this point.
    have a mac book pro that I work from.
    Ok, so I need to get a monitor to work with but I am unsure if I should just buy the thunderbolt mac monitor or get a wide gamut monitor. I have heard so many people say that the wide gamut monitors just messed them up. Also, I am bit confused on the nature of monitor profiles and how they work with photoshop and lightroom. I would assume the monitor applies a profile at all times? I also don’t understand the existence of the prophoto and wide gamut profiles for the mac monitors… they clearly are not wide-gamut monitors, so how do these profiles exist for them, and why would they be useful (if you set the profile to prophoto for example, it is all washed out as expected). Are these profiles “assigning” a profile to the color? I am assuming so because if they were converting them to just a standard rgb then you wouldn’t have the faded colors (correct?).
    I just am so nervous that I am going to create something that looks great in Lightroom or Photoshop but that looks awful on the browser, or worse, on a different monitor (standard monitor) and I would have no idea that it looked bad. Or, if I send something to a printer only to get a mess back.
    Also, please let me know if I correct in this. If I am in photoshop and I have an untagged image (send via a friend), and lets just say it is really a prophoto image (although my friend didn’t tell me) and I say to assign the prophoto profile (upon import to photoshop). If that truly is the correct profile, the image should look correct. Now consider two scenarios from there: 1) I embed that profile in the image, if I upload that to the web (I know to be cautious, you should always use srgb for web), if the person has a color managed browser, the image would properly appear, because the browser would recognize the profile (in this case “prophoto”) and convert it to whatever it needed to be. But, if it was not a color managed browser, I run the risk that the web browser will just assign a profile, which will wash the photo out most likely, correct? Ok… and scenario 2) after I get the image from my friend and assign the prophoto profile (since that is the correct profile the image was actually created in, although it was untagged when it was sent to me), the image will look correct… BUT, is photoshop displaying the prophoto profile, or is it converting to RGB for my viewing, or is my monitor converting it to rgb for my viewing? I guess I just don’t understand how the monitor fits into all of this. You HAVE to use your monitor to see your images, and since most monitors (including my current one are standard gamut) it would make sense that you actually can’t see anything in the prophoto profile, and you are truly looking at an srgb profile since that is all your monitor can display.
    Oh ya, and what benefit is the color match rgb? It seems everyone speaks of the srgb, prophoto, and argb.. but never some of the others.. so maybe I am just lost. I would even appreciate a link to some tutorials if you think those would be helpful.
    I am seriously confused.. I would really appreciate the help.

    I am not surprised you are confused about colour management because its a confusing subject. Luckily you own a Mac so you can get to grips with what the problems that colour management solves using the "colorSync Utility" and you will find this in Applications >> Utilities >> colorSync Utility. If you own a windows computer then I am sorry but you will be out of luck here and you should know better when you buy your next computer!! I am not sure why Apple gave us this application but it is really useful and all will help you understand Color Management.
    1. Launch Applications >> Utilities >> ColorSync Utility.
    2. You will see a list of "Installed ColorSync Profiles". Choose Adobe RGB 1998 which I hope you have chosen in you camera preferences.
    3.You will see a 3D representation of the Adobe 1998 Colour space. This represents all the colors this colour space will hold.
    4. Top left hand corner you will see a little arrow pointing down next to "Lab Plot". Click on this and a drop down menu will appear.
        Choose "Hold For Comparison"
    5. Now somewhere in the "Installed ColorSync Profiles" list you will find the profile for you monitor. Choose this.
    6. You will now see a new colour space inside the Adobe 1998 Colour space. If you have a cheap monitor the colour space will be small
    inside the Adobe 1998 profile. This means that you monitor cannot show you all the colors that are missing.
    7. Now choose a printer profile say, if you use them a profile for an Epson paper or any printer profile you have and you will see another profile in the Adobe 1998 box which shows you the only colors that your printer can print. If you like choose your monitor profile then hold for comparison then the printer profile and it will clearly show the mis match between you monitor and printer.
    8. Now choose SRGB and this will show you what colors a person using an average Windows monitor can see, poor people.
    So this is the problem, all devises can reproduce only a certain range of colors. The adobe 1998 profile does not show all the colors our eyes can see " choose Generic Lab" profile, then "hold for comparison" then Adobe 1998 and you will see Adobe 1998 is a small profile but is a good average of our collective colour vision.
    So how to solve all these missing colour problems. Well if you think of each devise, including you camera as speaking a different language from you monitor and printer then it is easy to understand that you need some sort of translator so that they all know exactly what colour is being talked bout pixel by pixel in an image. This is held in the ICC profile, but an ICC profile has o do more than this.
    Say you camera can produce a specific red we will call for demo purposes "001" and your monitor cannot produce it, how do you solve this? Well it is very easy to fool our eyes. Our eyes work by comparison so if the profile maps red "001 to the nearest red that the monitor can show and then proportionally remaps all other reds to fit within the reds the monitor can show us then we actually think we are seeing a full range of reds. The problem comes if we use the wrong profile for this. The red 001 could be re mapped anywhere and could be outside what the monitor can show. Say that happens but the printer can reproduce that red 001. We would see an image on the monitor with not many reds and when we printed it we would be shocked to find reds on the print. Worst, we would see an image on the monitor without reds and would correct for this and end up with a print with heavy reds and would not be able to work out why.
    So to solve this we should:
    1. use the correct camera profile when we are opening "Raw" files.
    2. Make sure you have the correct monitor ICC profile selected in "System Preferences" >> Displays.
    3. In photoshop we should make sure that the " Edit >> colour settings " are set to Adobe 1998 for RGB.
    4. If you are going to print you own photo in Photoshop go to "View >> Proof Setup >> Custom" and a box will
    open. Choose the profile of your printer and paper and choose "Perceptual" for rendering intent and then " OK". If you cannot find
    a profile for you printer and paper go to the printer of paper manufactures web site and download the profiles and instal
    them.
    5. You can now adjust the colors and contrast and photoshop will simulate how the output devise will deal with this. If you
    are using an outside printing house, they will supply you with their ICC profile to download so just follow the same procedure and
    choose their ICC profile and and do you colour correction.
    If you have a cheap monitor you will still not get a 100% result but you will get closer. You really need a monitor that you can  calibrate
    regularly because generic ICC profiles are just that. They are made from the results of many monitors and so are 90% or worse accurate.
    If you want to see a flag ship monitor at work go to http://www.eizo.com/global/support/db/products/software/CG223W#tab02 and go
    to the bottom of the page and download the Eizo Coloredge CG223W monitor profile, instal it on your mac then open then ope
    Launch Applications >> Utilities >> ColorSync Utility choose Adobe 1998 the hold and compare it with the  Eizo Coloredge CG223W
    profile. This is not the top of the range Eizo monitors that we use but you will see that this monitor will show most of the missing colour you monitor does not. This is actually a good tip if you are buying a monitor. Download the monitors profile and see how good it really is.
    The weak link still is printing. The colors you see in RGB on a back lit RGB screen are very hard to reproduce by CYMK inks on paper. Here you really should have a profile made for your printer and chosen paper. If you don't want the expense of buying a calibrator and doing it yourself, there are on line services that will do this for you.
    One final point you must remember. If you are using soft proofing in Photoshop ( "View >> Proof Setup >> Custom" as explained above), when you print you MUST choose in "Colour Handling" "Photoshop Manages Colour" and in the next step when the printing box appears
    you will see a drop down box with "Layout" in it. Click on this and choose "Colour Management and choose "Off No Colour Management". If you do not do this Photoshop will manage the colour then the printer will do it again and the print will be a disaster.
    This is a starting point really. Colour management is difficult but just try to remember that you need a translator between each step in the process to make it work so you have to make sure the correct profiles are being used by you camera, the program you use for opening the Raw photo files (Please don't use jpegs straight from the camera, but thats another subject), the correct monitor profile and output profile. If you don't check these it is like chinese whispers and your picture will be printed in Double Dutch!!.
    Hope that helps. I am on location In Italy for a couple of months so will be unlikely to be able to reply to any questions for a while. Will try to check back and see how you are getting on. Drop me a line at [email protected] if you have any questions. Good luck.
    Paul Williams

  • Problem in Calling a smartform in a driver program(SE38)

    Hi,
          I created a report in SE38 and i have a 5 CHECK Boxes. i called a smartformsin that program.
    My problem is if i check the 5 check boxes the layout should show 5 copies.
    if i check 3 check boxes the layout should show 3 copies. e.t.c.
    Edited by: vijay krishna on Jul 12, 2008 9:47 AM

    Hi amit,
            thanks for this code.
    But  i am using this code.  i have 3 check boxes as vendor , gatepass , office copies
    if i select this 3 check box i want the three copies of there repective copy heading like in first page Vendor copy , in 2nd copy gatepass copy e.t.c.
      w_formname  = 'Z_MM_REP_GATEPASS'.
      CALL FUNCTION 'SSF_FUNCTION_MODULE_NAME'
        EXPORTING
          formname           = w_formname
        IMPORTING
          fm_name            = w_fm_name
        EXCEPTIONS
          no_form            = 1
          no_function_module = 2
          OTHERS             = 3.
    call function w_fm_name
      exporting
      ARCHIVE_INDEX              =
      ARCHIVE_INDEX_TAB          =
      ARCHIVE_PARAMETERS         =
      CONTROL_PARAMETERS         =
      MAIL_APPL_OBJ              =
      MAIL_RECIPIENT             =
      MAIL_SENDER                =
      OUTPUT_OPTIONS             = tdcopies
      USER_SETTINGS              = 'X'
        s_bukrs                    = v_bukrs
        s_mblnr                    = p_mblnr
        s_mjahr                    = p_mjahr
        s_data                     = p_data
        s_lifnr                    = v_lifnr
        s_nrgp                     = r_nrgp
        s_rgp                      = r_rgp
        s_gp                       = r_gp
        s_gpcc                     = r_gpcc
        s_chal                     = r_chal
        s_truck                    = p_truck
        s_date                     = p_date
        s_freight                  = p_freigh
        coun                       = var
    IMPORTING
      DOCUMENT_OUTPUT_INFO       =
      JOB_OUTPUT_INFO            =
      JOB_OUTPUT_OPTIONS         =
      tables
        s_itab                     = ITAB[]
    EXCEPTIONS
      FORMATTING_ERROR           = 1
      INTERNAL_ERROR             = 2
      SEND_ERROR                 = 3
      USER_CANCELED              = 4
      OTHERS                     = 5
    if sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    endif.
    Edited by: vijay krishna on Jul 12, 2008 1:17 PM
    Edited by: vijay krishna on Jul 12, 2008 2:37 PM

  • Problems in screen painter

    Hi,
    whenever i used to open my screen painter for editing layout its giving me only alpha screen even i have checked the option in utilities or unchecked tell me what should be the problem

    Hi,
    Go to menu Utilities of screen painter
    User specific settings
    Select the tab Screen painter
    Select the check box Graphical layout editor.
    Hope your problem will be solved.
    <b>Reward if helpful.</b>

  • A long left click shows the right click menu

    When I hold down the left mouse button, the right click menu appears.
    I want to turn off this function, but can't remember which extension controls it or whether the function is built in to Firefox.

    Hooray!! Found it! Thank you Google.
    I found an old - very old - thread on Mozillazine.org:
    http://forums.mozillazine.org/viewtopic.php?f=38&t=340572
    And it IS a normal Firefox feature, but is normally OFF.
    I think I must have recently turned it on after reading a "Firefox Tips and Tricks" article somewhere.
    Anyway, the preference is called "ui.click_hold_context_menus".
    And I just remembered that I added it in my "user.js" preferences file, amongst a load of others:
    * Disable the Delay When Installing New Extensions
    user_pref("security.dialog_enable_delay", 0);
    * To turn off the URL greying
    user_pref("browser.urlbar.formatting.enabled", false);
    * To unhide the "http" portion of a URL
    user_pref("browser.urlbar.trimURLs", false);
    * Enable spell checker in multi-line text boxes & single-line text boxes
    user_pref("layout.spellcheckDefault", 2);
    * Double underline style
    user_pref("ui.SpellCheckerUnderlineStyle", 4);
    * Cycle through open tabs with Ctrl+Tab
    user_pref("browser.ctrlTab.previews", false);
    * Disable Animations for Full Screen
    user_pref("browser.fullscreen.animateUp", 0);
    * Click and hold on a hyperlink to show the context menu
    user_pref("ui.click_hold_context_menus", true);
    * Instant Apply Preferences Without Closing Options Window
    user_pref("browser.preferences.instantApply", true);
    * Middle-click in any textfield, addressbar or searchbox to paste clipboard
    user_pref("middlemouse.paste", true);
    So there's a lesson to be learned here: don't add too many tweaks to your Firefox preferences at the same time or you may forget what you did!
    Thanks, all. I'll now mark this as "Solved"!

Maybe you are looking for

  • Scheduling a report in Portal

    I want to implement delivering reports (9i) through portal. One of the requirements is to have the user the ability to schedule the report to run at any given time. I heard that 9iAS portal has this ability. If somebody knows how to do it please resp

  • Adding Records In The User Exit

    I have a requirement to modify the transactional data user exit 0CO_PC_PCP_01. Currently this datasource extracts cost estimate data and using some complex rules I need to determine the active cost estimate for each month and duplicate the records ac

  • Quicktime 7 OS status error -50 when opening a movie.

    Have reinstalled quicktime 7, think there's some conflict. Have tried rereinstalling, updating, copying application from another computer. But quicktime 7 just won't play anything! Think there's a file corrupted somewhere.... not sure where to check.

  • My itunes does not open

    my itunes does not open

  • Parkin invoices using IDOC INVOIC02

    Hello experts, We need to park invoices (related to a PO) using IDOCs. I have being reading that INVOIC02 with process code INVL may do this. However my question is: How SAP determines if I want to park or post an invoice? Is there any flag in the ID