Left Panel Help

I have had premiere for a long time and I was wondering a couple things I can't seem to find online. How do I change the resolution in the display on the left and how do I get the left part back? I seem to exited it out first.

That did not fix it. I have a 1080p reolution video source and it is not going to border the project. Increasing it with effects will mes up the quality. It usually auto-formats to it

Similar Messages

  • I've created new User account on my PC for separate itunes library/account. Have had to change apple id to do this. When I connect to pc, itunes opens with CDs I've already loaded, but it doesn't recognise ipod. No left panel opens with devices. Help!

    Can anyone help? Two ipods with originally one itunes library and (I think) same Apple id). Now need 2 Libraries with separate account for separate buying etc. Recommended I create new library on separate PC User account which I have done together with new apple id. I have added this apple id to the ipod needing separate account. When I hook up, I can't sync. No 'Devices' left panel appears at all. I'm at a loss here so any help woudl be great. Thanks.

    If you  have iTunes 11 turn on the Sidebar. Go to iTunes>View and click on Show Sidebar. You can also do a Crtl+S to show the sidebar. The sidebar is where Devices appears. and Control+B to show the Menu bar
    If necessary:
    iOS: Device not recognized in iTunes for Windows
    or
    iOS: Device not recognized in iTunes for Mac OS X

  • How to hide/disable certain features in left panel, need help...

    Heya,
    So I upgraded to Leopard recently and I see that Mail has some lovely new features that appear in the left panel. Things like "On My Mac", "RSS", "Reminders" and my IMAP drive. Basically all I want to see is my "Inbox" drop down (this connects to GMail via IMAP) and all of it's sub-folders - nothing else.
    I can't seem to figure out how to "turn off" these other features, can anyone help?
    Thanks!

    I will have to experiment, when time permits, to see if a user created folder on the server appears both places for me. I think it should only appear in the lower section of the Sidebar. In the meantime, please review the info at the two links below:
    http://mail.google.com/support/bin/answer.py?answer=78892#
    and
    http://mail.google.com/support/bin/answer.py?answer=78755&ctx=sibling
    for consistency with what you are doing and observing?
    A Gmail account is not exactly a POP is accessed as POP, and not exactly an IMAP, if accessed as IMAP. For example you are told to not use your own email client's Junk filter, but if you have more than one account, and that additional account is not Gmail, then you lose the ability for Mail to filter Junk for that account.
    The bottom line is that every feature of Gmail is set to encourage your accessing via a Browser rather than an email client to expose you to the maximum ads.
    Ernie

  • Help! Left Panel Filters aren't working

    After I add a new folder into LR, in the Metadata Browser I see information for the photos I just added. However, when I click on one of them (i.e. Date or Camera), no previews display in the middle panel. The same goes for when I click on Keywords under the Keyword Tags sub-section. Only when I click on the Folder name do the previews display in the middle panel. How do I get previews to display in the middle panel in Library mode when I click on filtering terms (Metadata Browser, Keyword Tags) on the left panel?

    Did you 1) render standard Previews, 2) wait for LR to Collect all te Metadata?
    Don
    Don Ricklin, MacBook 1.83Ghz Duo 2 Core running 10.4.9 & Win XP, Pentax *ist D
    http://donricklin.blogspot.com/

  • How do I get network drives to show in left panel of media browser

    Okay, I'm new to audition.  When I start Audition's media browser, only the local HDD's are shown.  If I OPEN FILE, I can navigate to find tyhe network drive and Audition will open the file.  Also the network drives show in Windows Explorer.  I searched the FAQs and the help file, but maybe I'm not using the "magic words"  So, how to I get these network drives to appear?
    Windows 7 64 bit home premium
    home built 3.67 gb Intel Quad core, 12 GB RAM, Several local HDDs
    Audition CS6
    Thank you

    I'm not sure this is correct.  I have mapped a NAS to drive "Z" and mapped a drive on my video editing desktop to drive "Y."  These both show up in the left panel of the media browser for Premiere and Photoshop as the share names  "MYDOCS" and "BAAAA,"  as well as in Windows Explorer.  But not in Audition. Only the local drives are shown in Audition's media browser.
    I can open a file in audition by using BROWSE by clicking on "MYDOCS" or "BAAAA" as they appear in the Windows Explorer file dialong and then navigating on those drives to the desired files.
    What am I missing?  Do others have their network drives show in the left panel of Audition's media browser?

  • How to drag image in left panel then drop into right panel??

    Dear friends.
    I have following code, it is runnable, just add two jpg image files is ok, to run.
    I tried few days to drag image from left panel then drop into right panel or vice versa, but not success, can any GUI guru help??
    Thanks.
    Sunny
    [1]. main code/calling code:
    import java.util.*;
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    import javax.swing.event.*;
    public class ImagePanelCall extends JComponent {
         public  JSplitPane ImagePanelCall() {
              setPreferredSize(new Dimension(1200,300));
              JSplitPane          sp = new JSplitPane();
              sp.setPreferredSize(new Dimension(1200,600));
              sp.setOrientation(JSplitPane.HORIZONTAL_SPLIT);
              add(sp);
              ImagePanel     ip = new ImagePanel();
              ImagePanel     ip1 = new ImagePanel();
              ip.setPreferredSize(new Dimension(600,300));
              ip1.setPreferredSize(new Dimension(600,300));
              sp.setLeftComponent(ip);// add left part
              sp.setRightComponent(ip1);// add right part
              sp.setVisible(true);
              return sp;
         public static void main(String[] args) {
              JFrame frame = new JFrame("Test transformable images");
              ImagePanelCall  ic = new ImagePanelCall();
              frame.setPreferredSize(new Dimension(1200,600));
              frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
              frame.getContentPane().add(ic.ImagePanelCall(), BorderLayout.CENTER);
              frame.pack();
              frame.setVisible(true);
    }[2]. code 2
    import java.util.*;
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    import javax.swing.event.*;
    public class ImagePanel extends JComponent {
         private static final Cursor DEFAULT_CURSOR = new Cursor(Cursor.DEFAULT_CURSOR);
         private static final Cursor MOVE_CURSOR = new Cursor(Cursor.MOVE_CURSOR);
         private static final Cursor VERTICAL_RESIZE_CURSOR = new Cursor(Cursor.N_RESIZE_CURSOR);
         private static final Cursor HORIZONTAL_RESIZE_CURSOR = new Cursor(Cursor.W_RESIZE_CURSOR);
         private static final Cursor NW_SE_RESIZE_CURSOR = new Cursor(Cursor.NW_RESIZE_CURSOR);
         private static final Cursor NE_SW_RESIZE_CURSOR = new Cursor(Cursor.NE_RESIZE_CURSOR);
         public Vector images;
         * Create an ImagePanel with two images in.
         * A MouseHandler instance is added as mouse listener and mouse motion listener.
         public ImagePanel() {
              images = new Vector();
              images.add(new TransformableImage("swing/dnd/Bird.gif"));
              images.add(new TransformableImage("swing/dnd/Cat.gif"));
              setPreferredSize(new Dimension(600,600));
              MouseHandler mh = new MouseHandler();
              addMouseListener(mh);
              addMouseMotionListener(mh);
         * Simply paint all the images contained in the Vector images, calling their method draw(Graphics2D, ImageObserver).
         public void paintComponent(Graphics g) {
              Graphics2D g2D = (Graphics2D)g;
              for (int i = images.size()-1; i>=0; i--) {     
                   ((TransformableImage)images.get(i)).draw(g2D, this);
         * Inner class defining the behavior of the mouse.
         final class MouseHandler extends MouseInputAdapter {
              private TransformableImage draggedImage;
              private int transformation;
              private int dx, dy;
              public void mouseMoved(MouseEvent e) {
                   Point p = e.getPoint();
                   TransformableImage image = getImageAt(p);
                   if (image != null) {
                        transformation = image.getTransformation(p);
                        setConvenientCursor(transformation);
                   else {
                        setConvenientCursor(-1);
              public void mousePressed(MouseEvent e) {
                   Point p = e.getPoint();
                   draggedImage = getImageAt(p);
                   if (draggedImage!=null) {
                        dx = p.x-draggedImage.x;
                        dy = p.y-draggedImage.y;
              public void mouseDragged(MouseEvent e) {
                   if (draggedImage==null) {
                        return;
                   Point p = e.getPoint();
                   repaint(draggedImage.x,draggedImage.y,draggedImage.width+1,draggedImage.height+1);
                   draggedImage.transform(p, transformation,dx,dy);
                   repaint(draggedImage.x,draggedImage.y,draggedImage.width+1,draggedImage.height+1);
              public void mouseReleased(MouseEvent e) {
                   Point p = e.getPoint();
                   draggedImage = null;
         * Utility method used to get the image located at a Point p.
         * Returns null if there is no image at this point.
         private final TransformableImage getImageAt(Point p) {
              TransformableImage image = null;
              for (int i = 0, n = images.size(); i<n; i++) {     
                   image = (TransformableImage)images.get(i);
                   if (image.contains(p)) {
                        return(image);
              return(null);
         * Sets the convenient cursor according the the transformation (i.e. the position of the mouse over the image).
         private final void setConvenientCursor(int transfo) {
              Cursor currentCursor = getCursor();
              Cursor newCursor = null;
              switch (transfo) {
                   case TransformableImage.MOVE : newCursor = MOVE_CURSOR;
                        break;
                   case TransformableImage.RESIZE_TOP : newCursor = VERTICAL_RESIZE_CURSOR;
                        break;
                   case TransformableImage.RESIZE_BOTTOM : newCursor = VERTICAL_RESIZE_CURSOR;
                        break;
                   case TransformableImage.RESIZE_LEFT : newCursor = HORIZONTAL_RESIZE_CURSOR;
                        break;
                   case TransformableImage.RESIZE_RIGHT : newCursor = HORIZONTAL_RESIZE_CURSOR;
                        break;
                   case TransformableImage.RESIZE_TOP_LEFT_CORNER : newCursor = NW_SE_RESIZE_CURSOR;
                        break;
                   case TransformableImage.RESIZE_TOP_RIGHT_CORNER : newCursor = NE_SW_RESIZE_CURSOR;
                        break;
                   case TransformableImage.RESIZE_BOTTOM_LEFT_CORNER : newCursor = NE_SW_RESIZE_CURSOR;
                        break;
                   case TransformableImage.RESIZE_BOTTOM_RIGHT_CORNER : newCursor = NW_SE_RESIZE_CURSOR;
                        break;
                   default : newCursor = DEFAULT_CURSOR;
              if (newCursor != null && currentCursor != newCursor) {
                   setCursor(newCursor);
         public static void main(String[] args) {
              JFrame frame = new JFrame("Test transformable images");
              frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
              frame.getContentPane().add(new ImagePanel(), BorderLayout.CENTER);
              frame.pack();
              frame.setVisible(true);
    }[3]. code 3
    import java.awt.*;
    import javax.swing.*;
    import java.awt.image.*;
    public final class TransformableImage extends Rectangle {
         public static final int MOVE = 0;
         public static final int RESIZE_TOP = 10;
         public static final int RESIZE_BOTTOM = 20;
         public static final int RESIZE_RIGHT = 1;
         public static final int RESIZE_LEFT = 2;
         public static final int RESIZE_TOP_RIGHT_CORNER = 11;
         public static final int RESIZE_TOP_LEFT_CORNER = 12;
         public static final int RESIZE_BOTTOM_RIGHT_CORNER = 21;
         public static final int RESIZE_BOTTOM_LEFT_CORNER = 22;
         public static final int BORDER_THICKNESS = 5;
         public static final int MIN_THICKNESS = BORDER_THICKNESS*2;
         private static final Color borderColor = Color.black;
         private Image image;
         * Create an TransformableImage from the image file filename.
         * The TransformableImage bounds (inherited from the class Rectangle) are setted to the corresponding values.
         public TransformableImage(String filename) {
              ImageIcon ic = new ImageIcon(filename);
              image = ic.getImage();
              setBounds(0,0,ic.getIconWidth(), ic.getIconHeight());
         * Draw the image rescaled to fit the bounds.
         * A black rectangle is drawn around the image.
         public final void draw(Graphics2D g, ImageObserver observer) {
              Color oldColor = g.getColor();
              g.setColor(borderColor);
              g.drawImage(image, x, y, width, height, observer);
              g.draw(this);
              g.setColor(oldColor);
         * Return an int corresponding to the transformation available according to the mouse location on the image.
         * If the point p is in the border, with a thickness of BORDER_THICKNESS, around the image, the corresponding
         * transformation is returned (RESIZE_TOP, ..., RESIZE_BOTTOM_LEFT_CORNER).
         * If the point p is located in the center of the image (i.e. out of the border), the MOVE transformation is returned.
         * We allways suppose that p is contained in the image bounds.
         public final int getTransformation(Point p) {
              int px = p.x;
              int py = p.y;
              int transformation = 0;
              if (py<(y+BORDER_THICKNESS)) {
                   transformation += RESIZE_TOP;
              else
              if (py>(y+height-BORDER_THICKNESS-1)) {
                   transformation += RESIZE_BOTTOM;
              if (px<(x+BORDER_THICKNESS)) {
                   transformation += RESIZE_LEFT;
              else
              if (px>(x+width-BORDER_THICKNESS-1)) {
                   transformation += RESIZE_RIGHT;
              return(transformation);
         * Move the left side of the image, verifying that the width is > to the MIN_THICKNESS.
         public final void moveX1(int px) {
              int x1 = x+width;
              if (px>x1-MIN_THICKNESS) {
                   x = x1-MIN_THICKNESS;
                   width = MIN_THICKNESS;
              else {
                   width += (x-px);
                   x = px;               
         * Move the right side of the image, verifying that the width is > to the MIN_THICKNESS.
         public final void moveX2(int px) {
              width = px-x;
              if (width<MIN_THICKNESS) {
                   width = MIN_THICKNESS;
         * Move the top side of the image, verifying that the height is > to the MIN_THICKNESS.
         public final void moveY1(int py) {
              int y1 = y+height;
              if (py>y1-MIN_THICKNESS) {
                   y = y1-MIN_THICKNESS;
                   height = MIN_THICKNESS;
              else {
                   height += (y-py);
                   y = py;               
         * Move the bottom side of the image, verifying that the height is > to the MIN_THICKNESS.
         public final void moveY2(int py) {
              height = py-y;
              if (height<MIN_THICKNESS) {
                   height = MIN_THICKNESS;
         * Apply a given transformation with the given Point to the image.
         * The shift values dx and dy are needed for move tho locate the image at the same relative position from the cursor (p).
         public final void transform(Point p, int transformationType, int dx, int dy) {
              int px = p.x;
              int py = p.y;
              switch (transformationType) {
                   case MOVE : x = px-dx; y = py-dy;
                        break;
                   case RESIZE_TOP : moveY1(py);
                        break;
                   case RESIZE_BOTTOM : moveY2(py);
                        break;
                   case RESIZE_LEFT : moveX1(px);
                        break;
                   case RESIZE_RIGHT : moveX2(px);
                        break;
                   case RESIZE_TOP_LEFT_CORNER : moveX1(px);moveY1(py);
                        break;
                   case RESIZE_TOP_RIGHT_CORNER : moveX2(px);moveY1(py);
                        break;
                   case RESIZE_BOTTOM_LEFT_CORNER : moveX1(px);moveY2(py);
                        break;
                   case RESIZE_BOTTOM_RIGHT_CORNER : moveX2(px);moveY2(py);
                        break;
                   default :
    }

    I gave you a simple solution in your other posting. You never responded to the suggestion stating why the given solution wouldn't work, so it can't be that urgent.

  • Copy and paste - Restricted KF - Left panel

    Hello All,
    This is quite a silly question, in BI7 I cannot copy and paste a restricted KF in the left panel.
    Options are there but it's not working.
    Is this another bug in BI7 ?
    Thanks
    C.

    Hi,
    check this thread:
    BI Query Designer - Copy and Paste
    Hope this helps.........
    Rgs,
    I.R.K
    Edited by: Ravikanth Indurthi on Jul 31, 2008 6:37 PM

  • ADDING THE NEW TAB TO PERSANALIZATION IN LEFT PANEL OF BCC

    Hi guys
    I am trying to add a new item to persanalization .
    and i created genericActive.xml
    taskConfiguratin.xml
    orderviewConfigaration.properties
    and the headline is coming in panel
    but content of the order table are not replecting
    it showing following errors.
    18:54:37,359 ERROR [ApplicationManager] There is no application configured with ID 'ordermanagement.orders'.
    18:54:37,389 ERROR [DynamoServlet]
    java.lang.NullPointerException
    at atg.bizui.activity.ActivityManager.getTaskInfo(ActivityManager.java:269)
    at atg.bizui.taglib.GetTaskURLTag.doStartTag(GetTaskURLTag.java:137)
    at atg.bizui.taglib.elwrap.GetTaskURLTagWrapper.doStartTag(Unknown Source)
    at org.apache.jsp.components.applicationSelector_jsp._jspx_meth_biz_005fgetTaskURL_005f0(applicationSelector_jsp.java:478)
    at org.apache.jsp.components.applicationSelector_jsp._jspx_meth_c_005fotherwise_005f0(applicationSelector_jsp.java:441)
    at org.apache.jsp.components.applicationSelector_jsp._jspx_meth_c_005fchoose_005f1(applicationSelector_jsp.java:358)
    at org.apache.jsp.components.applicationSelector_jsp._jspx_meth_c_005fwhen_005f0(applicationSelector_jsp.java:320)
    at org.apache.jsp.components.applicationSelector_jsp._jspx_meth_c_005fchoose_005f0(applicationSelector_jsp.java:284)
    at org.apache.jsp.components.applicationSelector_jsp._jspx_meth_c_005fforEach_005f0(applicationSelector_jsp.java:230)
    at org.apache.jsp.components.applicationSelector_jsp._jspx_meth_dspel_005fpage_005f0(applicationSelector_jsp.java:149)
    at org.apache.jsp.components.applicationSelector_jsp._jspService(applicationSelector_jsp.java:90)
    at org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:70)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:717)
    at org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:369)
    at org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:322)
    at org.apache.jasper.servlet.JspServlet.service(JspServlet.java:249)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:717)
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290)
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
    at org.apache.catalina.core.ApplicationDispatcher.invoke(ApplicationDispatcher.java:638)
    at org.apache.catalina.core.ApplicationDispatcher.doInclude(ApplicationDispatcher.java:543)
    at org.apache.catalina.core.ApplicationDispatcher.include(ApplicationDispatcher.java:480)
    at atg.servlet.WrappingRequestDispatcher.include(WrappingRequestDispatcher.java:116)
    at atg.servlet.ServletUtil.invokeInclude(ServletUtil.java:3858)
    at atg.taglib.dspjsp.IncludeTag.doEndTag(IncludeTag.java:812)
    at atg.taglib.dspjsp.elwrap.IncludeTagWrapper.doEndTag(IncludeTagWrapper.java:41)
    at org.apache.jsp.components.header_jsp._jspx_meth_dspel_005finclude_005f0(header_jsp.java:2002)
    at org.apache.jsp.components.header_jsp._jspx_meth_dspel_005fpage_005f0(header_jsp.java:383)
    at org.apache.jsp.components.header_jsp._jspService(header_jsp.java:151)
    at org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:70)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:717)
    at org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:369)
    at org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:322)
    at org.apache.jasper.servlet.JspServlet.service(JspServlet.java:249)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:717)
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290)
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
    at org.apache.catalina.core.ApplicationDispatcher.invoke(ApplicationDispatcher.java:638)
    at org.apache.catalina.core.ApplicationDispatcher.doInclude(ApplicationDispatcher.java:543)
    at org.apache.catalina.core.ApplicationDispatcher.include(ApplicationDispatcher.java:480)
    at atg.servlet.WrappingRequestDispatcher.include(WrappingRequestDispatcher.java:116)
    at atg.taglib.dspjsp.IncludeTag.doEndTag(IncludeTag.java:835)
    at atg.taglib.dspjsp.elwrap.IncludeTagWrapper.doEndTag(IncludeTagWrapper.java:41)
    at org.apache.jsp.assetManager_jsp._jspx_meth_dspel_005finclude_005f1(assetManager_jsp.java:3057)
    at org.apache.jsp.assetManager_jsp._jspx_meth_c_005fif_005f5(assetManager_jsp.java:2996)
    at org.apache.jsp.assetManager_jsp._jspx_meth_dspel_005fpage_005f0(assetManager_jsp.java:734)
    at org.apache.jsp.assetManager_jsp._jspService(assetManager_jsp.java:149)
    at org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:70)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:717)
    at org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:369)
    at org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:322)
    at org.apache.jasper.servlet.JspServlet.service(JspServlet.java:249)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:717)
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290)
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
    at atg.web.filter.UserLocaleFilter.handleDoFilter(UserLocaleFilter.java:142)
    at atg.servlet.GenericFilterService.doFilter(GenericFilterService.java:431)
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:235)
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
    at atg.servlet.GenericFilterService.doFilterChain(GenericFilterService.java:621)
    at atg.servlet.GenericFilterService.handleDoFilter(GenericFilterService.java:484)
    at atg.servlet.GenericFilterService.doFilter(GenericFilterService.java:431)
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:235)
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
    at atg.servlet.GenericFilterService.doFilterChain(GenericFilterService.java:621)
    at atg.servlet.GenericFilterService.handleDoFilter(GenericFilterService.java:484)
    at atg.servlet.GenericFilterService.doFilter(GenericFilterService.java:431)
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:235)
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
    at atg.servlet.pipeline.TailPipelineServlet.service(TailPipelineServlet.java:192)
    at atg.servlet.pipeline.PipelineableServletImpl.passRequest(PipelineableServletImpl.java:157)
    at atg.servlet.pipeline.DispatcherPipelineServletImpl.service(DispatcherPipelineServletImpl.java:275)
    at atg.servlet.pipeline.PipelineableServletImpl.passRequest(PipelineableServletImpl.java:157)
    at atg.servlet.http.CookieBufferServlet.service(CookieBufferServlet.java:119)
    at atg.servlet.pipeline.PipelineableServletImpl.passRequest(PipelineableServletImpl.java:157)
    at atg.userprofiling.ExpiredPasswordServlet.service(ExpiredPasswordServlet.java:378)
    at atg.servlet.pipeline.PipelineableServletImpl.passRequest(PipelineableServletImpl.java:157)
    at atg.servlet.pipeline.MimeTyperPipelineServlet.service(MimeTyperPipelineServlet.java:228)
    at atg.servlet.pipeline.PipelineableServletImpl.passRequest(PipelineableServletImpl.java:157)
    at atg.droplet.DropletEventServlet.service(DropletEventServlet.java:657)
    at atg.servlet.pipeline.PipelineableServletImpl.passRequest(PipelineableServletImpl.java:157)
    at atg.epub.servlet.LocaleServlet.service(LocaleServlet.java:84)
    at atg.servlet.pipeline.PipelineableServletImpl.passRequest(PipelineableServletImpl.java:157)
    at atg.epub.servlet.ProjectServlet.service(ProjectServlet.java:109)
    at atg.servlet.pipeline.PipelineableServletImpl.passRequest(PipelineableServletImpl.java:157)
    at atg.epub.servlet.PublishingSecurityServlet.service(PublishingSecurityServlet.java:80)
    at atg.servlet.pipeline.PipelineableServletImpl.passRequest(PipelineableServletImpl.java:157)
    at atg.commerce.order.CommerceCommandServlet.service(CommerceCommandServlet.java:150)
    at atg.servlet.pipeline.PipelineableServletImpl.passRequest(PipelineableServletImpl.java:157)
    at atg.commerce.promotion.PromotionServlet.service(PromotionServlet.java:213)
    at atg.servlet.pipeline.PipelineableServletImpl.passRequest(PipelineableServletImpl.java:157)
    at atg.userprofiling.AccessControlServlet.service(AccessControlServlet.java:696)
    at atg.servlet.pipeline.PipelineableServletImpl.passRequest(PipelineableServletImpl.java:157)
    at atg.servlet.sessionsaver.SessionSaverServlet.service(SessionSaverServlet.java:2447)
    at atg.servlet.pipeline.PipelineableServletImpl.passRequest(PipelineableServletImpl.java:157)
    at atg.userprofiling.PageEventTriggerPipelineServlet.service(PageEventTriggerPipelineServlet.java:191)
    at atg.servlet.pipeline.PipelineableServletImpl.passRequest(PipelineableServletImpl.java:157)
    at atg.multisite.SiteSessionEventTriggerPipelineServlet.service(SiteSessionEventTriggerPipelineServlet.java:161)
    at atg.servlet.pipeline.PipelineableServletImpl.passRequest(PipelineableServletImpl.java:157)
    at atg.userprofiling.SessionEventTrigger.service(SessionEventTrigger.java:512)
    at atg.servlet.pipeline.PipelineableServletImpl.passRequest(PipelineableServletImpl.java:157)
    at atg.userprofiling.ProfilePropertyServlet.service(ProfilePropertyServlet.java:230)
    at atg.servlet.pipeline.PipelineableServletImpl.passRequest(PipelineableServletImpl.java:157)
    at atg.userprofiling.ProfileRequestServlet.service(ProfileRequestServlet.java:460)
    at atg.servlet.pipeline.PipelineableServletImpl.passRequest(PipelineableServletImpl.java:157)
    at atg.servlet.pipeline.CachePreventionServlet.service(CachePreventionServlet.java:141)
    at atg.servlet.pipeline.PipelineableServletImpl.passRequest(PipelineableServletImpl.java:157)
    at atg.servlet.pipeline.DynamoPipelineServlet.service(DynamoPipelineServlet.java:491)
    at atg.servlet.pipeline.PipelineableServletImpl.passRequest(PipelineableServletImpl.java:157)
    at atg.servlet.pipeline.URLArgumentPipelineServlet.service(URLArgumentPipelineServlet.java:302)
    at atg.servlet.pipeline.PipelineableServletImpl.passRequest(PipelineableServletImpl.java:157)
    at atg.servlet.pipeline.PathAuthenticationPipelineServlet.service(PathAuthenticationPipelineServlet.java:392)
    at atg.servlet.pipeline.PipelineableServletImpl.passRequest(PipelineableServletImpl.java:157)
    at atg.servlet.security.ThreadUserBinderServlet.service(ThreadUserBinderServlet.java:113)
    at atg.servlet.pipeline.PipelineableServletImpl.passRequest(PipelineableServletImpl.java:157)
    at atg.dtm.TransactionPipelineServlet.service(TransactionPipelineServlet.java:234)
    at atg.servlet.pipeline.PipelineableServletImpl.passRequest(PipelineableServletImpl.java:157)
    at atg.servlet.pipeline.SecurityServlet.service(SecurityServlet.java:191)
    at atg.servlet.pipeline.PipelineableServletImpl.passRequest(PipelineableServletImpl.java:157)
    at atg.multisite.SiteContextPipelineServlet.service(SiteContextPipelineServlet.java:324)
    at atg.servlet.pipeline.PipelineableServletImpl.passRequest(PipelineableServletImpl.java:157)
    at atg.servlet.pipeline.HeadPipelineServlet.passRequest(HeadPipelineServlet.java:1271)
    at atg.servlet.pipeline.HeadPipelineServlet.service(HeadPipelineServlet.java:952)
    at atg.servlet.pipeline.PipelineableServletImpl.service(PipelineableServletImpl.java:272)
    at atg.filter.dspjsp.PageFilter.innerDoFilter(PageFilter.java:349)
    at atg.filter.dspjsp.PageFilter.doFilter(PageFilter.java:208)
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:235)
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
    at org.jboss.web.tomcat.filters.ReplyHeaderFilter.doFilter(ReplyHeaderFilter.java:96)
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:235)
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
    at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:235)
    at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191)
    at org.jboss.web.tomcat.security.SecurityAssociationValve.invoke(SecurityAssociationValve.java:183)
    at org.jboss.web.tomcat.security.JaccContextValve.invoke(JaccContextValve.java:95)
    at org.jboss.web.tomcat.security.SecurityContextEstablishmentValve.process(SecurityContextEstablishmentValve.java:126)
    at org.jboss.web.tomcat.security.SecurityContextEstablishmentValve.invoke(SecurityContextEstablishmentValve.java:70)
    at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127)
    at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102)
    at org.jboss.web.tomcat.service.jca.CachedConnectionValve.invoke(CachedConnectionValve.java:158)
    at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109)
    at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:330)
    at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:829)
    at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:598)
    at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:451)
    at java.lang.Thread.run(Thread.java:662)
    18:54:37,455 ERROR [[jsp]] Servlet.service() for servlet jsp threw exception
    java.lang.NullPointerException
    at atg.bizui.activity.ActivityManager.getTaskInfo(ActivityManager.java:269)
    at atg.bizui.taglib.GetTaskURLTag.doStartTag(GetTaskURLTag.java:137)
    at atg.bizui.taglib.elwrap.GetTaskURLTagWrapper.doStartTag(Unknown Source)
    at org.apache.jsp.components.applicationSelector_jsp._jspx_meth_biz_005fgetTaskURL_005f0(applicationSelector_jsp.java:478)
    at org.apache.jsp.components.applicationSelector_jsp._jspx_meth_c_005fotherwise_005f0(applicationSelector_jsp.java:441)
    at org.apache.jsp.components.applicationSelector_jsp._jspx_meth_c_005fchoose_005f1(applicationSelector_jsp.java:358)
    at org.apache.jsp.components.applicationSelector_jsp._jspx_meth_c_005fwhen_005f0(applicationSelector_jsp.java:320)
    at org.apache.jsp.components.applicationSelector_jsp._jspx_meth_c_005fchoose_005f0(applicationSelector_jsp.java:284)
    at org.apache.jsp.components.applicationSelector_jsp._jspx_meth_c_005fforEach_005f0(applicationSelector_jsp.java:230)
    at org.apache.jsp.components.applicationSelector_jsp._jspx_meth_dspel_005fpage_005f0(applicationSelector_jsp.java:149)
    at org.apache.jsp.components.applicationSelector_jsp._jspService(applicationSelector_jsp.java:90)
    at org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:70)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:717)
    at org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:369)
    at org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:322)
    at org.apache.jasper.servlet.JspServlet.service(JspServlet.java:249)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:717)
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290)
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
    at org.apache.catalina.core.ApplicationDispatcher.invoke(ApplicationDispatcher.java:638)
    at org.apache.catalina.core.ApplicationDispatcher.doInclude(ApplicationDispatcher.java:543)
    at org.apache.catalina.core.ApplicationDispatcher.include(ApplicationDispatcher.java:480)
    at atg.servlet.WrappingRequestDispatcher.include(WrappingRequestDispatcher.java:116)
    at atg.servlet.ServletUtil.invokeInclude(ServletUtil.java:3858)
    at atg.taglib.dspjsp.IncludeTag.doEndTag(IncludeTag.java:812)
    at atg.taglib.dspjsp.elwrap.IncludeTagWrapper.doEndTag(IncludeTagWrapper.java:41)
    at org.apache.jsp.components.header_jsp._jspx_meth_dspel_005finclude_005f0(header_jsp.java:2002)
    at org.apache.jsp.components.header_jsp._jspx_meth_dspel_005fpage_005f0(header_jsp.java:383)
    at org.apache.jsp.components.header_jsp._jspService(header_jsp.java:151)
    at org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:70)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:717)
    at org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:369)
    at org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:322)
    at org.apache.jasper.servlet.JspServlet.service(JspServlet.java:249)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:717)
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290)
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
    at org.apache.catalina.core.ApplicationDispatcher.invoke(ApplicationDispatcher.java:638)
    at org.apache.catalina.core.ApplicationDispatcher.doInclude(ApplicationDispatcher.java:543)
    at org.apache.catalina.core.ApplicationDispatcher.include(ApplicationDispatcher.java:480)
    at atg.servlet.WrappingRequestDispatcher.include(WrappingRequestDispatcher.java:116)
    at atg.taglib.dspjsp.IncludeTag.doEndTag(IncludeTag.java:835)
    at atg.taglib.dspjsp.elwrap.IncludeTagWrapper.doEndTag(IncludeTagWrapper.java:41)
    at org.apache.jsp.assetManager_jsp._jspx_meth_dspel_005finclude_005f1(assetManager_jsp.java:3057)
    at org.apache.jsp.assetManager_jsp._jspx_meth_c_005fif_005f5(assetManager_jsp.java:2996)
    at org.apache.jsp.assetManager_jsp._jspx_meth_dspel_005fpage_005f0(assetManager_jsp.java:734)
    at org.apache.jsp.assetManager_jsp._jspService(assetManager_jsp.java:149)
    at org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:70)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:717)
    at org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:369)
    at org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:322)
    at org.apache.jasper.servlet.JspServlet.service(JspServlet.java:249)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:717)
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290)
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
    at atg.web.filter.UserLocaleFilter.handleDoFilter(UserLocaleFilter.java:142)
    at atg.servlet.GenericFilterService.doFilter(GenericFilterService.java:431)
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:235)
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
    at atg.servlet.GenericFilterService.doFilterChain(GenericFilterService.java:621)
    at atg.servlet.GenericFilterService.handleDoFilter(GenericFilterService.java:484)
    at atg.servlet.GenericFilterService.doFilter(GenericFilterService.java:431)
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:235)
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
    at atg.servlet.GenericFilterService.doFilterChain(GenericFilterService.java:621)
    at atg.servlet.GenericFilterService.handleDoFilter(GenericFilterService.java:484)
    at atg.servlet.GenericFilterService.doFilter(GenericFilterService.java:431)
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:235)
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
    at atg.servlet.pipeline.TailPipelineServlet.service(TailPipelineServlet.java:192)
    at atg.servlet.pipeline.PipelineableServletImpl.passRequest(PipelineableServletImpl.java:157)
    at atg.servlet.pipeline.DispatcherPipelineServletImpl.service(DispatcherPipelineServletImpl.java:275)
    at atg.servlet.pipeline.PipelineableServletImpl.passRequest(PipelineableServletImpl.java:157)
    at atg.servlet.http.CookieBufferServlet.service(CookieBufferServlet.java:119)
    at atg.servlet.pipeline.PipelineableServletImpl.passRequest(PipelineableServletImpl.java:157)
    at atg.userprofiling.ExpiredPasswordServlet.service(ExpiredPasswordServlet.java:378)
    at atg.servlet.pipeline.PipelineableServletImpl.passRequest(PipelineableServletImpl.java:157)
    at atg.servlet.pipeline.MimeTyperPipelineServlet.service(MimeTyperPipelineServlet.java:228)
    at atg.servlet.pipeline.PipelineableServletImpl.passRequest(PipelineableServletImpl.java:157)
    at atg.droplet.DropletEventServlet.service(DropletEventServlet.java:657)
    at atg.servlet.pipeline.PipelineableServletImpl.passRequest(PipelineableServletImpl.java:157)
    at atg.epub.servlet.LocaleServlet.service(LocaleServlet.java:84)
    at atg.servlet.pipeline.PipelineableServletImpl.passRequest(PipelineableServletImpl.java:157)
    at atg.epub.servlet.ProjectServlet.service(ProjectServlet.java:109)
    at atg.servlet.pipeline.PipelineableServletImpl.passRequest(PipelineableServletImpl.java:157)
    at atg.epub.servlet.PublishingSecurityServlet.service(PublishingSecurityServlet.java:80)
    at atg.servlet.pipeline.PipelineableServletImpl.passRequest(PipelineableServletImpl.java:157)
    at atg.commerce.order.CommerceCommandServlet.service(CommerceCommandServlet.java:150)
    at atg.servlet.pipeline.PipelineableServletImpl.passRequest(PipelineableServletImpl.java:157)
    at atg.commerce.promotion.PromotionServlet.service(PromotionServlet.java:213)
    at atg.servlet.pipeline.PipelineableServletImpl.passRequest(PipelineableServletImpl.java:157)
    at atg.userprofiling.AccessControlServlet.service(AccessControlServlet.java:696)
    at atg.servlet.pipeline.PipelineableServletImpl.passRequest(PipelineableServletImpl.java:157)
    at atg.servlet.sessionsaver.SessionSaverServlet.service(SessionSaverServlet.java:2447)
    at atg.servlet.pipeline.PipelineableServletImpl.passRequest(PipelineableServletImpl.java:157)
    at atg.userprofiling.PageEventTriggerPipelineServlet.service(PageEventTriggerPipelineServlet.java:191)
    at atg.servlet.pipeline.PipelineableServletImpl.passRequest(PipelineableServletImpl.java:157)
    at atg.multisite.SiteSessionEventTriggerPipelineServlet.service(SiteSessionEventTriggerPipelineServlet.java:161)
    at atg.servlet.pipeline.PipelineableServletImpl.passRequest(PipelineableServletImpl.java:157)
    at atg.userprofiling.SessionEventTrigger.service(SessionEventTrigger.java:512)
    at atg.servlet.pipeline.PipelineableServletImpl.passRequest(PipelineableServletImpl.java:157)
    at atg.userprofiling.ProfilePropertyServlet.service(ProfilePropertyServlet.java:230)
    at atg.servlet.pipeline.PipelineableServletImpl.passRequest(PipelineableServletImpl.java:157)
    at atg.userprofiling.ProfileRequestServlet.service(ProfileRequestServlet.java:460)
    at atg.servlet.pipeline.PipelineableServletImpl.passRequest(PipelineableServletImpl.java:157)
    at atg.servlet.pipeline.CachePreventionServlet.service(CachePreventionServlet.java:141)
    at atg.servlet.pipeline.PipelineableServletImpl.passRequest(PipelineableServletImpl.java:157)
    at atg.servlet.pipeline.DynamoPipelineServlet.service(DynamoPipelineServlet.java:491)
    at atg.servlet.pipeline.PipelineableServletImpl.passRequest(PipelineableServletImpl.java:157)
    at atg.servlet.pipeline.URLArgumentPipelineServlet.service(URLArgumentPipelineServlet.java:302)
    at atg.servlet.pipeline.PipelineableServletImpl.passRequest(PipelineableServletImpl.java:157)
    at atg.servlet.pipeline.PathAuthenticationPipelineServlet.service(PathAuthenticationPipelineServlet.java:392)
    at atg.servlet.pipeline.PipelineableServletImpl.passRequest(PipelineableServletImpl.java:157)
    at atg.servlet.security.ThreadUserBinderServlet.service(ThreadUserBinderServlet.java:113)
    at atg.servlet.pipeline.PipelineableServletImpl.passRequest(PipelineableServletImpl.java:157)
    at atg.dtm.TransactionPipelineServlet.service(TransactionPipelineServlet.java:234)
    at atg.servlet.pipeline.PipelineableServletImpl.passRequest(PipelineableServletImpl.java:157)
    at atg.servlet.pipeline.SecurityServlet.service(SecurityServlet.java:191)
    at atg.servlet.pipeline.PipelineableServletImpl.passRequest(PipelineableServletImpl.java:157)
    at atg.multisite.SiteContextPipelineServlet.service(SiteContextPipelineServlet.java:324)
    at atg.servlet.pipeline.PipelineableServletImpl.passRequest(PipelineableServletImpl.java:157)
    at atg.servlet.pipeline.HeadPipelineServlet.passRequest(HeadPipelineServlet.java:1271)
    at atg.servlet.pipeline.HeadPipelineServlet.service(HeadPipelineServlet.java:952)
    at atg.servlet.pipeline.PipelineableServletImpl.service(PipelineableServletImpl.java:272)
    at atg.filter.dspjsp.PageFilter.innerDoFilter(PageFilter.java:349)
    at atg.filter.dspjsp.PageFilter.doFilter(PageFilter.java:208)
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:235)
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
    at org.jboss.web.tomcat.filters.ReplyHeaderFilter.doFilter(ReplyHeaderFilter.java:96)
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:235)
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
    at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:235)
    at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191)
    at org.jboss.web.tomcat.security.SecurityAssociationValve.invoke(SecurityAssociationValve.java:183)
    at org.jboss.web.tomcat.security.JaccContextValve.invoke(JaccContextValve.java:95)
    at org.jboss.web.tomcat.security.SecurityContextEstablishmentValve.process(SecurityContextEstablishmentValve.java:126)
    at org.jboss.web.tomcat.security.SecurityContextEstablishmentValve.invoke(SecurityContextEstablishmentValve.java:70)
    at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127)
    at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102)
    at org.jboss.web.tomcat.service.jca.CachedConnectionValve.invoke(CachedConnectionValve.java:158)
    at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109)
    at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:330)
    at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:829)
    at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:598)
    at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:451)
    at java.lang.Thread.run(Thread.java:662)
    18:54:37,482 ERROR [DynamoServlet]
    please help me on the same.
    Thanks in advance.

    I'm not sure this is correct.  I have mapped a NAS to drive "Z" and mapped a drive on my video editing desktop to drive "Y."  These both show up in the left panel of the media browser for Premiere and Photoshop as the share names  "MYDOCS" and "BAAAA,"  as well as in Windows Explorer.  But not in Audition. Only the local drives are shown in Audition's media browser.
    I can open a file in audition by using BROWSE by clicking on "MYDOCS" or "BAAAA" as they appear in the Windows Explorer file dialong and then navigating on those drives to the desired files.
    What am I missing?  Do others have their network drives show in the left panel of Audition's media browser?

  • Moving Fields from left panel to right panel

    Hello All
    I am involved in configuring web ui screens. I want to actually move captions and fields from left panel ( Colums A-H) to Right Panel ( Colums I-P). When I go into field properties, it;s not giving me the option to enter colums from right panel.
    Or show me how to do this
    Please reply asap Gurus
    Thanks

    Hi,
    Please follow below steps:
    1. Go to config tab
    2. Choose the right config.
    3. Go to edit mode.
    4, Display available fields.
    5. you can see two blocks now. One with available fields and other with your displayed fields.
    6. In your displayed fields block you can see two buttons in top left corner (right above A column). One with plus sign and other with minus. Similarly you can see two buttons on top right corner( right above P column) of your displayed fields block.
    7. select a field you want to move from displayed columns by clicking on it. Click on minus button on top( the one above A). Now this field would be moved to available fields under its context node. Locate the field there.
    8.Select the field on Available fields block and then click on 'plus' button on right side( one above P).
    Your field would be moved to Right side.
    Also you can click on a field and click on show properties button and directly mention the column where you want this field to appear( Make sure you are edit mode so that you can change the column names). Also while doing this please make sure the columns you are entering are not occupied by other field.
    Hope that helps.
    Regards,
    BJ

  • How to get default presets to the left panel

    I finally installed lightroom 3 after many, many months of it sitting on my desk.  I have been watching tutorials, and playing around with it, and I have found that the default presets are only on the right side panel in library.  On the left panel in develop the heading presets shows up but when I click on the triangle nothing shows up under them.  I did see a question already on here to right click on the heading and check it which I did a few times just to see if it would work and nothing.  This is very frustrating because I have to click on each preset and undo it if I don't like it.  Please help.

    Hello!
    When I left clicked in the spot shown below,
    This field is shown (shown below). As you can see the preset menu is checked, thus the presets being shown.
    Is this what you are referring to? when you left click nothing is shown, and nothing is listed under presets?
    janelle

  • I bought 4 apps 1. the sims 3 for £4.99 2. fifa 14 premium pack for £2.99 3. plauge inc for 99p and monopoly for 69p i bought a £15 app store voucher and i only have £1.66 left but i should have £5.34 left please help me

    i bought 4 apps 1. the sims 3 for £4.99 2. fifa 14 premium pack for £2.99 3. plauge inc for 99p and monopoly for 69p i bought a £15 app store voucher and i only have £1.66 left but i should have £5.34 left please help me

    Three possible causes:
    - You got charged twice. On a computer go to iTunes Store>View Account>Purchase History and see what you got charged for
    - Maybe the difference is due to tax. Again the Purchase History will list the total price including tax for each purchase.
    - You had a negative balance (you owed money) before you redeemed the card.
    If problems contact iTunes:
    Contact iTunes

  • TS3989 Mssage when opening Photo Stream on-"This file does not have a program associated with it for performing this action. Please install a program or, if one is already installed, create an association in the Default Programs control panel" Help!!!

    Mssage when opening Photo Stream on-"This file does not have a program associated with it for performing this action. Please install a program or, if one is already installed, create an association in the Default Programs control panel" Help!!!

    You are posting in the "icloud on my mac" forum, but your profile mentions Windows.  If using a mac, you need to have iphoto or aperture installed in order to receive new photos via photo stream.  If using windows, try posting in the iCloud on a PC forum.  You'll get better help there.
    https://discussions.apple.com/community/icloud/icloud_on_my_pc

  • How do I expand the left panel to see more of my folder names?

    Or (alternatively), how do I hide (but not delete) upper-level folders so that my folder names don't get cut off? Here's a screen shot:

    gatorjim2000 wrote:
    In a word or two, you can't. You can drag the border between the left panel and the viewing area to enlarge the panel, but it only goes so far.
    That's not quite true.
    You can use Jeffrey's tool to expand the maximum width of the panels, and use narrower fonts if you want:
    http://regex.info/Lightroom/Config/

  • Problems with images greyed out. Downloaded folder not showing up in Left Panel

    Downloaded folder and it showed up in Lightroom. Next day images greyed out Folder doesnt show in Left Panel. Lightroom says no images to Import. What do I do?

    Mirrors_Winter wrote:
    Thanks so much dj for your response. Unfortunately I did start in the Library module and the folder wasn't there to click on. It was really strange, but the usual 'Previous Import' link wasn't showing anything! That's why I tried to reimport.
    If the folder doesn't show in your Library module, then you probably (accidentally) imported the photos using the MOVE option instead of the ADD option. You have to search for the desired photos by file name, and NOT by folder. Perform all of the following 4 steps, and you will find your photos
    Go to the Catalog Panel on the left in the Library Module and click on All Photographs
    Turn off all filters (Ctrl/Cmd-L once or twice)
    Expand all Stacks (Photo->Stacking->Expand All Stacks)
    Search by file name

  • SHARED button on left panel didn't show up

    I have 2 pc (one laptop and one newly bought desktop). I have tried to establish home sharing. ultimately the laptop can viewed desktop under the left side SHARED button. But I can't see the SHARED button on my desktop left panel after turn-on home sharing. Not sure the main reasons. Both pc are having same itune ver 10, allow firewall, same wireless connection and same window 7.

    Ah, that extra button must have been set to pause the slide,
    and as it was set to take no action, it just held the slide there.
    Try using a transparent caption instead of a button, or go
    into the settings of the button and make sure it isn't set to pause
    the slide.
    Button properties > Options tab > Uncheck Pause
    After

Maybe you are looking for

  • Please help-----Error in logon page

    Hi Experts, The version is OBIEE11.1.1.6.5. I did following this URL for Usage Tracking. [http://www.oracle.com/webfolder/technetwork/tutorials/obe/fmw/bi/bi1116/ut/ut.html|http://www.oracle.com/webfolder/technetwork/tutorials/obe/fmw/bi/bi1116/ut/ut

  • Exporting to shutterfly

    After installing Shutterfly's Export Assistant for iPhoto, I'm unable to export directly from iPhoto 5.0 to shutterfly and I can't seem to get into the Share/Export feature to adjust size, type (JPEG,etc) of photos. What to I do now?

  • Hyperion Performance Scorecard

    I am new to Hyperion .. Could someone help me to get learning material of Hyperion Performance card.. Your help will be appreciated... Thank you

  • Adobe ppd missing in indesign cs4

    hello, Adobe ppd missing in indesign cs4 print option, can anyone suggest wht to do.? attaching snapshot for reference..

  • Did 4.1.2 fix YOUR USB Audio problems?  Not mine...

    I'm curious to hear from the other folks who were having issues with 4.1.1 freezing/sluggish while using USB speakers or USB audio converters. I have a Xitel USB-to-SPDIF converter that has worked flawlessly since 10.3 in EVERY app...until GB 4.1.1.