I have a Windows 8.1 and it's even running slow.  I'm a complete novice with computers (I've only had this one for 3 weeks) and I'm probably doing something wrong, but I haven't a clue what....

I have a Windows 8.1 and it's even running slow.  I'm a complete novice with computers (I've only had this one for 3 weeks) and I'm probably doing something wrong, but I haven't a clue what.
The tools are not responding when I try to use them.  Some of them work sometimes, but not others and some don't work at all.  I'm in a design class online and I need these tools desperately.  I have an assignment due Monday and I'm losing the whole weekend because Tech Support is only open M-F!
Any help anyone can give me will be appreciated.
Thanks,
Rose Ireland

Maybe these links provide some pertinent information.
Optimize performance | Photoshop CS4, CS5, CS6, CC
Photoshop: Basic Troubleshooting steps to fix most issues

Similar Messages

  • HT2404 i am trying to update my operating software for a iphone 3g to enable me to download io5 and icloud....can I actually do this as i've tried in vain and am getting no where..added to this I am a relative novice so Im probably doing something wrong.

    i am trying to update my operating software for an iphone 3g to enable me to download io5 and icloud....can I actually do this as i've tried in vain and am getting no where..added to this I am a relative novice so Im probably doing something wrong.

    Do you have an iPhone 3G or 3 GS? The 3G can not be upgraded beyond 4.2.1
    Stedman

  • Is this a bug in ipod software or am i doing something wrong?

    I got my ipod video a few weeks ago and was excited to be able to carry all 7000+ songs around in one place.. but then i ran into this problem and i'm not sure if it's a bug or if i'm doing something wrong.
    let's say i have exactly one album by an artist.. and i also happen to have some singles from the artist, with no album set... (i prefer not to have albums set for songs i don't have the entire album for, to keep from having to sort through a truckload of albums i don't completely have).
    when i browse by artist, and i select the artist, only the songs in the album shows up, all the non-album labeled songs are not visible! the same thing happens when i choose by genre..
    in fact the only way to find those songs not bound to an album is to select them from the song list.. and having to scroll through 7000+ songs to find one really bites..
    curiously enough, if there is two or more albums, then i can find the songs without albums.. definately sounds like a bug to me.. the software for the ipod video is only at v1.0, maybe they'll fix this (hopefully other ipods don't have this problem, i have no way of knowing though).
    one work around i have tried is to set an empty album for the artist's song that has none, but i mean i don't want to do that for all my non-albumed songs because i'm interested in preserving the timestamp of songs (to know when i got them) and i can't reasonably search for songs that have exactly one album to just set those..

    when i go to Music > Artist > All, as you suggested, i see all the albums i have listed. doesn't really relate to my problem with artists with songs in one album, as well as song w/o album set, and the latter not showing up.
    but that reminds me, why is it when i go to the All section from a particular artist and they do have more than one album (or even no albums), the order of the songs is in the order they are in the albums.. if i wanted the order it is on albums, i would have selected that album for example.. it would be nice if the songs were in alphabetical order when you're NOT browsing by album, making a particular song easier to find (what if you have thirteen albums for example and u aren't sure which album a song is on, now you have to scroll through a seemingly random ordered list to find one song, alphabetical would be SOOOO helpful!)

  • I plugged my iPad in to charge last night.  This morning, it won't turn on, anybody have any suggestions as to what is going on?  I have only had this iPad for a little over a month!

    I plugged my iPad in to charge last night.  I plugged it into the wall and I have never had any problems.  I have had this iPad for a little over a month.  This morning, when I went to look something up, it wasn't responding.  It won't turn on, I get nothing on the screen, and if I plug it in to charge, to the wall or my computer, nothing happens.  Has anyone else had this issue?  I can't think of what else to try or what to do next.

    First thing to try is to reset your device. Press and hold the Home and Sleep buttons simultaneously until the Apple logo appears. Let go of the buttons and let the device restart. See if that fixes your problem.
    If that doesn't help I suggest having a technician look at your iPad. Make an appointment at an Apple Store to have your device examined by a technician. Or contact Apple Support.

  • I must be doing something wrong, but I can't find it.

    Hi all.
    I had this code working two or three iterations ago, but in moving some functionality from one class (where it did not belong) to another (where it made more sense to deal with it) I broke something. Below, you will see my ImageViewer class source:
    package us.state.pa.dli.imagetracker;
    import java.awt.*;
    import java.awt.image.*;
    import javax.media.jai.*;
    * @author ghurley
    public class ImageViewer extends ScrollPane {
         static final long serialVersionUID = 1;
         private ImageFile iFile;
         //private Image i;
         private Graphics2D g2;
         private BufferedImage mBufferedImage;
         private MediaTracker mt;
         public ImageViewer() {
              // TODO Auto-generated constructor stub
          * This method makes the content of the ImageViewer pane.
         public void makeContent() {
              iFile = new ImageFile("D:\\eclipse\\plugins\\com.yoxos.yim_2.2.2\\yoxos32.png");
              mt = new MediaTracker(this);
              this.renderImage();
              this.setVisible(true);
         public void replaceImage(ImageFile imFile) {
              //mt.removeImage(i);
              mt.removeImage(mBufferedImage);
              this.iFile = imFile;
              this.renderImage();
              this.repaint();
         public void renderImage() {
              String name = iFile.getAbsolutePath();
              //BufferedImage mBufferedImage = iFile.getB();
              this.loadOther(name);
             if (mBufferedImage.equals(null)) {
    //              System.out.println("No image loaded!");
                  return;
             //System.out.println("mBufferedImage is a: "+mBufferedImage.getClass().getName());
             int x, y;
    //         System.out.println("Width: "+this.iFile.getWidth());
    //         System.out.println("Height: "+this.iFile.getHeight());
             x = this.centerImage(this.iFile.getWidth(),'x'); 
             y = this.centerImage(this.iFile.getHeight(),'y');
    //         System.out.println("x: "+x);
    //         System.out.println("y: "+y);
    //         System.out.println("scaled width: "+mBufferedImage.getWidth(this));
    //         System.out.println("scaled height: "+mBufferedImage.getHeight(this));
             if (iFile.getHeight() > this.getHeight() || iFile.getWidth() > this.getHeight()) {
                  mBufferedImage = iFile.showMeScaled();
                  System.out.println("scaling down");
    //              g.drawImage(iFile.showMeScaled(), x, y, this);
             } else if (iFile.getHeight() < this.getHeight() && iFile.getWidth() < this.getWidth()) {
                  mBufferedImage = iFile.showMeScaled();
                  System.out.println("scaling up");
    //              g.drawImage(iFile.showMeScaled(), x, y, this);
             } else {
                  mBufferedImage = iFile.showMe();
                  System.out.println("not scaling");
                  System.out.println(iFile.getName()+":\n\tWidth:"+iFile.getWidth()+"\n\tHeight:"+iFile.getHeight()+"\n\tx:"+x+"\n\ty:"+y);
                  System.out.println("This Panel:\n\tWidth:"+this.getWidth()+"\n\tHeight:"+this.getHeight());
    //              g.drawImage(iFile.getB(), x, y, this);
             this.setGraphics(mBufferedImage.createGraphics());
             g2.drawImage(mBufferedImage, 0, 0, this);
    //         System.out.println(this.g2.toString());
    //         System.out.println(mBufferedImage.createGraphics().toString());
    //         g = this.g2;
    //         g2 = this.getGraphics();
              //Graphics g2 = this.getGraphics();
              //showImage(mBufferedImage);
              if (!g2.equals(null)) myPaint();               
    //     private void showImage(BufferedImage bufferedImage) {
    //          // TODO Auto-generated method stub
         private void loadOther(String name) {
    //          double myScale;
              iFile.setQ(this);
              iFile.setSize(this.getSize());
    //          i = iFile.showThumbnail();
              mBufferedImage = iFile.showMe();
    //          myScale  = this.getScale();
    //          System.out.println(myScale);
    //          if (this.getWidth() < iFile.getWidth() || this.getHeight() < iFile.getHeight()) {
    //               iFile.setScale(myScale);
    //               mBufferedImage = iFile.showMeScaled();
              mt.addImage(mBufferedImage, 0);
    //          mt.addImage(mBufferedImage, 0);
              try {
                   mt.waitForID(0);
              } catch (InterruptedException ie) {
                   System.out.println("Oops.  Exception: " + ie.getMessage());
                   return;
         private int centerImage(int coordinate, char axis){
              int displacement = 0;
              if (axis == 'x') {
                   displacement = (this.getWidth() - coordinate) / 2;
              } else {
                   displacement = (this.getHeight() - coordinate) / 2;
              return displacement;
          * @param args
         public void myParseArgs(String[] args) {
              this.iFile = new ImageFile(args[0]);
         private void myPaint() {
              this.paint(g2);
         public void paint(Graphics2D g) {
    //         if (i.equals(null)) return;
    //         if (mBufferedImage.equals(null)) return;
    //         System.out.println("mBufferedImage is a: "+mBufferedImage.getClass().getName());
    //         int x, y;
    //         System.out.println("Width: "+this.iFile.getWidth());
    //         System.out.println("Height: "+this.iFile.getHeight());
    //         x = this.centerImage(this.iFile.getWidth(),'x'); 
    //         y = this.centerImage(this.iFile.getHeight(),'y');
    //         System.out.println("x: "+x);
    //         System.out.println("y: "+y);
    //         System.out.println("scaled width: "+mBufferedImage.getWidth(this));
    //         System.out.println("scaled height: "+mBufferedImage.getHeight(this));
    //         if (iFile.getHeight() > this.getHeight() || iFile.getWidth() > this.getHeight()) {
    //              mBufferedImage = iFile.showMeScaled();
    ////              g.drawImage(iFile.showMeScaled(), x, y, this);
    //         } else if (iFile.getHeight() < this.getHeight() && iFile.getWidth() < this.getWidth()) {
    //              mBufferedImage = iFile.showMeScaled();
    ////              g.drawImage(iFile.showMeScaled(), x, y, this);
    //         } else {
    //              mBufferedImage = iFile.showMe();
    //              System.out.println(iFile.getName()+":\n\tWidth:"+iFile.getWidth()+"\n\tHeight:"+iFile.getHeight()+"\n\tx:"+x+"\n\ty:"+y);
    //              System.out.println("This Panel:\n\tWidth:"+this.getWidth()+"\n\tHeight:"+this.getHeight());
    ////              g.drawImage(iFile.getB(), x, y, this);
    //         this.setGraphics(mBufferedImage.createGraphics());
    //         g = this.g2;
    //         g.drawImage(mBufferedImage, 0, 0, this);
              g.drawString("Hiya", 0, 0);
    //          g.drawImage(iFile.showThumbnail(), 0, 0, this);
         public Insets getInsets() {
              Insets in = super.getInsets();
              if (in ==  null) {
                   in = new Insets(0, 0, 0, 0);
              return in;
         private void setGraphics(Graphics2D g) {
              this.g2 = g;
         public Graphics2D getGraphics() {
              //WritableRaster w = iFile.getB().getRaster();
              //BufferedImage b = new BufferedImage(this.getWidth(), this.getHeight(), BufferedImage.TYPE_INT_RGB);
              BufferedImage b = iFile.showMe();
    //          System.out.println("Height Should Be:"+b.getHeight());
              //System.out.println(g2.)
    //          g2 = b.createGraphics();
              g2 = iFile.getGraphics();
              g2.setColor(Color.BLUE);
              //g2 = (Graphics2D)g2.create(0, 0, this.getWidth(), this.getHeight());
              return g2;
    }The ImageFile class has source as follows:
    package us.state.pa.dli.imagetracker;
    import java.awt.*;
    import java.awt.geom.*;
    import java.awt.image.*;
    import java.awt.image.renderable.*;
    import java.io.*;
    import java.net.*;
    import java.util.*;
    import javax.media.jai.*;
    import com.sun.media.jai.codec.*;
    import javax.imageio.*;
    public class ImageFile extends File {
         static final long serialVersionUID = 1;
         private String parentDir;
         private double scale;
         private int width, height;
         private double scaledWidth, scaledHeight;
         //private Image i;
         private BufferedImage b;
         private Directory d;
         private Component q;
          * @param arg0 The parent directory
          * @param arg1 The child file
          * <p>Creates a new File instance from a parent abstract pathname and a child pathname string.
         public ImageFile(File arg0, String arg1) {
              super(arg0, arg1);
              this.setParentDir(this.getParent());
              this.setScale(1.0);
              this.setImageSize();
          * @param arg0 The parent directory
          * @param arg1 The child file
          * <p>Creates a new File instance from a parent pathname string and a child pathname string.
         public ImageFile(String arg0, String arg1) {
              super(arg0, arg1);
              this.setParentDir(this.getParent());
              this.setScale(1.0);
              this.setImageSize();
          * @param arg0
          * <p>Creates a new File instance by converting the given pathname string into an abstract pathname.
         public ImageFile(String arg0) {
              super(arg0);
              this.setParentDir(this.getParent());
              this.setScale(1.0);
              this.setImageSize();
          * @param arg0
          * <p>Creates a new File instance by converting the given file: URI into an abstract pathname.
         public ImageFile(URI arg0) {
              super(arg0);
              // TODO Auto-generated constructor stub
              this.setParentDir(this.getParent());
              this.setScale(1.0);
              this.setImageSize();
    //      * @param prefix
    //      * @param suffix
    //     public void createATempFile(String prefix, String suffix) {
    //          d = new Directory(this.parentDir);
    //          try {
    //               File f = super.createTempFile(prefix, suffix,d);
    //          } catch (IOException e) {
    //               // TODO Auto-generated catch block
    //               e.printStackTrace();
    //     public ImageFile createImageFile(Image i) {
    //          ImageFile newIfile = null;
    //          ImageEncoder ie = null;
    //          File newFile;
    //          String []foundThese;
    //          String fileType = "BMP";
    //          String extension = this.getName().substring(this.getName().lastIndexOf('.'));
    //          String timestamp = "" + new java.util.Date().getTime();
    //          String myOS = System.getProperty("os.name");
    //          char mySep;
    //          if (myOS.substring(0, 7).equalsIgnoreCase("Windows")) {
    //               mySep = '\\';
    //          } else {
    //               mySep = '/';
    //          this.createATempFile(timestamp, extension);
    //          foundThese = (this.d.searchFor(timestamp));
    //          //take the first one
    //          newFile = new File(foundThese[0]);
    //          System.out.println(newFile.getPath());
    ////          int[] pixels = new int[(int)(this.scaledHeight*this.scaledWidth)];
    ////          PixelGrabber pg = new PixelGrabber(i, 0, 0, (int)scaledWidth, (int)scaledHeight,pixels,0,0);
    ////          try {
    ////               pg.grabPixels();
    ////          } catch (InterruptedException e1) {
    ////               // TODO Auto-generated catch block
    ////               e1.printStackTrace();
    //////          if(!newIfile.exists()) {
    //////               try {
    //////                    newIfile.createNewFile();
    //////               } catch (IOException e) {
    //////                    // TODO Auto-generated catch block
    //////                    e.printStackTrace();
    //          FileOutputStream fos;
    //          try {
    //               fos= new FileOutputStream(newFile);
    //               if (extension.equalsIgnoreCase(".TIF") || extension.equalsIgnoreCase(".BMP")) {
    //                    TIFFEncodeParam tep = new TIFFEncodeParam();
    //                    fileType = "TIFF";
    //                    ie = (ImageEncoder)new com.sun.media.jai.codecimpl.TIFFImageEncoder(fos, tep);
    //               } else if (extension.equalsIgnoreCase(".BMP")) {
    //                    BMPEncodeParam bep = new BMPEncodeParam();
    //                    ie = (ImageEncoder)new com.sun.media.jai.codecimpl.BMPImageEncoder(fos, bep);
    //               } else if (extension.equalsIgnoreCase(".PNG")) {
    //                    PNGEncodeParam pep = new PNGEncodeParam.Palette();
    //                    fileType = "PNG";
    //                    ie = (ImageEncoder)new com.sun.media.jai.codecimpl.PNGImageEncoder(fos, pep);
    //               } else if (extension.equalsIgnoreCase(".GIF")) {
    //                    System.out.println("GIF Images not supported");
    //               } else if (extension.equalsIgnoreCase(".JPG")) {
    //                    JPEGEncodeParam jep = new JPEGEncodeParam();
    //                    fileType = "JPEG";
    //                    ie = (ImageEncoder)new com.sun.media.jai.codecimpl.JPEGImageEncoder(fos, jep);
    //               } else {
    //                    System.out.println("File format not supported");
    //          } catch (FileNotFoundException e) {
    //               // TODO Auto-generated catch block
    //               e.printStackTrace();
    //          ImageWriter iw = (ImageWriter)ImageIO.getImageWritersBySuffix(extension.substring(1)).next();
    //          ParameterBlock jpb = new ParameterBlock().addSource(i);
    //          OperationRegistry ory = JAI.getDefaultInstance().getOperationRegistry();
    //          String [] temp = ory.getRegistryModes();
    //          String []temp2;
    //          for (int which = 0; which < temp.length; which++) {
    //               temp2 = ory.getDescriptorNames(temp[which]);
    //               System.out.println("\t"+temp[which]+":");
    //               for (int cual = 0; cual < temp2.length; cual++) {
    //                    System.out.println("\t\t"+temp2[cual]);
    //          ParameterBlock scaler = new ParameterBlock().addSource(i);
    //          scaler.add(newFile);
    //          scaler.add(new Dimension((int)this.scaledWidth, (int)this.scaledHeight));
    //          RenderableOp scaleIt = new RenderableOp("scale",scaler);
    //          AffineTransform at = new AffineTransform();
    //          RenderContext rc = new RenderContext(at);
    //          RenderedImage ri = scaleIt.createRendering(rc);
    //          try {
    //               jpb.set(ImageIO.createImageOutputStream(newFile), 0);
    //               jpb.set(Boolean.TRUE, 5);
    //               jpb.set(new Dimension((int)this.scaledWidth, (int)this.scaledHeight),6);
    //               jpb.set(iw, 13);
    //               //System.out.println(JAI.getDefaultInstance().getOperationRegistry())
    //               RenderedOp op = JAI.create("FileStore", jpb);
    //          } catch (IOException e) {
    //               // TODO Auto-generated catch block
    //               e.printStackTrace();
    ////          RenderedOp op = JAI.create("filestore", i,foundThese[0],fileType);
    ////          RenderedOp op = JAI.create("filestore", image, filename, filetype, encodeParam);
    //          //          if (! ie.equals(null)) {
    ////               newIfile = new ImageFile(fred[0]);
    ////               RenderedImage ri = newIfile.getB();
    ////               try {
    ////                    ie.encode(ri);
    ////               } catch (IOException e) {
    ////                    // TODO Auto-generated catch block
    ////                    e.printStackTrace();
    //          newIfile = new ImageFile(newFile.getPath());
    //          return newIfile;
          * @return A URI representing this file.
         public URI getURI() {
              return this.toURI();
         public URL getURL() {
              URL u = null;
              try {
                   u = this.getURI().toURL();
              } catch (MalformedURLException e) {
                   // TODO Auto-generated catch block
                   e.printStackTrace();
              //System.out.println(u);
              return u;
         public boolean matchFileName(String namePart) {
              boolean matches = false;
              matches = this.getPath().contains((CharSequence)namePart);
              return matches;
         public String getParentDir() {
              return this.parentDir;
         public void setParentDir() {
              int endIndex = this.getPath().lastIndexOf(File.pathSeparatorChar);
              this.setParentDir(this.getPath().substring(0, endIndex));
         public void setParentDir(String pathName) {
              this.parentDir = pathName;
         public void move(String newpath) {
              //String myPath = this.getPath();
              String myName = this.getName();
    //          System.out.println(myName);
              //char sep = File.pathSeparatorChar;
              String newName = "";
              //int startName = myPath.length();
              //newName =newName + newpath + sep + myName;
              newName =newName + newpath + myName;
    //          System.out.println(newName);
              File f = new File(newName);
              this.renameTo(f);
    //     public Image show() {
    //          i = Toolkit.getDefaultToolkit().getImage(this.getPath());
    //          System.out.println(Toolkit.getDefaultToolkit().getImage(this.getPath()).toString());
    //          return i;          
         public Image showThumbnail() {
              Image i;
              //this.showMeScaled();
    //          System.out.println("Image width: "+width);
    //          System.out.println("Image height: "+height);
    //          System.out.println(b);
              i = b.getScaledInstance((int)scaledWidth, (int)scaledHeight, Image.SCALE_AREA_AVERAGING);
              System.out.println(i);
              return i;     
         public BufferedImage showMeScaled() {
              BufferedImage b;
              //b = showMe();
              RenderedOp ro = JAI.create("fileload", this.getPath());
              PlanarImage pi1 = ro.getNewRendering();
              //ParameterBlock params = new ParameterBlock().addSource(b);
              ParameterBlock params = new ParameterBlock().addSource(pi1);
              //HashMap hm = new HashMap();
              params.add((float)this.getScale());     // x
              params.add((float)this.getScale());     // y
              params.add((float)this.width);
              params.add((float)this.height);
              params.add(Interpolation.getInstance(Interpolation.INTERP_BILINEAR));
    //          ImageLayout il = new ImageLayout(b);
    //          il.setHeight((int)this.scaledHeight);
    //          il.setWidth((int)this.scaledWidth);
              RenderedOp scaled = JAI.create("Scale", params);
              b = scaled.getAsBufferedImage();
    //          System.out.println(b.getHeight());
    //          System.out.println(b.getWidth());
    //          BufferedImage b = showMe();
    //          //Image temp = this.show();
    //          //height = i.getHeight(q);
    //          if (height <= 0) height = q.getHeight();
    //          //width =  i.getWidth(q);
    //          if (width <= 0) width = q.getWidth();
    //          System.out.println("Height: "+height+", Width: "+width);
    //          this.scaleImage();
              //temp = i.getScaledInstance(width, height, BufferedImage.SCALE_AREA_AVERAGING);
              //b = new BufferedImage(width, height,BufferedImage.TYPE_INT_RGB);
              //i = temp;
    //          b = (BufferedImage)i.getScaledInstance(width, height, BufferedImage.SCALE_AREA_AVERAGING);
    //          b.getScaledInstance(width, height, BufferedImage.SCALE_AREA_AVERAGING);
              //b.getSubimage(x, y, w, h)
              //Image temp = b.getScaledInstance(width, height, BufferedImage.SCALE_AREA_AVERAGING);
              //b = (BufferedImage)temp;
              return b;
         public BufferedImage showMe() {
              RenderedOp ro = JAI.create("fileload", this.getPath());
              b = ro.getAsBufferedImage();
              height = ro.getHeight();
              width = ro.getWidth();
              return b;
    //     private void scaleImage() {
    //          this.height = (int)((double)this.height * this.scale);
    //          this.width = (int)((double)this.width * this.scale);
          * @return the scale
         public double getScale() {
              return scale;
          * @param scale the scale to set
         public void setScale(double scale) {
              this.scale = scale;
          * @return the q
         public Component getQ() {
              return q;
          * @param q the q to set
         public void setQ(Component q) {
              this.q = q;
          * @return the b
         public BufferedImage getB() {
              return b;
          * @param b the b to set
         public void setB(BufferedImage b) {
              this.b = b;
          * @return the height
         public int getHeight() {
              return (int)this.scaledHeight;
          * @return the width
         public int getWidth() {
              return (int)this.scaledWidth;
          * @param height the height to set
         private void setHeight(int height) {
              this.scaledHeight = (double)height;
          * @param width the width to set
         private void setWidth(int width) {
              this.scaledWidth = (double)width;
         private int makeInt(double rate) {
              int iOut;
              iOut = (int) (1000000.0 * rate);
              return iOut;
         public void setSize(Dimension d) {
              this.setHeight(d.height - 20);
              this.setWidth(d.width - 20);
              double temp;
              double ratio1, ratio2;
              ratio1 = (double)this.height / (double)this.width;
              ratio2 = (double) (this.scaledHeight / this.scaledWidth);
              if (makeInt(ratio2) >= makeInt(ratio1)) {
                   temp = (double)this.scaledWidth / (double)this.width;
                   this.setScale(temp);
              } else {
                   temp = (double)this.scaledHeight / (double)this.height;
                   this.setScale(temp);               
              this.setSize((int)(scale*(double)width), (int)(scale*(double)height));
         public void setSize(int width, int height) {
              this.setWidth(width);
              this.setHeight(height);
         public Dimension getSize() {
              Dimension d = new Dimension();
              d.setSize(this.width, this.height);
              return d;
         private void setImageSize() {
              this.b = this.showMe();
              this.setImageHeight();
              this.setImageWidth();
              this.setHeight(this.height);
              this.setWidth(this.width);
         private void setImageHeight() {
              this.height=b.getHeight();
         private void setImageWidth() {
              this.width=b.getWidth();
         public ColorModel getColorModel() {
              return b.getColorModel();
         public Graphics2D getGraphics() {
              return b.createGraphics();
          * @return the d
         public Directory getD() {
              return d;
          * @param d the d to set
         public void setD(Directory d) {
              this.d = d;
    }My problem is in the display of the image, though, so only the first class is really necessary, but I was wondering if my computations of the size of the BufferedImage could have caused my problems. Additionally, this code seems to choke when displaying large TIFF files, such as those downloaded from NASA's website. My application will not use such large TIFF files, but it gives me a perfect testing ground. The error I get when loading such files is a "Java-AWT:Event Error" involving the "Memory Heap". Can someone familiar with the JAI let me know what I am doing wrong? This worked well without using JAI functionality to scale the BufferedImage, but when I tried to do that, it freaked on me with the display. I get a blank panel. System.out.println() commands are inserted to report status, and commented lines are from earlier attempts.
    Thanks,
    Garry

    Well, I'll be damned, it seems I need to copy an object on
    ALL the frames and make it Alpha 0% if I want the object to be
    accessible through ActionScript. I actually got 5 frames and if I
    only put it on the first frame, it won't be null but mouseDown
    eventListener won't work... Hmmm that's the first thing I find that
    looks like a patch with ActionScript 3.

  • I have a IPAD 3rd generation and am trying to sync my calendar and contacts with my window live contacts and calendar. It does the contacts but issues message that no supported calendar application found. Windows is 64 bit Itunes is 10.6

    Any ideas on how to get the IPAD and IYUNES to sync the calendar?

    Did you read this article?
    http://support.apple.com/kb/HT1386 :
    "Additional Information
    The first time you sync the Info tab with your iOS device, you are asked if you want to merge data, replace data on the service, or replace the data on your computer from the following applications:
    Mac: Address Book, iCal, Microsoft Entourage, or Microsoft Outlook 2011
    PC: Microsoft Outlook, Outlook Express, Windows Addressbook (XP) and Windows Contacts (Vista and Windows 7)
    For more information about syncing your device with your computer, see the user's guide or see this article."

  • My Firefox will not pull up, even after I uninstalled the old version and installed the new version. What is wrong with it? It only had this problem recently.

    I am having problems getting Firfox to open. I have unistalled the 14. version and then installed the 15. version hoping that it would fix the problem. It didn't. I have even tried restarting the computer, which also did not solve the problem. I know it is not the computer, because all other applications open properly, except this one. I would like to know what is going on and the problem to be fixed please.

    http://kb.mozillazine.org/Browser_will_not_start_up

  • Using Acrobat 9 and suddenly there is no selected page range in the print box.   Only selected PDF files or all PDF files.  Am I doing something wrong?  I need to print only three pages from the document

    There is no selected print page range in the print box.  Only selected PDF file and all PDF files.  Any suggestions?

    Well, I looked for where to delete this but didn't see it.
    NEVERMIND; I forced iPhoto to quit and restarted and everything seems fine.
    BTW, I did get one thing wrong. When I looked at both iPhoto libraries with FINDER, the active one and the archived one both showed content as far as file size goes.
    It was because I was viewing the files through Adobe Bridge that it was showing 0 GB's; for whatever reason.

  • I have an iphone4 and I could ring people and they could hear me fine but just recently they can't hear me, I have only had this phone for just over a week.

    I have rung people and it has been working fine but now out of the blue, i ring people and they end up hanging up on me as they can't hear me.

    i would recomend going into an apple store and making an appoitmnet at the genius bar. or it may be you sim card im not sure.
    good luck !!!

  • TS1369 My windows 8 laptop will not recognize my iphone 4 ...I have deleted itunes and re-installed it ...I have updated my phone, I have checked my cables. I don't know of anything else to do...I have only had this phone for about 1 month.

    I have no idea what else to do to fix this problem, does anyone else?

    Mountain Lion is OS X 10.8
    10.6 was called Snow Leopard.
    To use iTunes 10.7 the following is required:
    Macintosh System Requirements
    Mac computer with an Intel Core processor and 512MB of RAM
    OS X version 10.6.8 or later
    Safari 4.0.3 or later
    400MB of available disk space
    Broadband Internet connection to use the iTunes Store
    Do you use iTunes Match?
    That way all of your songs would be matched with the master song on the iTunes servers independently of iTunes on your Mac or PC...
    Look here for further information: http://www.apple.com/itunes/itunes-match/

  • Hi there, I seem to be losing emails from my inbox - they just disappear! Is this some sort of a bug or am I doing something wrong? thanks

    I also just reactivated my MS outlook & same thing seems to be happening...does Outlook somehow sync to Thunderbird?
    Please help!

    No/yes
    If its an IMAP account, they both read the same account.
    If its a POP account check that you leave it on server and don't delete after x days.
    Check your account on server as well as on both your clients.

  • My Camcorder shoots 24fps and I set my iMovie project at 24fps.  But when I add the clip, it's saying that the clip is at 30fps?  Am I doing something wrong?

    But when I add the clip, it's saying that the clip is at 30fps?  Am I doing something wrong?

    Let me tell you this: don't worry about it.
    No one is able to tell very easily if the video is in 24 or 30 fps. You can only see the difference between, like, 14 and 24 fps. Just dismiss it and move on. It's all fine.
    (the only time that I personally need to make sure my camera is shooting at it's highest fps, is when I will be putting the vidoe into slow motion.)

  • Iphone 4s wont sync when I connect it to the pc( not apple). It is connected as it comes up on itunes but when I try to sync it with apps/ music etc it wont. I am doing something wrong or is it a mistake with the phone.

    My iphone 4s wont sync when I connect it to the pc( not apple). It is connected as it comes up on itunes but when I try to sync it with apps/ music etc it wont. I am doing something wrong or is it a mistake with the phone. I am still able to download apps and music from itunes on my phone though.
    I already restored it but that didn't help.
    TIA for any replies.

    iPod touches or any iDevices from Apple sync only to one computer. If you sync to a different computer, all your music will be replace with the music from the new computer's iTunes. If the music were purchased from iTunes, you can re-download them again otherwise the music on iPod touch will be deleted. Do you have iTunes backup? 

  • I have backed up my old phone to itunes, however, when I try to restore data to new phone it is saying the password is incorrect but I can get into my itunes account with my password so I am doing something wrong?

    I have backed up my old phone to itunes, however, when I try to restore data to my new phone it is saying the password is incorrect but I can get into my itunes account with my password so I am doing something wrong?

    I'm having this EXACT same problem with my iPhone 4, and I have the same computer stats (I have a Samsung Series 7)

  • Using the crop tool in Lightroom 5 I can only move and crop my photos from the top. Am I doing something wrong?

    I am new to Lightroom 5 and find I cannot crop my photos as easily as I did in iPhoto. I would like to be able to drag them if I choose a custom size or crop them from the bottom as well as from the top but my two sided arrow disappears when I work at the bottom of the photo. Am I doing something wrong?

    I would suggest you trash the prefs.
    Quit Lightroom
    Launch Finder and find the user Library by clicking the Go menu whilst holding down the Optn (alt) key (n.b. the library is hidden until you press the optn key) and inside the Library folder select the preferences folder. Then trash the following file:
    com.adobe.Lightroom5.plist
    Then re-launch Lightroom
    It’s then worth clearing each cache. Go to the top menu bar:
    Lightroom >> Preferences >> File Handling (tab)
    Click the Purge Cache button under Camera Raw Cache Settings; then click the Purge Cache button under Video Cache Settings. Finally click OK.

Maybe you are looking for