Problems Saving New Changes

Hello,
I am very frustrated with this problem. Almost every time I make changes to a photo and go to save them it reverts back to the original after I update the name.  Any ideas?  I am pulling my hair out of over this.

Hi gina,
When you are saving the files in Editor, are the options "Include in Elements Organizer" and "Save as Version Set" checked on?
Also, could you share a few details about your catalog :
1) What is the size of your catalog?
2) Did you covert the catalog from a previous version of PSE?
3) What is the format of images that your are editing?

Similar Messages

  • How do you have Google searches appear in new tab? This was previously not a problem, but it changed and I cannot return the setting. Any ideas?

    How do you have Google searches appear in new tab? This was previously not a problem, but it changed and I cannot return the setting. Any ideas?

    I recently purchased a second hand new macbook air, although it was second hand to me the previous owner had never actually turned it on.
    Something doesn't make sense here, though I'm not saying the previous owner is lying....
    Time to send your serial # to iTS and let them see what's happening here.
    iTunes Store Support
    http://www.apple.com/emea/support/itunes/contact.html

  • Problem saving contacts in xperia z1. after saving new contacts, it is not shown in contacts list

    problem saving contacts in xperia z1. after saving new contacts, it is not shown in contacts list

    Hi and welcome to the community! Since you're new please be sure that you have checked out our Discussion guidelines.
    It sounds like you have a filter enabled in your contact app. Open contact > menu button > filter and see if you have any filter for your phone contact or Google contacts. Also check that "show online contacts" is unchecked. 
    What are your thoughts about this forum? Let us know by doing this short survey.

  • I'm new to Macbook Pro, and never imagined I would have problems saving bookmarks when I switched to Mac.  Any suggestions with this issue?  And has Apple come up with a permanent fix?

    I'm new to Macbook Pro, and never imagined I would have problems saving bookmarks when I switched to Mac.  Any suggestions with this issue?  I have Safari 6.0.4, and has Apple come up with a permanent fix?

    Triple-click the line below to select it:
    ~/Library/Safari/Bookmarks.plist
    Right-click or control-click the highlighted line and select
    Services ▹ Show Info
    from the contextual menu.* An Info dialog should open.
    Does the dialog show "You can read and write" in the Sharing & Permissions section?
    In the General section, is the box labeled Locked checked?
    What is the Modified date?
    *If you don't see the contextual menu item, copy the selected text to the Clipboard (command-C). Open a TextEdit window and paste into it (command-V). Select the line you just pasted and continue as above.

  • Problem with saving new contacts...?

    I am saving new contacts but they will not show up in my contacts. I can only access the new numbers from my call logs or text messages. I have taken my phone into the shop for IT to check out and they didn't have an answer for me.

    I mean... I see it only when I go back to the missed calls

  • Having a problem saving the graphics on a canvas.

    I'm having a problem saving graphics on a canvas. It draws on the canvas but when another window comes up the graphics disappear. I put in a method to take the graphics on the canvas and repaint it with the graphics. But this comes up blank. So I don't know why this is happening. It is probably the paint method but I don't know why. If anyone has any ideas could you please respond because I have had this problem for ages now and it's driving me mad and I have to get this finished or I'm going to be a lot of trouble. I'll show you the code for the class I am concerned with. It is long but most of it can be disregarded. The only parts which are relevent are the paint method and where the drawline e.t.c are called which is in the mouse release
    package com.project.CSSE4;
    import java.awt.*;
    import java.awt.event.*;
    import java.awt.image.ImageFilter;
    import java.awt.image.CropImageFilter;
    import java.awt.image.FilteredImageSource;
    import java.io.*;
    import java.util.*;
    import java.net.*;
    import javax.swing.*;
    import java.sql.*;
    public class CanvasOnly extends JPanel
           implements MouseListener, MouseMotionListener
       public static final int line = 1;
       public static final int freehand = 2;
       public static final int text = 3;
       public static final int mode_paint = 0;
       public static final int mode_xor = 1;
       public Color drawColor;
       public int drawThickness = 1;
       public int drawType = 0;
       public boolean fill = false;
       private boolean dragging = false;
       public int oldx = 0;
       public int oldy = 0;
       private int rectangleWidth;
       private int rectangleHeight;
       private tempLine draftLine;
       private tempText draftText;
       public Canvas pad;
       public static final Font defaultFont =
         new Font("Helvetica", Font.BOLD, 14);
       protected boolean floatingText = false;
       boolean showingPicture;
       protected Image offScreen;
       public JTextArea coor;
       public JButton writeIn;
       Connection connection;
       String codeLine;
       int x = 0;
       int y = 0;
       public CanvasOnly()
           try
                Class.forName("com.mysql.jdbc.Driver").newInstance();
           }catch( Exception e)
                 System.err.println("Unable to find and load driver");
                 System.exit(1);
            pad = new Canvas();
            pad.setBackground(Color.white);
            pad.setVisible(true);
            pad.setSize(400, 400);
           coor = new JTextArea(15, 15);
           writeIn = new JButton("load TExt");
           writeIn.addActionListener(new ActionListener()
                   public void actionPerformed(ActionEvent event1)
                     try
                   Statement statement = connection.createStatement();
                   ResultSet rs = statement.executeQuery("SELECT * FROM submit WHERE file_name = 'cmd.java'");
                   rs.next();
                   String one1 = rs.getString("student_id");
                   //System.out.println("one1 :" + one1);
                   String two1 = rs.getString("file_name");
                   //System.out.println("two1 : " + two1);
                    InputStream textStream = rs.getAsciiStream("file");
                    BufferedReader textReader = new BufferedReader(
                                     new InputStreamReader(textStream));
                    codeLine = textReader.readLine();
                    x = 0;
                    y = -12;
                    while(codeLine != null)
                        y = y + 12;
                        //fileText.append( line + "\n");
                        //canvasPad.drawTheString(line, x, y);
                        drawText(Color.black, x, y, codeLine, mode_paint);
                        codeLine = textReader.readLine();
                     textReader.close();
                    pad.setSize(400, y);
                    Timestamp three1 = rs.getTimestamp("ts");
                    //System.out.println(three1);
                    textReader.close();
                    rs.close();
              }catch (SQLException e)
                System.err.println(e);
              catch(IOException ioX)
                System.err.println(ioX);
            //setSize(300,300);
            drawColor = Color.black;
            pad.addMouseListener(this);
         pad.addMouseMotionListener(this);
         offScreen = null;
       public Image getContents()
         // Returns the contents of the canvas as an Image.  Only returns
         // the portion which is actually showing on the screen
         // If the thing showing on the canvas is a picture, just send back
         // the picture
         if (showingPicture)
             return (offScreen);
         ImageFilter filter =
             new CropImageFilter(0, 0, getWidth(), getHeight());
         Image newImage =
             createImage(new FilteredImageSource(offScreen.getSource(),
                                  filter));
         return(newImage);
        public void setImage(Image theImage)
         // Fit it to the canvas
         offScreen = theImage;
         repaint();
         showingPicture = true;
        synchronized public void paint(Graphics g)
         int width = 0;
         int height = 0;
         //The images are stored on an off screen buffer.
            //offScreen is the image declared at top
         if (offScreen != null)
                  //intislise the widt and heigth depending on if showingpicture is true
              if (!showingPicture)
                       width = offScreen.getWidth(this);
                       height = offScreen.getHeight(this);
                   //width = getWidth(this);
                   //height = getHeight(this);  //offScreen
              else
                   //width = pad.getSize().width;
                   //height = getSize().height;
                   width = pad.getWidth();
                   //width = getSize().width;
                   height = pad.getHeight();
                   //height = getSize().height;
                    //Draws as much of the specified image as has already
                    //been scaled to fit inside the specified rectangle
                    //The "this" is An asynchronous update interface for receiving
                    //notifications about Image information as the Image is constructed
    //This is causing problems
              g.drawImage(offScreen, 0, 0, width, height, pad);
              g.dispose();
         //clear the canvas with this method
        synchronized public void clear()
         // The maximum size of the usable drawing canvas, for now, will be
         // 1024x768
         offScreen = createImage(1024, 768);
         //Creates an off-screen drawable image to be used for double buffering
         pad.setBackground(Color.white);
         //Set the showingPicture to false for paint method
         showingPicture = false;
         repaint();
         synchronized public void drawLine(Color color, int startx, int starty,
                              int endx, int endy, int thickness,
                              int mode)
         int dx, dy;
         Graphics g1 = pad.getGraphics();
         Graphics g2;
         //if image is not intialised to null
         //the getGraphics is used for freehand drawing
         //Image.getGraphics() is often used for double buffering by rendering
            //into an offscreen buffer.
         if (offScreen != null)
             g2 = offScreen.getGraphics();
         else
             g2 = g1;
            //mode is put into the method and XOR is final and equal to 1
         if (mode == this.mode_xor)
                  //calls the setXOR mode for g1 and g2
                  //Sets the paint mode of this graphics context to alternate
                    //between this graphics context's current color and the
                    //new specified color.
              g1.setXORMode(Color.white);//This will
              g2.setXORMode(Color.white);
         else
                  //Sets this graphics context's current color to the
                    //specified color
              g1.setColor(color);
              g2.setColor(color);
         if (endx > startx)
             dx = (endx - startx);
         else
             dx = (startx - endx);
         if (endy > starty)
             dy = (endy - starty);
         else
             dy = (starty - endy);
         if (dx >= dy)
              starty -= (thickness / 2);
              endy -= (thickness / 2);
         else
              startx -= (thickness / 2);
              endx -= (thickness / 2);
         for (int count = 0; count < thickness; count ++)
              g1.drawLine(startx, starty, endx, endy);
              g2.drawLine(startx, starty, endx, endy);
              if (dx >= dy)
                  { starty++; endy++; }
              else
                  { startx++; endx++; }
            //Disposes of this graphics context and releases any system
            //resources that it is using.
         g1.dispose();
         g2.dispose();
         //This method is not causing trouble
         synchronized public void drawText(Color color, int x, int y,
                String text, int mode)
         Graphics g1 = pad.getGraphics();
         Graphics g2;
         if (offScreen != null)
             g2 = offScreen.getGraphics();
         else
             g2 = g1;
         if (mode == this.mode_xor)
              g1.setXORMode(Color.white);
              g2.setXORMode(Color.white);
         else
              g1.setColor(color);
              g2.setColor(color);
         g1.setFont(new Font("Times Roman", Font.PLAIN, 10));
         g2.setFont(new Font("Times Roman", Font.PLAIN, 10));
         g1.drawString(text, x, y);
         g2.drawString(text, x, y);
         g1.dispose();
         g2.dispose();
          //connect to database
      public void connectToDB()
        try
           connection = DriverManager.getConnection(
           "jdbc:mysql://localhost/submissions?user=root&password=football");
                     //may have to load in a username and password
                                                     //code "?user=spider&password=spider"
        }catch(SQLException connectException)
           System.out.println("Unable to connect to db");
           System.exit(1);
      //use this method to instatiate connectToDB method
      public void init()
           connectToDB();
        protected void floatText(String text)
         draftText = new tempText(this.drawColor,
                            this.oldx,
                            this.oldy,
                                        text);
         this.floatingText = true;
        //nothing happens when the mouse is clicked
        public void mouseClicked(MouseEvent e)
        //When the mouse cursor enters the canvas make it the two
        //straigth lines type
        public void mouseEntered(MouseEvent e)
         pad.setCursor(new Cursor(Cursor.CROSSHAIR_CURSOR));
        //When mouse exits canvas set to default type
        public void mouseExited(MouseEvent E)
         pad.setCursor(new Cursor(Cursor.DEFAULT_CURSOR));
        //used for creating the shapes and positioning thetext
        public void mousePressed(MouseEvent e)
             // Save the coordinates of the mouse being pressed
         oldx = e.getX();
         oldy = e.getY();
         // If we are doing lines, rectangles, or ovals, we will show
         // draft lines to suggest the final shape of the object
         //Draw type is a publc int which can be changed
         if (drawType == this.line)
            draftLine = new tempLine(drawColor, oldx, oldy, oldx,
                                 oldy, drawThickness);
            // Set the draw mode to XOR and draw it.
            drawLine(draftLine.color, draftLine.startx,
            draftLine.starty, draftLine.endx,
            draftLine.endy, drawThickness, this.mode_xor);
        //mouse listener for when the mouse button is released
        public void mouseReleased(MouseEvent e)
             if (drawType == this.line)
              // Erase the draft line
              drawLine(draftLine.color, draftLine.startx, draftLine.starty,
                    draftLine.endx, draftLine.endy, drawThickness,
                    this.mode_xor);
              // Add the real line to the canvas
              //When the imput changes to "mode_paint" it is drawen
              //on the canvas
              drawLine(drawColor, oldx, oldy, e.getX(), e.getY(),
                    drawThickness, this.mode_paint);
              dragging = false;
         else if (drawType == this.text)
              if (floatingText)
                   // The user wants to place the text (s)he created.
                   // Erase the old draft text
                   drawText(drawColor, draftText.x, draftText.y,
                                            draftText.text, this.mode_xor);
                       String str = Integer.toString(e.getX());
                       String str1  = Integer.toString(e.getY());
                       coor.append(str + " " + str1 + "\n");
                   // Set the new coordinates
                   draftText.x = e.getX();
                   draftText.y = e.getY();
                   // Draw the permanent text
                   drawText(drawColor, draftText.x, draftText.y,
                         draftText.text, this.mode_paint);
                   floatingText = false;
         public void mouseDragged(MouseEvent e)
            if (drawType == this.freehand)
              drawLine(drawColor, oldx, oldy, e.getX(), e.getY(),
                    drawThickness, this.mode_paint);
              oldx = e.getX();
              oldy = e.getY();
         else
             dragging = true;
         if (drawType == this.line)
            // Erase the old draft line
            drawLine(draftLine.color, draftLine.startx, draftLine.starty,
              draftLine.endx, draftLine.endy, drawThickness,
              this.mode_xor);
            // Draw the new draft line
            draftLine.endx = e.getX();
            draftLine.endy = e.getY();
            drawLine(draftLine.color, draftLine.startx, draftLine.starty,
              draftLine.endx, draftLine.endy, drawThickness,
              this.mode_xor);
         public void mouseMoved(MouseEvent e)
             if (floatingText)
              // When the user has entered some text to place on the
              // canvas, it remains sticky with the cursor until another
              // click is entered to place it.
              // Erase the old draft text
              drawText(drawColor, draftText.x, draftText.y,
                                draftText.text, this.mode_xor);
              // Set the new coordinates
              draftText.x = e.getX();
              draftText.y = e.getY();
              // Draw the new floating text
              drawText(drawColor, draftText.x, draftText.y,
                        draftText.text, this.mode_xor);
         //declare  a class for the line shown before the is as wanted
        class tempLine
         public Color color;
         public int startx;
         public int starty;
         public int endx;
         public int endy;
         public int thickness;
         public tempLine(Color mycolor, int mystartx, int mystarty,
                      int myendx, int myendy, int mythickness)
             color = mycolor;
             startx = mystartx;
             starty = mystarty;
             endx = myendx;
             endy = myendy;
             thickness = mythickness;
        class tempText
         public Color color;
         public int x;
         public int y;
         public String text;
         public tempText(Color mycolor, int myx, int myy, String mytext)
             color = mycolor;
             x = myx;
             y = myy;
             text = mytext;
    }

    http://www.java2s.com/ExampleCode/2D-Graphics/DemonstratingUseoftheImageIOLibrary.htm

  • There was a problem saving your PowerPivot Document

    Version Information:
    Microsoft Office Professional Plus 2013
    Microsoft Office PowerPivot for Excel 2013
    The Problem:
    When I save my PowerPivot Excel document, I receive this error.  Eventually the document saves and closes.  When I open the document and make a change - I save again, and get the error back.  If I make no changes, and save, I don't get the
    error.
    Any ideas will help.
    Error Message:
    "There was a problem saving your PopwerPivot deocument.  Some of your work may  not have saved properly.  Please try saving again."
    <Details>:
    ============================
    Error Message:
    ============================
    Object reference not set to an instance of an object.
    ============================
    Call Stack:
    ============================
       at Microsoft.Office.PowerPivot.ExcelAddIn.GeminiPivotManager.SaveGeminiPivot(Workbook wb)
       at Microsoft.Office.PowerPivot.ExcelAddIn.AddIn.Application_WorkbookBeforeSave(Workbook Wb, Boolean SaveAsUI, Boolean& Cancel)
    ============================

    I am getting the same error while saving PowerPivot in excel 2013. I tried to create a new model from scratch but its strange that I am getting the same error message.
    The error appears as soon as I import data from SQL into PowerPivot.

  • Problem saving attachments with longish filenames

    We're having a problem saving attachments from Mail that are 25+ characters in length. ie. If we click on the "Save" attachment button in Mail, we get an alert that the file can't be saved because it's too long. We can drag the file to the desktop, but then can't move it without getting the "name is too long" alert. We have to change the name, deleting a bunch of characters. Using HFS+. Anyone have a solution?

    When you drag the attachment to the desktop you should be able to click on the file's name then edit it so it's less then 25 characters. Try saving it again after deleting some characters.
    We just switched from OS 9.4 to OS 10.4 (Intel) and found that Photoshop did not recognize any of the pics in our folders because we haven't been saving them with the file extension (i.e. jpeg, eps, etc.) We had to open all our pic files then add the extension. Apparently our old Macs could recognize a photo file but our new ones need the extension to be able to read the file. So if your file name is too long it's probably cutting off the extension - your computer won't let you save it until you make room for the file extension at the end.
    Hope this helps.
    Intel Mac Pro   Mac OS X (10.4.7)  

  • Problems saving files in Snow Leopard

    I've just upgraded from Leopard to Snow Leopard (I know I'm a dinosaur...) and am now having major problems saving Appleworks files. 
    When I'm doing corrections, I sometimes need to save a file over 10 times and my helpful "Do you want to replace this file?" box has gone and instead it's saving as a new file and adding another 'full stop' at the end of the file name.  It's driving me nuts!
    Is there any way to get back to just over-writing the file?
    Any help gratefully received...
    Thanks
    Take care
    Marianne

    This is turning out to be really crazy. I haven't added any third party application at all.
    Last night I tried Roger's 'command-S' and it worked on a different document I opened.  I tried the same document, changed it, 'Saved As' and it asked me if I wanted to over-write the file. 
    I then opened the original document I was having trouble with, hit 'Save As' and the same thing happened; it just made multiple copies of the file.  It seems to be a problem with this particular client and all his files; unfortunately, he's the client I do the most work for.
    Now I don't know why it's happening on some documents and not on others.
    Any further ideas?  Can I do something to this client's files, re-save them or whatever, so I don't have this problem?
    Thanks again...
    Marianne

  • Issue with creating new change request

    Hi
    We have implemented charm and we are using the workcenters for people to be able to access and create new change requests. When i click on the link to create a new change request it takes me to the screen to create a new one and it shows a New Change Request Number eg 51. With out saving or entering anything I go out and back to the workcenter and then click to creat a new change request and when it takes me back in to create a new change request it shows a new change request number i.e 52. Why would it do this?
    Santosh

    Hi,
    wel by default a transaction is autosaved..so u hav diff no each time you logged into this.
    Go to spro and choose your transaction type i.e. SDCR for change request and double click it
    and now remove the Tick from
    Early No. assignement
    This wil solve your problem so whenver it opn no appears by default only whn u press save it generates a no.
    Pls assign pts.

  • Problem creating new reports in 11.1.1 - still retains prior reports POV

    I have a problem creating new reports in 11.1.1 - it still retains prior reports POV. Example - I create one report - which shows "all locations". I then want to create another report, with a different POV, specific for just one location "North America". If I try to start with the original report and change the POV, the older reports default to the newest reports POV. I tried saving the grid with a different name, I tried creating a report from scratch (not using any prior reports, objects or grids) and I still get the same result. I also tried to use a new database connection - still no luck.
    Any suggestions? Am I missing a critical step?
    Going forward, what is the best approach to take to create several reports, with differing POVs? (example, the period and fiscal year may differ, or a location may differ). I want the reports to run, without using one report and chagning the POV each time.
    Thanks,
    Linda

    I think this is on the same lines as this question > HOW TO SET FR POV PER REPORT, NOT PER CONNECTION ?
    Cheers
    John
    http://john-goodwin.blogspot.com/

  • Problems saving in Flash Pro CS5

    Hi guys,
    Hoping someone can help/is having a similar problem to this as I've not got much information to go on.
    I have a couple of Flash CS5 users who are having problems saving files. They can open the file, edit/make changes to the file and save it and from all appearances the save has been successful - the save progress bar has popped up and completed and everything "looks" ok.
    However the file changes were not saved. This problem is intermittent, however if it is occuring in the current flash "session" then it will affect all save actions performed - including attempting to save the existing file under a new filename.
    I've checked for obvious problems on the PC including disk errors and readonly files and so on but I'm otherwise at a loss to explain why this is happening?
    Is anyone else having this problem or can offer help diagnosing what might be wrong?
    Many thanks,
    Craig

    Hi Nivesh,
    This is on several different files which are stored locally on the users's PC.
    Some additional factors which affect this if its any further help
    1. These files are part of a subversion repository, however the users get a lock on the file to make it read/write before opening.
    2. At least some of files have recently been converted from CS4 to CS5, though I'm afraid I have no info as to if its a corrolating factor, I'll ask the users.
    Thanks,
    Craig

  • Error saving user changes with amclientsdk 6.3

    We have an application that was originally developed for the JES2 stack that handles creation and maintenance of users for our portal environment. We are running Access Manager 7.1 in Legacy Mode and per suggestions from people on this forum we are using the AMClientSDK 6.3 code.
    The main change that we had to make to the code to get it running was to replace the createSSOToken(userID, password) method of getting our connections with the AuthContext methodology. This has been completed without any problems. However, we are now having the following problem when trying to create users.
    As a bit of background, the application first creates the user entry with just the userID and name information that is required by the directory. Once that is complete it goes back in and does an update on that user with the rest of their registration information.
    public boolean save() throws EGatewayException {
    try {
    logger.debug("User entry has changed is: " + dirty);
    if (dirty) {
         logger.debug("We need to store the updates for the user...preparing to call store()...");
                             _amUser.store();
                             logger.debug("Back from storing user changes...set dirty flag to false.");
                             dirty = false;
                             if (logger.isDebugEnabled()) {
                                  logger.debug("User " + _amUser.getDN() + " saved.");
                             return true;
                        } else {
                             logger.debug("Dirty flag is " + dirty + "but we'll store anyways...");
                             _amUser.store();
                             // Not sufficient time to test removing this line!
                             logger.debug("No values actually changed. Saving anyway.");
                             return false;
                   } catch (Exception e) {
                        if (e instanceof AMException) {
                             String code = ((AMException) e).getErrorCode();
                             logger.debug("AMException error code is: " + ((AMException) e).getErrorCode());
                             if (code.equals("452")) {
                                  logger.debug("Error 452. Must be a password problem");
                                  throw new EGatewayPasswordException(
                                       logger,
                                       "Error 452. Must be a password problem",
                                       e);
                        throw new EGatewayException(
                             logger,
                             "Error saving user " + getDn(),
                             e);
    When the update occurs we see the following error in the logs.
    [6/28/07 12:13:13:001 EDT] 00000041 SystemOut O 2007-06-28 12:13:13,001 com.bcbsm.common.egateway.DirectoryConnection AMException error code is: 1000
    [6/28/07 12:13:13:041 EDT] 00000041 SystemOut O 2007-06-28 12:13:13,032 com.bcbsm.common.egateway.DirectoryConnection Error saving user uid=joanof2,ou=People,o=Members,dc=bcbsm,dc=com: New Generic Exception
    com.iplanet.am.sdk.AMException: New Generic Exception
    at com.iplanet.am.sdk.remote.DirectoryManager.setAttributes(DirectoryManager.java:1063)
    at com.iplanet.am.sdk.AMDirectoryManager.setAttributes(AMDirectoryManager.java:601)
    at com.iplanet.am.sdk.AMCacheManager.setAttributes(AMCacheManager.java:868)
    at com.iplanet.am.sdk.AMObjectImpl.store(AMObjectImpl.java:1737)
    at com.iplanet.am.sdk.AMObjectImpl.store(AMObjectImpl.java:1677)
    at com.bcbsm.common.egateway.DirectoryConnection$User.save(DirectoryConnection.java:1481)
    at com.bcbsm.egateway.data.MemberConnection.updateMember(MemberConnection.java:267)
    at com.bcbsm.egateway.data.MemberConnection.createMember(MemberConnection.java:99)
    at com.bcbsm.egateway.data.ActualDirectory.createMember(ActualDirectory.java:108)
    at com.bcbsm.egateway.struts.AccountCreationAction.createAccount(AccountCreationAction.java:168)
    at com.bcbsm.egateway.struts.AccountCreationAction.doExecute(AccountCreationAction.java:85)
    at com.bcbsm.egateway.struts.BaseAction.execute(BaseAction.java:112)
    Any insight or assistance is appreciated.
    Thank you.

    Is the agent app user id in the AMConfig.properties amadmin or a user who belongs to the top level admin role?

  • Problems saving contact ringtones

    Is anyone else having problems saving contact ringtones?  I tried changing it and it keeps stay as default.  I've tried both the ringtones that came on the razr and also one I bought and it still says default.  I went into the contacts, went to menu, chose options, ringtones and chose the ringtone I wanted and hit ok, but it still says Default.  Any suggestions?

    Patients Billy Patients Just sat Take a Min. Maybe Two!  And give this a Look
    Motoblur: On Motorola’s phones, like Samsung’s, there’s an easy way to ensure that new contacts are always saved to Google. When you go into the Contacts application, go to Menu -> More-> Settings then Choose Contact Storage-> and it'll provide you with your various options to save the contacts to, Google being one of them. Give this a Try..

  • Wifi problems with new ipad

    I'm trying to learn how to correct wifi problems with new iPad.  It is the wifi only, 64GB model.  I want to be able to use it at work, where we have a great wifi network.  I can usually connect to our network with no problem, but after an hour or so my iPad loses the network.  When I try to reconnect, I see that the network is showing full strength reception, but I get the error message from the iPad that I am "Unable to join" the network.  My iPhone connects to the same network seamlessly, as do all of the other iPhones of my co-workers and the older generation iPads that some of our staff has.
    At other locations, I typically have no problems (home, apple store, etc.) but I have had the same situation pop up at a coffee shop where I could see that there was a wifi network available, but I could not join it even though it was the shop's free wifi. 
    I have tried turning the iPad off, turning off wifi and turning it back on again, and forgetting the wifi network in question.  I can't think of any other methods that are available to an end user to correct the problem. 
    I have already gone to the Apple store to swap out the unit, and the newer one is having the same symptoms. 
    Can anyone offer any advice here?  This is quite frustrating.

    No problem! Have a read at this most interesting article which has special significance as regards your models!
    http://edition.cnn.com/2012/04/05/tech/gaming-gadgets/ipad-wi-fi-issues/index.ht ml
    However, I attach an extract from another thread for your perusal. You can disregard any suggestions/links you have already explored -
    created by Texas Mac Man in Using iPad - View the full discussion
    Look at iOS Troubleshooting Wi-Fi networks and connections  http://support.apple.com/kb/TS1398
    Additional things to try.
    Try this first. Turn Off your iPad. Then turn Off (disconnect power cord) the wireless router &amp; then back On. Now boot your iPad. Hopefully it will see the WiFi.
    Change the channel on your wireless router. Instructions at http://macintoshhowto.com/advanced/how-to-get-a-good-range-on-your-wireless-netw ork.html
    How to Quickly Fix iPad 3 Wi-Fi Reception Problems
    http://osxdaily.com/2012/03/21/fix-new-ipad-3-wi-fi-reception-problems/
    If none of the above suggestions work, look at this link.
    iPad Wi-Fi Problems: Comprehensive List of Fixes
    http://appletoolbox.com/2010/04/ipad-wi-fi-problems-comprehensive-list-of-fixes/
     Cheers, Tom ;)

Maybe you are looking for