Printing layout problem with Lightroom CC 2015 Release

Hello,
I am working with the following configuration :
MacBook Pro (15-inch, Mid 2010)
OS X Yosemite Version 10.10.3
Adobe Photoshop Lightroom CC 2015 Release
EPSON Stylus Pro 3880
I tried to print two images on a Super A3 paper sheet with an EPSON Stylus Pro 3880 directly from Lightroom and here is an example of what I expected (I resized and added a black border for better visibility on the forum):
This is the preview I have in the printing module of Lightroom and this is also what I have when I print to a JPEG file with Lightroom.
Sadly, after I launched the printing job, this is what came out of the printer:
As we can see, the layout of the two pictures has been shifted toward the top of the paper sheet (cropping the top of the first image in the process) and about 30% of the right part of the layout has not been printed.
Do you have any idea of what I am doing wrong here?
For your information, I do not print very often so I am not 100% sure that I set everything correctly. However, I have been successfully printing in the past and it was with the same MacBook Pro on the same EPSON Stylus Pro 3880 printer but it was with OS X Yosemite Version 10.10.1 and with Lightroom 5.x (I cannot remember exactly which version).
Moreover, because my print was urgent, I retried with a Windows machine running Lightroom 4.x with the same printer and it was a success. So I doubt that my initial settings on my MacBook Pro were wrong although I am not 100% sure.

I am in France and I found out that EPSON is providing at least two different files for its v9.33 driver that relate to the Stylus Pro 3880 with OSX:
epson16738.dmg: US version (https://www.epson.com/cgi-bin/Store/support/supDetail.jsp?UseCookie=yes&oid=141552&prodoid =63085147&infoType=Downloads&d…)
epson379436eu.dmg: French version (Support et téléchargements - Epson Stylus Pro 3880 - Epson)
and I realize that I was using the US driver which.
After few minutes of refection, I realized that the 3880 driver that I installed on my MacBook pro was the only piece that was present when my prints failed and absent when my prints succeeded. So I though it had found out the cause of my problems until I tried with the french driver (epson379436eu.dmg)...
In the meantime Adobe has release of new version of lightroom so let me recap my new configuration:
MacBook Pro (15-inch, Mid 2010)
OS X Yosemite Version 10.10.3
Adobe Photoshop Lightroom CC 2015.0.1 [ 1018573 ] (info available in Help menu > System info > Lightroom version)
EPSON Stylus Pro 3880
Epson driver v9.33 epson379436eu.dmg
... and the result of my test is ... nothing at all! Lightroom sends the the print job to the printer but nothing comes out of it.
However, when I printed to a file from lightroom and then tried to print this file with OS X Preview on the Epson 3880, it worked perfectly.
It also worked when I printed from Photoshop CC (2014.2.2).
It also worked when I printed from Lightroom but with a different printed and driver (Canon MF8580Cdw).
Therefore, among the five elements of my configuration cited above, there is none for which the printing job is always failing. It is hard to find out what is the faulty piece of software!

Similar Messages

  • Have a  problem with Lightroom 5.4.  Since the program crashed yesterday it won't launch, it comes up with the message "Lightroom encountered an error when reading its preview cache and needs to quit".  "  Lightroom will attempt to fix this problem net ti

    Have a  problem with Lightroom 5.4.  Since the program crashed yesterday it won't launch, it comes up with the message "Lightroom encountered an error when reading its preview cache and needs to quit".  "  Lightroom will attempt to fix this problem next time it launches".  Except that it doesn't, I keep getting the same message and the program closes.  Does anyone know what I  can do to repair it?  Can't back up, can't do anything.

    There are dozens of threads in this forum that describe the fix

  • Problem with file descriptors not released by JMF

    Hi,
    I have a problem with file descriptors not released by JMF. My application opens a video file, creates a DataSource and a DataProcessor and the video frames generated are transmitted using the RTP protocol. Once video transmission ends up, if we stop and close the DataProcessor associated to the DataSource, the file descriptor identifying the video file is not released (checkable through /proc/pid/fd). If we repeat this processing once and again, the process reaches the maximum number of file descriptors allowed by the operating system.
    The same problem has been reproduced with JMF-2.1.1e-Linux in several environments:
    - Red Hat 7.3, Fedora Core 4
    - jdk1.5.0_04, j2re1.4.2, j2sdk1.4.2, Blackdown Java
    This is part of the source code:
    // video.avi with tracks audio(PCMU) and video(H263)
    String url="video.avi";
    if ((ml = new MediaLocator(url)) == null) {
    Logger.log(ambito,refTrazas+"Cannot build media locator from: " + url);
    try {
    // Create a DataSource given the media locator.
    Logger.log(ambito,refTrazas+"Creating JMF data source");
    try
    ds = Manager.createDataSource(ml);
    catch (Exception e) {
    Logger.log(ambito,refTrazas+"Cannot create DataSource from: " + ml);
    return 1;
    p = Manager.createProcessor(ds);
    } catch (Exception e) {
    Logger.log(ambito,refTrazas+"Failed to create a processor from the given url: " + e);
    return 1;
    } // end try-catch
    p.addControllerListener(this);
    Logger.log(ambito,refTrazas+"Configure Processor.");
    // Put the Processor into configured state.
    p.configure();
    if (!waitForState(p.Configured))
    Logger.log(ambito,refTrazas+"Failed to configure the processor.");
    p.close();
    p=null;
    return 1;
    Logger.log(ambito,refTrazas+"Configured Processor OK.");
    // So I can use it as a player.
    p.setContentDescriptor(new FileTypeDescriptor(FileTypeDescriptor.RAW_RTP));
    // videoTrack: track control for the video track
    DrawFrame draw= new DrawFrame(this);
    // Instantiate and set the frame access codec to the data flow path.
    try {
    Codec codec[] = {
    draw,
    new com.sun.media.codec.video.colorspace.JavaRGBToYUV(),
    new com.ibm.media.codec.video.h263.NativeEncoder()};
    videoTrack.setCodecChain(codec);
    } catch (UnsupportedPlugInException e) {
    Logger.log(ambito,refTrazas+"The processor does not support effects.");
    } // end try-catch CodecChain creation
    p.realize();
    if (!waitForState(p.Realized))
    Logger.log(ambito,refTrazas+"Failed to realize the processor.");
    return 1;
    Logger.log(ambito,refTrazas+"realized processor OK.");
    /* After realize processor: THESE LINES OF SOURCE CODE DOES NOT RELEASE ITS FILE DESCRIPTOR !!!!!
    p.stop();
    p.deallocate();
    p.close();
    return 0;
    // It continues up to the end of the transmission, properly drawing each video frame and transmit them
    Logger.log(ambito,refTrazas+" Create Transmit.");
    try {
    int result = createTransmitter();
    } catch (Exception e) {
    Logger.log(ambito,refTrazas+"Error Create Transmitter.");
    return 1;
    } // end try-catch transmitter
    Logger.log(ambito,refTrazas+"Start Procesor.");
    // Start the processor.
    p.start();
    return 0;
    } // end of main code
    * stop when event "EndOfMediaEvent"
    public int stop () {
    try {   
    /* THIS PIECE OF CODE AND VARIATIONS HAVE BEEN TESTED
    AND THE FILE DESCRIPTOR IS NEVER RELEASED */
    p.stop();
    p.deallocate();
    p.close();
    p= null;
    for (int i = 0; i < rtpMgrs.length; i++)
    if (rtpMgrs==null) continue;
    Logger.log(ambito, refTrazas + "removeTargets;");
    rtpMgrs[i].removeTargets( "Session ended.");
    rtpMgrs[i].dispose();
    rtpMgrs[i]=null;
    } catch (Exception e) {
    Logger.log(ambito,refTrazas+"Error Stoping:"+e);
    return 1;
    return 0;
    } // end of stop()
    * Controller Listener.
    public void controllerUpdate(ControllerEvent evt) {
    Logger.log(ambito,refTrazas+"\nControllerEvent."+evt.toString());
    if (evt instanceof ConfigureCompleteEvent ||
    evt instanceof RealizeCompleteEvent ||
    evt instanceof PrefetchCompleteEvent) {
    synchronized (waitSync) {
    stateTransitionOK = true;
    waitSync.notifyAll();
    } else if (evt instanceof ResourceUnavailableEvent) {
    synchronized (waitSync) {
    stateTransitionOK = false;
    waitSync.notifyAll();
    } else if (evt instanceof EndOfMediaEvent) {
    Logger.log(ambito,refTrazas+"\nEvento EndOfMediaEvent.");
    this.stop();
    else if (evt instanceof ControllerClosedEvent)
    Logger.log(ambito,refTrazas+"\nEvent ControllerClosedEvent");
    close = true;
    waitSync.notifyAll();
    else if (evt instanceof StopByRequestEvent)
    Logger.log(ambito,refTrazas+"\nEvent StopByRequestEvent");
    stop =true;
    waitSync.notifyAll();
    Many thanks.

    Its a bug on H263, if you test it without h263 track or with other video codec, the release will be ok.
    You can try to use a not-Sun h263 codec like the one from fobs or jffmpeg projects.

  • After years of never a problem with lightroom started with lightroom 5 yesterday and today all of a

    After years of never a problem with lightroom, yesterday i started wiith Lightroom 5 and today all of a sudden in development mode everything just stopped working. No matter what I do none of the sliders have any effect on the picture whatsoever.
    Please help Duncan

    you'll need both serial numbers to install the lr 5 upgrade.
    if you purchased and downloaded lr 4 from adobe or registered with adobe, you may be able to find your lr 4 serial number under the account used to make that purchase/registration (not necessarily your current adobe id), Adobe ID
    and adobe support may be able to help you, contact adobe support by clicking here and, when available, click 'still need help', https://helpx.adobe.com/contact.html

  • Issue with Lightroom CC 2015's before and after (\) - Windows 7

    Okay, I downloaded Lr CC 2015 and everything is working great except for one thing - before and after. I edit an image then move to another (settings synced but needs a few refinements). I finish the edit and hit \ to take a look at where it started. When I do so, Lr decides to go back to the previous image, thinks about it, then shows me the before of the correct image. After the first time pressing \ it doesn't happen again, unless you move to another image. A little irritating, but something I can put up with. Is anyone having the same issue? Everything is up to date; graphics, OS, etc. Also worth noting, this does not happen with Lr 5.7.
    Any ideas, or should I post a bug report over on feedback.photoshop.com?
    Thank you,
    Benjamin

    Issue with Lightroom CC 2015 - Before and After (\)

  • Problem with Lightroom and Epson Printer

    I'm suddenly having problems printing from Lightroom. I have Lightroom 1.4.1 installed on an iMac G5, and have an Epson Photo Stylus R2400. I've been using this combination from the beginning with no problems. Now suddenly when I try to print I get an error message that says Media is out or not loaded correctly. Neither is the case. I have tried restarting my computer, the printer and everything else I can think of, but nothing works. I can print from any other application without problems, so I'm assuming it's an issue with Lightroom.
    Has anyone experienced anything similar? I was going to uninstall lightroom and do a reinstall but I can't find my installation disc. Now I'm at a loss to figure out what to do.
    Thanks,
    Craig

    Try deleting you prefs file and/or print templates.
    Lightroom is unique to many other programs in that it saves and restores printer settings. Some bad data may tried to be passes. A "fresh start" might help.

  • Printing Problems with Lightroom 5

    I cannot get Lightroom 5 to print to my Epson 3880 in Mac OS X 10.8.4.  Lightroom 4 works just fine.  However, from Lightroom 5, it starts spooling and then nothing happens.
    I've tried reinstalling drivers, restarting CUPS, rebooting, restarting Lightroom, power cycling the printer, etc. etc.   Lightroom 4 works great, Lightroom 5 does not.  This appears to clearly be a bug with Lightroom 5.
    Any suggestions?
    Keith

    Sounds like you may have a corrupt preferences file: http://www.lightroomforums.net/showthread.php?14226-Resetting-(or-Trashing-)-the-Lightroom -Preferences-file

  • Printing problem with Lightroom 2.7

    Hi,
    I use Windows 7- 64 bit OS and Lightroom 2.7. When I print (Epson 2880) from Lightroom, my shadows print much darker and I lose shadow details. I can correct by over exposing shadows thru trial and error which means 2 or 3 wasted prints. Can anyone suggest anything to address this problem?
    Mukib

    If you are using Windows see this:
    http://forums.adobe.com/thread/358029?tstart=0

  • Default printer and problem with printing Crystal Report

    Good morning
    I have SAP B1 and on the client the default printer is "AMM_4014DN_PCL6_domain-srv FRONTE-RETRO"
    Then i have another printer "AMM_4014DN_PS_domain-srv".
    Before the default printer were the "AMM_4014DN_PS_domain-srv".
    Now the default printer is "AMM_4014DN_PCL6_domain-srv FRONTE-RETRO".
    When i push the button "Print" in the menu bar to print for example an invoice, instead of printing on the default printer AMM_4014DN_PCL6_domain-srv FRONTE-RETRO is always printing on then AMM_4014DN_PS_domain-srv.
    The report to print was made with Crystal Report 2008 and on the report I also set the correct default printer (AMM_4014DN_PCL6_domain-srv FRONTE-RETRO).
    So what's the problem ? Why is continue to print to the older printer ?
    So i also delete the older printer (AMM_4014DN_PS_domain-srv) and very strange still printing on the old printer.
    I also shut down the client, but no effect.
    The operating system of the client is Win Vista and SAP B1 is host on a Win2008 server.
    Thanks in advance.
    Regards Gabriele

    hi,
    Check this SAP Notes
    [1030589 - Printing preference in document printing|https://websmp230.sap-ag.de/sap(bD1lbiZjPTAwMQ==)/bc/bsp/sno/ui_entry/entry.htm?param=69765F6D6F64653D3030312669765F7361706E6F7465735F6E756D6265723D3030303130333035383926]
    [1609615 - Obtain printer settings from default printing layout|https://websmp230.sap-ag.de/sap(bD1lbiZjPTAwMQ==)/bc/bsp/sno/ui_entry/entry.htm?param=69765F6D6F64653D3030312669765F7361706E6F7465735F6E756D6265723D3030303136303936313526]
    regards,
    Fidel

  • Exposure problem with Lightroom 4 CS5 and Raw 6.7

    Hi all
    I have recently upgraded from Lightroom 3.6 to the new Lightroom 4 and am genrally pretty happy with it, I tend to use it along with photoshop CS5 extended and also imagenomic Portraiture, but I have found an annoying little problem in doing this and something that I never suffered with when using Lightroom 3.6 and it is this...
    when I take an image from Lightroom 4 and click Edit image in Photoshop CS5 and then use Imageonmic to soften skin etc all seems to work well I then carry out any touching up within Photoshop and once finished save it back to lightroom for any final tweaks etc which is fine and all works smoothly, except once I have saved it back to Lightroom the exposure has been pushed up about 3-4 stops at least , meaning I then have to pull it down again and this can sometimes result in extra editing I could do with out. now I know its not the end of the world and is probably just a bug that I'm hoping will be sorted within Lightroom 4 but I just wondered if anyone else has had a similar problem, is it a bug or am I doing something wrong? (although I'm doing the same with Lighroom 4 as i used to do with LIghtroom 3.6 and that worked fine)
    Oh one more thing I should mention to get lightroom 4 and CS5 to work properly together I had to go into the Adobe Labs site and download the Camera RAW 6.7 software for CS5 so it could also be a bug here i guess.

    There have been several posts over on the Lightroom forum, and other non-Adobe forums also, about this issue: it seems that there's a bug in ACR 6.7RC which causes the image to be over-expose, compared with the setting applied using PV2012 in LR. I guess this is the kind of thing a Release Candidate is supposed to flag up! I was all set to upgrade my own ACR to ensure that PS would recognise my LR4 edits (I normally avoid RC versions and wait for the final), but all the reports of this problem have stopped me from doing so.
    In the meantime, best option so far as I'm aware is to process the image in LR (you get the option when you choose to edit in PS), meaning that it does all the rendering before passing it over to PS (otherwise, ACR handles the conversion of the raw file into TIFF). This does however mean that smart-objects and so on are temporarily out of the equation.
    I'm sure this will all be resolved pretty soon.
    Edit: in fact, one of the posts I mentioned is about ten posts down in this very forum: http://forums.adobe.com/thread/974963?tstart=0
    M

  • Print Layout Problem

    hello all,
    im wrongly posted this in SDK, im reposting it here. thanks.
    i made a UDF Invoice Number(BP invoice #) in Marketing doscuments in the document Header and i want to print this Invoice Number in the outgoint payments.my problem is i cant fetch the UDF(Invoice Number) to my Print layout since i made my UDF(Invoice Number) in the marketing documents and im fetching the UDF(Invoice Number) in Payments.
    Please Help...
    Fidel

    >
    Thanga Raj.K wrote:
    Hai!
    1. U are having a UDF in A/P invoice.
    2. U are adding some value (refer) on that UDF while adding the invoice.
    3. U want that value to be dispalyed in Payments.
    4. Add a new UDF in Payments - Invoice Rows
    5. Assing a FMS in Payment UDF with auto refresh on BP.
    6. Bring that into PLD.
    Regards,
    Thanga Raj.K
    hi Thanga,
    i did the steps as what u said, step 4, i added UDF (BP Invoice Number) in Payments please see image
    [IMG]http://i264.photobucket.com/albums/ii184/abing430/SAP/UserFields.jpg[/IMG] 
    also please see image of my A/P Invoice here u can see the UDF(Invoice Number in Marketing Document)
    A/P
    [IMG]http://i264.photobucket.com/albums/ii184/abing430/SAP/APInvoice.jpg[/IMG]
    also please see image of my Outgoing Payments that has already an FMS on UDF(BP Invoice Number in the Payments)
    Outgoing
    [IMG]http://i264.photobucket.com/albums/ii184/abing430/SAP/OutgoingPayments.jpg[/IMG]
    here is my actual Query that i save for the FMS "SELECT T0.U_INVOICE FROM OPCH T0 WHERE $[$-5.0.0]" and using this query i got an error and i cant get my desired result. i'm having trouble in making the query, please help.
    best regards,
    Fidel

  • Import problems in Lightroom cc 2015 for Mac

    In Lightroom cc 2015 for Mac, import won't automatically start even though that box is checked in Preferences and when I manually start import the thumbnails are poor quality and when I check on one instead of getting larger it gets very small.

    1. At what point does the import fail?  When you click to go into the import dialog?  At some point while viewing the import dialog?  Or after you click the Import button in the import dialog?
    My scenario:  If the SD card contains mixed media (i.e. photos (jpg or raw) + MOV), when I click on File > Import Photos and Video, the thumbnail previews start to load and about 10 seconds later LR becomes unresponsive... this goes on for several minutes (I assume this is based on the amount of media on the card) after which time I get an error message from LR saying there were problems with the following files: (and it goes on to list only the MOV files).  After I get this message, I am able to successfully import the photos only.
    2. Can you import a single photo from a location on your local hard drive?  (this helps eliminate whether the problem is with a specific card, card reader, or mixed media situation).
    I have tried with multiple SD cards from 2 different cameras (Canon and Olympus) with the same EXACT behavior.
    3. What does the failure look like?  Is it a lock (Lightroom is running, but doesn't respond to mouse clicks, etc.)?  Is it a crash (Lightroom shuts down unexpectedly)?  Is it a failed import, but Lightroom continues to run?  Is there any error message?
    See #1 above.
    Hope this helps.
    Russ

  • Problem with Lightroom and Infrared Photography

    This problem is specifically related to using LR & PS to process Infrared images. I apologize if this forum may not be the correct place to ask this question.  I am having problems processing Infrared Images when using LR & PS.  I take my IR images with a 530 IR conversion to a Canon G12 camera.  I learned early on Adobe products don't play well with IR images (they come in magenta when importing ) so I bring IR images shot withmy G12  into my computer with Canon Digital Photo Professional and then work in LR & PS from there. 
    If I then directly open this imported image from my hard drive into Photoshop and try and do adjustments such as blue sky adjustments with a red/blue channel swap, it works fine, just as I would expect.
    (If you are not familiar with IR processing, I understand this introduction and question will not make sense)
    But when using Lightroom, I sometimes have issues. I always import all my images into LR. Even with IR images, after using DPP to bring them to my computer, I import them into LR for cataloging purposes and to make other potential adjustments. Then my usual workflow is to move photos from LR to Photoshop via the "edit in" command. This opens a dialog box giving a choice of "edit a copy with LR adjustments" which is the default option and the one I always use, or "edit original".
    Here's the interesting thing I finally discovered.
    If I send the photo from LR to PS using the "edit a copy with Lightroom adjustments" option, I get a bad blue sky effect, where the sky is green and the foliage is pink instead of the sky being blue and the foliage yellow. But if I send it to PS using the "edit original" option, the blue sky effect works fine.
    So there appears to be an issue when tring to send IR images from Lightroom to Photoshop. Any thoughts?
    Thanks,
    Matthew Kraus

    Thanks so much for working on this.
    I fear the behavior you noticed was just due to the fact I cheanged the
    file from 16 bit to 8 bit so the size was smaller and I could easily email
    it.  When I open any of my regular 16 bit files, whether I send them to PS
    as "edit original" or "edit copy with lightroom adjustments", they both end
    up as 16 bit and as far as I can see, seem the same, though obviously they
    are not.
    I don't really have a preset, but I'll walk you through the process.
    1. Choose Channel Mixer from the Adjustment Pannel
    2. Make sure the output channel is red, change the red channel slider from
    100% to 0% and increase the blue channel slider from 0% to 100%.  You can
    type in the values.
    3. Change the output channel to blue.  Increase the red channel from 0% to
    100% and the blue channel from 100% to 0%.
    This is supposed to change the sky from brown to blue and the foliage from
    blue to yellow and is what happens when you use the "edit original"
    option.  When you use the "edit copy with lightroom adjustments", the sky
    turns green and the foliage pink.  So you get 2 different behaviors,
    depending on which option you use to bring the image from LR to PS.
    That's my question, why do you get 2 different behaviors?
    Thanks,
    Matthew Kraus

  • Default Query Print Layout problem

    Hello:
        I have a query below SELECT T0.[ItemCode], T0.[Dscription], sum(T0.[Quantity]) as 'Quantity' FROM INV1 T0 WHERE month(T0.[DocDate]) =month([%0]) AND  year(T0.[DocDate]) = year([%0]) and T0.[ItemCode] IS NOT NULL GROUP BY T0.[ItemCode], T0.[Dscription] ORDER By T0.[ItemCode].
        Which basically output monthly inventory invoiced qty. It works fine. However when I try ti link to the default system print layout and try to print. The column 'quantity' become very small and cut off most of the number. How do I make it bigger? I have been trying to modify it for quiet a while now. Nothing seems to work. I think it's length is preset base on the column lenth in the table! If that's the case how do I make it wider?
        Also the default layout for user query are pretty weired. I think it's dynamically allocating spaces depends on number of column. But what happens when you do functions such as sum, avg..etc. There is no present length. So they just disregard it?
      Any help will be appreciated.. Thank You
    Sincerely Yours
    Bo Peng

    Hi Bo,
    I am asuming that u are not yet familiar with how to work with PLD (Print Layout Designer). I would suggest that u see some tutorials from the following link and then try to change that default layout according to ur own requirements
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/media/uuid/51c19891-0901-0010-6eb1-e71abf09298a
    Reagrds
    Rizwan Hafeez
    Team Lead
    SAP Addon Development Section
    Abacus Consulting - Pakistan

  • HP Smart Web Printing feature, problem with IE7 and FireFox3

    "HP Smart Web Printing" problem with Internet Explorer 7 and FireFox 3I have a laptop that came with: Windows Vista Home Premium, Internet Explorer 7, FireFox 1.9. Everything worked fine.
    Recently I bought a "HP Photosmart C4580 All-in-One" printer that came with a free software "HP Smart Web Printing".
    Smart Web Printing worked fine with FireFox 1.9 browser. I liked it very much, because with it, I could print only the portions from the web page that I want, thus saving on inks. It really does more than that.
    With IE 7, Smart Web Printing was a disaster. IE 7 stopped working. Every time I closed a web browser window, IE7 would stop working and start all over again. It happened all the time.
    On suggestion from Microsoft Windows help desk I "Reset IE Setting". This solved the IE 7 problem , but it also removed the Smart Web Printing feature.
    Next, one day I downloaded latest version of FireFox browser "FireFox 3". Once again I lost the Smart Web Printing Feature, because it was not compatible with FireFox 3.
     Now here I am with no "Smart Web Printing" feature at all.
     Any suggestion how can I get "Smart Web Printing" feature back. I love the feature
    Thanks

    March 27th 2009 I've just downloaded HP Smart Web Print onto an HP a6500f desktop system running Vista-64.  I first installed it as a limited user and I get no icon in the IE7 taskbar.  I examined the manage add-ons dialog and it was installed but the toolbar configuration has no control icon for SWP icon.
    Then I logged off and logged on as a privileged user and downloaded again and tried to install.  This 2nd installation actually REMOVED my first installation.
    So I then downloaded for a third time and installed and it finished installing but there was no SWP icon in the tool bar.  I examined the Manage Add-Ons dialog and saw one in there on the left side.  I transfered the inactive icon to the active side of the dialog and then I immediately had TWO SWP icons in the task bar. (*mumble grumble*).  So I removed one and all is OK now as long as I use the IE7 as a privileged user. 
    If I go back to being a limited user (not an unreasonable thing to do is it?) I don't have an SWP icon.  Trying to install SWP application again only cause it to want to remove the existing installation.
    I'm not very impressed with this behavior. 
    Is there anything that can be done to get SWP to work for limited users?

Maybe you are looking for

  • Problem in Delete Records

    I want if server2 has delete record and server1 is updated same record. It should insert all information to server2 again. How can I Set Priority server 1 if record delete from server 2 and Server1 has updated same record? Thanks Sadiq Usman

  • D7260 not printing some colors

    I have a D7260 Photosmart printer. Neither the magenta nor the light magenta color is printing. I have replaced both cartridges with brand new HP brand cartridges. Still no luck. Performed the clean printhead function. Still no luck. Any thoughts? Th

  • Custom Logon PAR

    Hello, I am trying to access general information of logged in user from logon par file. For that I have created custom abstract portal component to access UME API and redirected umLogonPage.jsp to it. My problem is after checking UME api user able to

  • Images are broken and duplicate pages aren't loading?

    Hello, This is probably a really noobish problem. I've been working happily on Dreamweaver CS3 all day and had no problems. Just gone to make a new html page and when copying over AP Divs and containers that hold images the images end up broken, desp

  • Losing calendar entries with syncing

    I hate the new iTunes and cannot find anything. How do I change the items I want to sync between devices? Everytinme I sync, my calendar gets wiped and I lose all of my appointments!