Printing and presentation

1 An international copyright symbol should be readily available in the print module to be prefixed to the photographer's name and date in the identity plate so that this can be postioned beneath the image.
2 Some clients request that the photograph title is positioned to the left or right of the image rather than centred. In addition, sometimes a lot of text needs to be written to accompany a picture as an introduction or explanation. It is difficult, other than by trial and error,to achieve the positioning of this text as the printed result can differ from what is portrayed in the edit window.
3 In the Contact sheet/grid mode, more variations on layout should be available similar to the picture package mode which only allows for the one image to be replicated. This could , for example, allow for three different images of varying depths but similar widths to be printed with spacing between them or sandwiched together. Alternatively, there could be one central dominant picture with encircled by smaller pictures.More flexiblity is the key.
4 When resizing pictures in the print module, especially when parts of an image have been cropped, it would be useful to have a warning if the image is becoming distorted or less sharp on resizing.It is not immediately obvious that sharpness is being lost or that people's faces are made wider for example.

No. What version of the OS are you running? It is probably a font problem. On 10.6 you can save PDF files as PDF-X that should eliminate this problem.

Similar Messages

  • Screen Print and report print in 11g Forms

    Hi,
    I have created a popup menu in forms 11g which has a label print screen.
    When user clicks on it, it is supposed to bring up the list of printers that user has on his PC, so that they can choose the printer where they want to print to.
    Do I need to use webutil for it? or is there any other way?.
    Thanks
    Munish

    If you plan on printing from the client your only options are to use WebUtil or write your own java bean.
    That said, if you are generating the labels using Reports, why not generate to a pdf file? If you coded your form properly, the pdf will open on the client side in something like Acrobat Viewer. If they want to print it they can click on the "Print" button in PDF viewer.
    If you really want to make it complicated and present a list of printers and allow them to pick one then send the job to the printer, this will take some effort. Here are some starter tips assuming the client will always be Windows based:
    You can get the current default printer like this:
    -- More registry info for printing can be found here:   http://support.microsoft.com/kb/102966
    Declare
         rtn_Registry               varchar2(255);
         rtn_defaultPrinter          varchar2(255);
    Begin
         rtn_Registry := CLIENT_WIN_API_ENVIRONMENT.Read_Registry('HKEY_CURRENT_USER\Software\Microsoft\Windows NT\CurrentVersion\Windows','Device');
         rtn_defaultPrinter := substr(rtn_Registry,1,instr(rtn_Registry,',',1)-1);
         message (rtn_defaultPrinter);  -- This is the name of the default printer
    End;Some printer properties and preferences can be called with something like this:
    -- More details here:  http://support.microsoft.com/kb/q189105/
    Declare
         my_cmd varchar2(255);
         rtn_Registry               varchar2(255);
         rtn_defaultPrinter          varchar2(255);
    Begin
    -- Get default printer
         rtn_Registry := CLIENT_WIN_API_ENVIRONMENT.Read_Registry('HKEY_CURRENT_USER\Software\Microsoft\Windows NT\CurrentVersion\Windows','Device');
         rtn_defaultPrinter := substr(rtn_Registry,1,instr(rtn_Registry,',',1)-1);
         -- Printer default preferences
         my_cmd := 'rundll32 printui.dll,PrintUIEntry /e /n "'|| rtn_defaultPrinter ||'"';
         -- Printer properties
    --     my_cmd := 'rundll32 printui.dll,PrintUIEntry /p /n "'|| rtn_defaultPrinter ||'"';     
         -- Printer queue
    --     my_cmd := 'rundll32 printui.dll,PrintUIEntry /o /n "'|| rtn_defaultPrinter ||'"';
         If rtn_defaultPrinter IS NULL Then
              Message('Default printer not detected.');
              Message('Default printer not detected.');          
              RAISE Form_Trigger_Failure;
         End if;
         SYNCHRONIZE;     
         CLIENT_HOST(my_cmd);
    End;The complete list of installed printers can be found in the Registry here:
    <blockquote>HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Print\Printers</blockquote>
    Take a look at this java bean example used to help print to the local printer from Forms.
    <blockquote>http://forms.pjc.bean.over-blog.com/article-6621538.html</blockquote>

  • Retrieving data from an ArrayList and presenting them in a JSP

    Dear Fellow Java Developers:
    I am developing a catalogue site that would give the user the option of viewing items on a JSP page. The thing is, a user may request to view a certain item of which there are several varieties, for example "shirts". There may be 20 different varieties, and the catalogue page would present the 20 different shirts on the page. However, I want to give the user the option of either viewing all the shirts on a single page, or view a certain number at a time, and view the other shirts on a second or third JSP page.
    See the following link as an example:
    http://www.eddiebauer.com/eb/cat_default.asp?nv=2|21472|9&tid=&c=&sc=&cm_cg=&lp=n2f
    I am able to retrieve the data from the database, and present all of them on a JSP, however I am not sure how to implement the functionality so that they can be viewed a certain number at a time. So if I want to present say 12 items on a page and the database resultset brings back 30 items, I should be able to present the first 12 items on page1, the next 12 items on page2, and the remaining 6 items on page3. How would I do this? Below is my scriplet code that I use to retrieve information from the ArrayList that I retrieve from my database and present them in their entirety on a single JSP page:
    <table>
    <tr>
    <%String product=request.getParameter("item");
    ArrayList list=aBean.getCatalogueData(product);
    int j=0, n=2;
    for(Iterator i=list.iterator(); i.hasNext(); j++){
    if(j>n){
    out.print("</tr><tr>");
    j=0;
    Integer id=(Integer)i.next();
    String name=(String)i.next();
    String productURL=(String)i.next();
    out.print("a bunch of html with the above variables embedded inside")
    %>
    </tr>
    </table>
    where aBean is an instace of a JavaBean that retrieves the data from the Database.
    I have two ideas, because each iteration of the for loop represents one row from the database, I was thinking of introducing another int variable k that would be used to count all the iterations in the for loop, thus knowing the exact number. Once we had that value, we would then be able to determine if it was greater than or less than or equal to the maximum number of items we wanted to present on the JSP page( in this case 12). Once we had that value would then pass that value along to the next page and the for loop in each subsequent JSP page would continue from where the previous JSP page left off. The other option, would be to create a new ArrayList for each JSP page, where each JSP page would have an ArrayList that held all the items that it would present and that was it. Which approach is best? And more importantly, how would I implement it?
    Just wondering.
    Thanks in advance to all that reply.
    Sincerely;
    Fayyaz

    -You said to pass two parameters in the request,
    "start", and "count". The initial values for "start"
    would be zero, and the inital value for "count" would
    be the number of rows in the resultSet from the
    database, correct?Correct.
    -I am a little fuzzy about the following block of code
    you gave:
    //Set start and count for next page
    start += count; // If less than count left in array, send the number left to next next page
    count = ((start*3)+(count*3) < list.size()) ? (count) : ((list.size() - (start*3))/3)
    Could you explain the above block of code a little
    further please?Okay, first, I was using the ternary operators (boolean) ? val_if_true : val_if_false;
    This works like an if() else ; statement, where the expression before the ? represents the condition of the if statement, the result of the expression directly after the ? is returned if the condition is true, and the expression after the : is returned if the condition is false. These two statments below, one using the ternary ? : operators, and the other an if/else, do the same thing:
    count = ((start*3)+(count*3) < list.size()) ? (count) : ((list.size() - (start*3))/3);
    if ((start*3)+(count*3) < list.size()) count = count;
    else count = ((list.size() - (start*3))/3);Now, why all the multiplying by 3s? Because you store three values in your list for each product, 1) the product ID, 2) the product Name, and 3) the product URL. So to look at the third item, we need to be looking at the 9th,10th, and 11th values in the list.
    So I want to avoid an ArrayIndexOutOfBounds error from occuring if I try to access the List by an index greater than the size of the list. Since I am working with product numbers, and not the number of items stored in the list, I need to multiply by three, both the start and count, to make sure their sum does not exceed the value stored in the list. I test this with ((start*3)+(count*3) < list.size()) ?. It could have been done like: ((start + count) * 3 < list.size()) ?.
    So if this is true, the next page can begin looking through the list at the correct start position and find the number of items we want to display without overstepping the end of the list. So we can leave count the way it is.
    If this is false, then we want to change count so we will only traverse the number of products that are left in the list. To do this, we subtract where the next page is going to start looking in the list (start*3) from the total size of the list, and devide that by 3, to get the number of products left (which will be less then count. To do this, I used: ((list.size() - (start*3))/3), but I could have used: ((list.size()/3) - start).
    Does this explain it enough? I don't think I used the best math in the original post, and the line might be better written as:
    count = ((size + count)*3 < list.size()) ? (count) : ((list.size()/3) - start);All this math would be unnecessary if you made a ProductBean that stored the three values in it.
    >
    - You have the following code snippet:
    //Get the string to display this same JSP, but with new start and count
    String nextDisplayURL = encodeRedirectURL("thispage.jsp?start=" + start + "&count=" + count + "&item=" + product);
    %>
    <a href="<%=nextDisplayURL%>">Next Page</a>
    How would you do a previous page URL? Also, I need to
    place the "previous", "next" and the different page
    number values at the top of the JSP page, as in the
    following url:
    http://www.eddiebauer.com/eb/cat_default.asp?nv=2|21472
    9&tid=&c=&sc=&cm_cg=&lp=n2f
    How do I do this? I figure this might be a problem
    since I am processing the code in the middle of the
    page, and then I need to have these variables right at
    the top. Any suggestions?One way is to make new variable names, 'nextStart', 'previousStart', 'nextCount', 'previousCount'.
    Calculate these at the top, based on start and count, but leave the ints you use for start and count unchanged. You may want to store the count in the session rather than pass it along, if this is the case. Then you just worry about the start, or page number (start would be (page number - 1) * count. This would be better because the count for the last page will be less than the count on other pages, If we put the count in session we will remember that for previous pages...
    I think with the details I provided in this and previous post, you should be able to write the necessary code.
    >
    Thanks once again for all of your help, I really do
    appreciate the time and effort.
    Take care.
    Sincerely;
    Fayyaz

  • How can I get my photos to print as they look on iphoto? Have tried my personal printer and Walgreens.

    How can I get my photos to print as they look on iphoto? Have tried my personal printer and Walgreens.

    Im not exactly sure what you mean by color profile..can you specify? So i have a dslr canon and take great portraits and tune them to exactly how I want them to look, they dont print at all like the colors presented on my screen. If i antique them then they print yellowish. Ive even tried printing them at walgreens because i thought it was my new printer. Hp hasnt let me doown til now. Is ot a printer setting? Ive never had this kind of printing issue.

  • Printer not present when trying to connect even though drivers have been installed

    printer not present when trying to connect even though drivers have been installed

    Hi Marc,
    If you are having issues with printing from your iMac I would suggest that you troubleshoot using the steps in this article -
    Mac 101: Printing (Mac OS X v10.6)
    http://support.apple.com/kb/HT3771
    Specifically -
    Troubleshooting steps you can use if there is an issue
    Ensure the printer is connected, has power, has ink / toner, paper, and no alerts on its built-in display.
    Network based printers should be on the same subnet; you shouldn't have to worry about this if your printer is on your home network.
    Use Software Update for the latest available updates.
    Delete the affected printer from Printer & Fax System Preferences, then re-add the printer.
    If the issue persists, try these additional steps:
    Reset the printing system (see below). Then, add the printer again.
    If the issue persists, reset the printing system again.  Download and install your printer's drivers from here. Then, add the printer again.
    If the issue still persists, contact the printer vendor or visit their website for further assistance.
    Thanks for using Apple Support Communities.
    Best,
    Brett L

  • [FIX] Darker prints and color shifts when printing from Lightroom 2

    Hi,
    The problem :
    When printing RAW or TIFF files from LR2, you get a printer output that
    is much darker than it should be and that presents various color shifts.
    I'm using an Epson Stylus Pro 3800 with the latest Windows driver
    (6.50 - which is rather old by the way). The workaround described below
    works for me under Windows XP SP3. It should also probably work with
    other systems/printers/drivers. Use at your own (minor) risk.
    The "official" procedure for printing from LR is as follows:
    1. Do not let the printer manage colors and select "Other..." from the
    profile dropdown list and select the ICC/ICM paper/printer profile that
    you want to use.
    2. Click on Print... in LR which opens the Print Settings dialog.
    3. Select the options you need and the paper you're using.
    4. **Disable the color management from the driver's side** (in Epson's
    drivers, "Mode | Custom | No Color Adjustments").
    5. Print
    Unfortunately, **this doesn't work** for many of us and this produces a
    print that is dark and has color shifts as mentioned above. Note that
    the same image prints correctly from QImage or Photoshop CS3 (that is,
    the printer output corresponds to what you see on your calibrated
    display).
    Apparently, although color management has been (allegedly) disabled in
    the driver, there's something wrong between LR and the driver which
    makes that *both* LR and the driver are still trying to manage colors.
    In other words, the "No Color Adjustements" option of the driver doesn't
    seem to work with LR.
    The workaround (found after hours of hair pulling and paper and
    expensive ink wasting):
    In step #4,
    1. Instead of selecting "No Color Adjustments", set Mode to "Custom |
    ICM
    2. Click Advanced...
    3. Check "Show all profiles".
    4. Select Driver ICM (Advanced)"
    5. Set **both** the "Input profile" and the "Printer profile" fields to
    the very same profile that you specified in LR.
    That is, if you specified Pro38 PGPP (Premium Glossy Photo Paper) in LR,
    then also select Pro38 PGPP in both "Input Profile" and "Printer
    Profile". This has actually the same effect has disabling color
    management in the driver (what "No Color Adjustements" should normally
    take care of).
    That's it. When printing, you'll get exactly the same color results as
    when printing from QImage or Photoshop. No more dark prints. No more
    color shifts.
    One might think that the bug is in the Epson driver but in that case,
    QImage would have the very same problem. So I tend to think that the bug
    is on the Lightroom side.
    Note: Although Photoshop CS3 produces a correct printer output, it
    demonstrates the same problem as LR when using the "Match Print Color"
    option for soft proofing. But in that case, only the preview colors are
    wrong. The printer output is ok. Which also tends to demonstrate that
    Adobe has the problem, not Epson. Or maybe both... :-) .
    Don't ask me why some users have the problem and other don't.
    Hope this helps.
    Patrick Philippot
    MainSoft Consulting Services
    www.mainsoft.fr

    A sincere thank you for your reply, Michael. Sorry about the "it just doesn't make sense" shortcut. I have been trying to solve this issue since LR 1.1, spending dozens of hours on different trials and digesting everything written on this forum and the B9180 forum about color management and double profiling. My shortcut was a summation of my experience (and my frustration) but doesn't really advance the conversation. Here are some data that should be more useful in diagnosing the problem.
    I am running Windows XP SP2. I calibrate my monitor monthly with the Spyder. The reason I suspect this may be an issue of double profiling is because the results (moderately strong magenta overlay plus an increase in contrast) match what more knowledgeable people than I on this forum describe when double profiling occurs. Perhaps I shouldn't presume it is double profiling, and follow Patrick Philippot's lead in naming the problem "color shifts." Patrick does refer in post #2 of this thread, however, to obvious double profiling.
    I certainly do have a successful and consistent print method. With PS CS3, and either my Epson 1280 or my HP B9180, the output is almost always dead on. Here is how I do it. In PS from the print dialog box, under color handling I always choose "Photoshop manages colors." Then under printer profile I select the profile designated by the manufacturer for a particular paper/printer combination. Then in the printer driver I disable printer control of color. With the Epson I check the box "Off (No Color Adjustment)." With the B9180 I choose the option "Application Managed Colors." While I sometimes may tweak the final output, these procedures have served me well with PS for several years.
    Contrasted with my positive PS experience, my experience with LR printing has been inconsistent. I regret having to be so imprecise but truly sometimes LR produces accurate results that match the calibrated monitor, but most of the time it does not. I use standard procedures with LR that parallel the PS ones described above. In LR's printing panel, under color management, I specify the correct profile, just as I did for PS. Then in the printer driver I use the same procedures I use with PS. Most of the time the prints have the magenta overlay and too much contrast.
    BTW, the inconsistent LR printing only takes place with my HP B9180. I have never had any problem with off-color LR prints with my Epson 1280. Again, I emphasize that I have standard procedures that always work with PS (no matter which printer) and LR (but only with the Epson).
    Unfortunately the LR printing problems are intermittent. Some of the time (perhaps 20%) LR produces fine prints in the B9180, indistinguishable from PS prints. When LR is printing well, it will continue to print fine until "something happens" and the output shows the color shift. This means I do not get a random sequence of good-bad-good-bad prints, but rather good-good-x factor-bad-bad-bad. Ths problem is that I do not know what this "x factor" is. Once, when LR was giving me accurate output, I simply changed the default printer (Control Panel-Printers and Faxes) from the B9180 to my Samsung 1430 laser; immediately afterwards the LR output colors shifted. Did LR react to this change in default printers? Another time I had good LR printing success with version 1.2 but ran into the problems described above when I upgraded to version 1.3.
    Sorry for the long post. I am hoping that someone will see something that I am missing and provide a hint. I think, though, that Patrick is correct when he states, "I tend to think that the problem is with LR. After all, similar issues (obvious double profiling) are observed only in LR but with various printers."

  • Question about printing and resolution

    Hello
    I am trying out a trial version of PE13 and am attempting to come to terms with printing and resolution.
    I have also read this informative tutorial here:
    How Image Resolution Affects Print Quality - Photoshop Tutorial
    This is the image I would like to print:
    In the tutorial referred to above, the author states that when printing, 300 resolution is best and not the 79.3 px/inch that I have. When I change that 79.3 to 300, the image of Marilyn becomes tiny, so my question is how can I have an image that would neatly fit onto A4 photo paper maybe with a 1" white border around it (meaning the image size would be 8" x 6") while retaining a 300 resolution?
    Am I going about this the right way, aren't I?
    Many thanks.
    Steve

    Steve,
    The most important thing about resolution is the dimension in pixels.
    Your original is 433 x  653 pixels. Just good enough to display on a normal laptop.
    With A4 format at 300 ppi, you'd need:
    21 / 2.54 * 300 = 2480 pixels wide
    29.7 / 2.54 * 300 = 3507 pixel high.
    Any image editor won't be able to add the missing resolution, but the solution is to let the editor guess the missing pixels by interpolation methods.
    You won't get more details than those present in the original file, but you'll get a smoother, non 'pixelated' image.
    In the Elements editor, you have to check the 'resample' checkbox to be able to keep the outpur size while increasing the ppi to 300.

  • IPhoto, Colorsync and Custom Printer and display profiles

    I am attempting to understand the way that iPhoto 6 handles/uses custom ICC profiles that have been set in System Prefs>Monitors>Color, and in Utilities>ColorSync Utility>Devices>Printers.
    In short, my monitor and printer have both been custom profiled, (Using System Preferences>Monitors>Color, I've set my custom monitor profile. Using the ColorSync utility I have selected my custom ICC profile for my printer). My camera is using SRGB. iPhoto is set to 'Add ColorSync profile'.
    Page setup is set for the proper printer and paper size.
    Using the Advanced Print Setup I have selected the appropriate paper type, turned off printer color correction, and activated ColorSync color correction.
    I'm not certain that iPhoto and ColorSync are actually talking to each-other.
    I come from a Photoshop background, where it is possible to set the printer profile at output, using 'Print with Preview'. This setup is intended for my parents though, so Photoshop is not an option.

    1. > What sort of output problems are you encountering?
    1) No output problems, I'm simply trying to figure out ColorSync interacts with iPhoto as there's little or no documentation on the topic.
    2. > Also what printer are you using or your parents will be using?
    2. My folks are using a Canon S820
    More specifically, I'm hoping to use a custom printer profile, which has produced decent color accurate results with this setup in Photoshop.
    This presents 2 questions, a) how to utilize the new custom printer profile in iPhoto (use color sync utility? by declaring the profile in the 'Current Profile' section for the device) and b) does iPhoto pay attention to the Current Profile selected profiles when printing?
    Basically I'm looking for info regarding the behavior of iPhoto with regards to ColorSync. The lack of documented info is the problem.
    I was told today when on the phone with Apple, that iPhoto pays attention to the default profile and not the Current Profile selection, but the rep didn't sound sure, so I'm not too confident in his response.
    Also, it doesn't make sense to me that ColorSync Utility would allow you to select a profile and that iPhoto would then subsequently ignore it.
    My folks are importing camera images that are tagged as sRGB, iPhoto is set to apply the profile per the advanced prefs, their monitor is profiled and the profile is activated.
    iPhoto has plenty of documentation regarding the tagging of images with color profiles, and the display of these profiles with regard to Apple monitors (by using CameraRGB etc) but not a heck of a lot devoted to getting good prints at home through the use of ColorSync, and custom profiles.
    ColorSync was designed for just this type of thing, and when you print, it's available as a color correction option in the Color Settings section of the print dialog box, but there's nothing written regarding using it effectively and properly.
    Getting color accurate prints is not a 'Pro' feature, it's something that the Mac is supposed to embrace out of the box thru the use of ColorSync...that's the whole point of ColorSync a system wide color management workflow regardless of the 'Pro-ness' of the app or so I thought.
    Every rep (AppleStore, Genius Bar, Creatives, AppleCare, iPhoto Software support) try to pass this of as a pro feature, and it is not– is something that ColorSync is supposed to be doing for the whole system, not just Aperture or Photoshop
    MacBook   Mac OS X (10.4.8)  

  • Creating InDesign files for both print and mobile output?

    I am looking for a way to create files that can be multi-purpose for both print and mobile/online environments. I would like the output to be 2 different PDFs from one set of Indesign files. The problem I am encountering is that currently my files are full of hi-res and vector graphics, effects, and are generally created to be optimized for large-scale printings on offset or digital presses. I am trying to use the same files to generate files that are optimized for mobile and online presentation but finding that the number of vector graphics specifically is slowing page display down.
    My initial reaction is that the solution would have to be dual-development. Multiple forms of 'master graphics' would have to be created and placed on multiple layers (one for print and one for mobile/online).
    Hi-res files could be made lo-res in Acrobat or Pitstop, but vector imagery would have to be rasterized and I am not aware of a method to do that in either of those programs.
    I have found some info on adobe.com leading me to think that maybe CS6 addresses some of this, but the majority of my work is being done in CS4 with only the bleeding edge being done in CS5.
    Thanks in advance for any insight.

    the output to be 2 different PDFs from one set of Indesign files.
    You can accomplish this by saving each PDF using a different preset - High Quality Print for the high res, smallest file size for web
    but vector imagery would have to be rasterized...
    You should be trying to keep all vector work as vectors. This, in most cases, lowers the file size. There are a couple of exceptions to that like if the vectors are very complex (layered etc) and you are using bitmap effects like drop shadows. In general, rasterizing will increase the file size and lower the quality.
    Is there any functional difference between the 2 PDFs? I am wondering why exporting using 2 different presets will not do the job efficiently enough. You could always save your linked images with a low res version - same file but make a copy 100dpi instead of 300dpi. This might help but InD normally downsamples the images anyway when exporting as smallest file size.
    EDIT:// In Acrobat, you can save as "Reduced Size PDF" which strips out all the meta data etc and makes the PDF lighter and faster for web use. This would be a final, before publishing online step.

  • I have secured PDF documents to prevent printing and saving the document. Why PDF plugin built into Firefox allows you to skip the security?

    I am using PDFfactory to secure the PDF documents in my company. Despite this, users can open the document in Firefox and print, and save it locally. This is unacceptable because of the ISO standards process in my company. Please help ASAP.

    ''dzuniek [[#question-1046197|said]]''
    <blockquote>
    I am using PDFfactory to secure the PDF documents in my company. Despite this, users can open the document in Firefox and print, and save it locally. This is unacceptable because of the ISO standards process in my company. Please help ASAP.
    </blockquote>
    I think the first course of action would be to try securing with a different authoring program (if you have access to one) and seeing if you have the same problem.
    As for the downloading and printing side of it, even with a protected PDF, anyone with the intent and a little knowledge will be able to download it. Or screenshot each page in their viewer.
    One way to prevent them getting a usable print is to create a solid annotation field across each page of the document. It will be invisible whilst just being viewed but when printed the annotation field will cover everything, thereby producing a blank page.
    Is it fair to ask whether a pdf is the best way of presenting information that you do not want them to download and subsequently print, seeing as that is exactly the reason PDF's exist?

  • Sending to print and other options SLOW

    Photoshop CC and the updated CC2014 are both killing production time when trying to print and do a few other various things (build text boxes, set brushes, etc.). There are no external plug-ins, there are no 3rd party add-ons. We don't run heavy graphics, just use photoshop to open artwork that's been provided by customers, mostly, and set them up to send to print. None of the preferences have been reset beyond attempting to increase the run speed by using Edit>Preferences>Performance. Even this doesn't help. We run Fiery as a printer server, if that helps. But we can't keep having photoshop drag down our production times like this! It can take anywhere from 1-5 minutes to get it to respond!!! We ran CS6 just fine, and it didn't have a problem with our systems. It's just updating to CC that seemed to be the cause of the issues. We are running Windows 7 on our computers. We have several different machines, but are having the exact same problems on all of them regardless of processors/video cards/etc. I've read other posts from people having similar issues, but none of the solutions that have been presented so far have been of any help. Are there any other suggestions to try?

    Hi,
    Check OSS Note[ 1010519|https://service.sap.com/sap/support/notes/1010519], you'll find all the options you need for parameter ~webgui_simple_toolbar
        0   : Hiding the page header completely (not recommended)
        1   : Standard setting
        2   : Displaying the title line
        4   : Displaying the buttons [Exit] and [Help]
        8   : Displaying the active system buttons on the screen
                (for example, [Back] and [Cancel])
        16  : Displaying the system menu
        32  : Displaying the application buttons
        64  : Displaying the main menu button (new)
        128 : Deactivating the information block in the status bar
        256 : Deactivating the the status bar
    Best regards,
    Guillaume

  • Web pages print and preview blank in spite of resetting config and confirming printer is identified

    ''locking as a duplicate of https://support.mozilla.org/en-US/questions/942134''
    Web pages preview and print as blank in firefox 16 but not other browsers such as IE.

    Hi,
    If the webpage has a print icon/link you can try to use that. Also, try right-clicking on the area to be printed and choose '''This Frame''' (if the option is present) > '''Print Frame'''.
    [https://support.mozilla.org/en-US/kb/fix-printing-problems-firefox Fix printing problems]
    [http://kb.mozillazine.org/Problems_printing_web_pages Printing problems]
    If printing was generally working correctly previously, you can also reset Firefox and check.
    The Reset Firefox feature can fix many issues by restoring Firefox to its factory default state while saving your essential information.
    Note: ''This will cause you to lose any Extensions, Open websites, and some Preferences.''
    To Reset Firefox do the following:
    #Go to Firefox > Help > Troubleshooting Information.
    #Click the "Reset Firefox" button.
    #Firefox will close and reset. After Firefox is done, it will show a window with the information that is imported. Click Finish.
    #Firefox will open with all factory defaults applied.
    Further information can be found in the [[Reset Firefox – easily fix most problems]] article.
    Did this fix your problems? Please report back to us!

  • I am having trouble printing to an Epson XP600.  It is a new printer and it has been replaced because we thought it was the printer.  Basically, when I print from Excel, only color will print.

    I am having trouble printing to an Epson XP600.  We have replaced the printer and we are still having the same problem.  When I try to print from Excel, only the color prints.  Any suggestions?

    Has anyone else had issues not being able to print black (such as a document)?  My photos print great, but when I try to print a simple black-ink document, it won't work. Any suggestions?

  • I have an wireless printer and a new wifi router. I have set the printer and iPhone / iPad correctly to the new router but when i try to print it won't recognise the air printer. Help. All was working fine on my old router

    I Have a new wifi router and have set up my iPad / iPhone and wireless printer correctly  to the new router but I can't print from the iPad and iPhone. It keeps saying ' no AirPrint printer found'. Help please!

    Start with the most basic thing that you can try. Unplug the router from power for about 30 seconds, and restart the printer and the iPad and plug the router back into power.

  • We just added a new printer and bluetooth connection to our iMac.  Now iTunes does not recognize our iPads as devices.  Have already tried restarting everything.  Any other suggestions?

    We just added a new printer and bluetooth connection to our iMac.  Now iTunes does not recognize our iPads as devices.  Have already tried restarting everything.  Any other suggestions?

    You can try the steps recommended here: http://www.apple.com/support/ipad/assistant/itunes/

Maybe you are looking for

  • GDM 3.6 wont start

    I installed a brand new system two days ago, from the latest Arch ISO. I'm using Xorg 1.11 and Catalyst 12.6 from the official xorg111/hd234k repos. My DE is Gnome Shell 3.6.1. Arch is dual booted alongside Windows 8 (sda1/2 for Win8, sda3/4 for Arch

  • Uneven distribution of memory in the blades even after reorg

    Hello: We have 3 blades in our BI-A system, and we see that one of the blades is always consuming almost twice the memory of the other 2 blades. We have tried reorg without any success.  Any suggestions on how to fix this issue? Thanks, Bindu

  • Java Reports

    how to create a report in jsp?

  • NOT INSERTING

    SQL> SELECT * FROM EMP; EMPNO ENAME JOB MGR SAL DEPTNO 7369 SMITH CLERK 7902 800 20 7499 ALLEN SALESMAN 7698 1600 30 7521 WARD SALESMAN 7698 1250 30 7566 JONES MANAGER 7839 2975 20 7654 MARTIN SALESMAN 7698 1250 30 7698 BLAKE MANAGER 7839 2850 30 778

  • Safari 5.0.5 keeps crashing

    It only works fine when running in 32-bit mode. (Without Rosetta turned on) If I turn on 32-bit mode with Rosetta it will crash at startup too. 64-bit does not work at all, it just opens then crashes. When it first opens the page will take a while to