Can't figure out this error...

The assignment is to create a program that uses a class to store information about DVDs and then diplay the information.
One error is "cannot find symbol, symbol: constructor Dvd(), location: class Dvd, Dvd mydvd = new Dvd();
The other error is "cannot find symbol, symbol method calculateValue(), location class DvdTest, System.out.println("The value in inventory is $", calculateValue() );
Here's my code:
{code// EmployeeInfo class created by Michelle Groves
// Last edited April12 09
public class DvdTest
   public static void main(String args [])
Dvd mydvd = new Dvd();
Dvd[] prodArray = new Dvd[2]; // creat an array
prodArray[0] = new Dvd( 231562, 7.49, 2, "Cars" );
prodArray[1] = new Dvd( 231562, 7.49, 2, "Toy Story" );
// Displays first element's info
System.out.println("The stock number is " + prodArray[0].getstockedDvds());
System.out.println("Priced at " + prodArray[0].getdvdPrice());
System.out.println("Inventory contains " + prodArray[0].getstockedDvds());
System.out.println("The title is " + prodArray[0].getdvdName());
// Displays second element's info
System.out.println("The stock number is " + prodArray[1].getstockedDvds());
System.out.println("Priced at " + prodArray[1].getdvdPrice());
System.out.println("Inventory contains " + prodArray[1].getstockedDvds());
System.out.println("The title is " + prodArray[1].getdvdName());
System.out.println("The value in inventory is $", calculateValue() );
} //end main
} // end class
class Dvd
private int dvdNumber; // DVD Product Number
private double dvdPrice; // price of DVD
private double stockedDvds; // number of units in stock
private String dvdName; // name of DVD
public Dvd( int dvdNumber, double dvdPrice, double stockedDvds,
String dvdName ) // constructor for dvd
dvdNumber = 0;
dvdPrice = 0.0;
stockedDvds = 0.0;
dvdName = "";
} // end constructor
// method to set DVD number
public void setdvdNumber( int dvdNumber )
dvdNumber = dvdNumber; // store DVD number
} // end method setdvdNumber
// method to retrieve DVD number
public double getdvdNumber()
return dvdNumber;
} // end method getdvdNumber
// method to set DVD price
public void setdvdPrice( double dvdPrice )
dvdPrice = dvdPrice;
} // end method setdvdPrice
// method to retrieve DVD price
public double getdvdPrice()
return dvdPrice;
} // end method getdvdPrice
// method to set stocked number of DVDs
public void setstockedDvds( double stockedDvds )
stockedDvds = stockedDvds;
} // end method setstockedDvds
// method to retrieve stocked number of DVDs
public double getstockedDvds()
return stockedDvds;
} // end method getstockedDvds
// method to set DVD Name
public void setdvdName( String dvdName )
dvdName = dvdName;
} // end method setdvdName
// method to retrieve DVD name
public String getdvdName()
return dvdName;
} // end method getstockedDvds
// method to calculate pay for week
public double calculateValue()
return dvdPrice * stockedDvds;
} // end method total
} // end class

Here's my code a little more readable:
// EmployeeInfo class created by Michelle Groves
// Last edited April12 09
public class DvdTest
public static void main(String args [])
Dvd mydvd = new Dvd();
Dvd[] prodArray = new Dvd[2]; // creat an array
prodArray[0] = new Dvd( 231562, 7.49, 2, "Cars" );
prodArray[1] = new Dvd( 231562, 7.49, 2, "Toy Story" );
// Displays first element's info
System.out.println("The stock number is " + prodArray[0].getstockedDvds());
System.out.println("Priced at " + prodArray[0].getdvdPrice());
System.out.println("Inventory contains " + prodArray[0].getstockedDvds());
System.out.println("The title is " + prodArray[0].getdvdName());
// Displays second element's info
System.out.println("The stock number is " + prodArray[1].getstockedDvds());
System.out.println("Priced at " + prodArray[1].getdvdPrice());
System.out.println("Inventory contains " + prodArray[1].getstockedDvds());
System.out.println("The title is " + prodArray[1].getdvdName());
System.out.println("The value in inventory is $", calculateValue() );
} //end main
} // end class
class Dvd
private int dvdNumber; // DVD Product Number
private double dvdPrice; // price of DVD
private double stockedDvds; // number of units in stock
private String dvdName; // name of DVD
public Dvd( int dvdNumber, double dvdPrice, double stockedDvds,
String dvdName ) // constructor for dvd
dvdNumber = 0;
dvdPrice = 0.0;
stockedDvds = 0.0;
dvdName = "";
} // end constructor
// method to set DVD number
public void setdvdNumber( int dvdNumber )
dvdNumber = dvdNumber; // store DVD number
} // end method setdvdNumber
// method to retrieve DVD number
public double getdvdNumber()
return dvdNumber;
} // end method getdvdNumber
// method to set DVD price
public void setdvdPrice( double dvdPrice )
dvdPrice = dvdPrice;
} // end method setdvdPrice
// method to retrieve DVD price
public double getdvdPrice()
return dvdPrice;
} // end method getdvdPrice
// method to set stocked number of DVDs
public void setstockedDvds( double stockedDvds )
stockedDvds = stockedDvds;
} // end method setstockedDvds
// method to retrieve stocked number of DVDs
public double getstockedDvds()
return stockedDvds;
} // end method getstockedDvds
// method to set DVD Name
public void setdvdName( String dvdName )
dvdName = dvdName;
} // end method setdvdName
// method to retrieve DVD name
public String getdvdName()
return dvdName;
} // end method getstockedDvds
// method to calculate pay for week
public double calculateValue()
return dvdPrice * stockedDvds;
} // end method total
} // end class

Similar Messages

  • Can't figure out this NullPointerException

    Hi I posted yesterday that I was making an infix to postfix converter for school and I thought I had it finished and all good when i compiled a testapp for it and got this:
    Exception in thread "main" java.lang.NullPointerException
         at myStack.push(myStack.java:14)
         at inToPost.translate(inToPost.java:14)
         at itpTest.main(itpTest.java:5)Here is the code that is creating this error:
    Method Push in myStack:
    public void push(String str)
              Node newTop = null;
              newTop.item = str; // Line 14
              newTop.next = top;
              top = newTop;
         }method translate in inToPost
    public void translate(){
              String token;
              inFile.open("data.txt");
              while(!inFile.eof()){
                   token = inFile.readString();
                   token.trim();
                   if(token.compareTo("open") > 0){
                        theStack.push("open");  //Line 14
                   else if(token.compareTo("close") > 0){
                        gotRightPar(token);
                   else if(token.compareTo("plus") > 0 || token.compareTo("minus") > 0){
                        tokenIsOp(token, 1);
                        break;
                   else if(token.compareTo("times") > 0){
                        tokenIsOp(token, 2);
                   else if(token.compareTo("pow") > 0 || token.compareTo("goob") > 0){
                        tokenIsOp(token, 3);
                   else
                        output = output + " " + token;
              inFile.close();
         }Can someone give me some insight on maybe why this is happening.
    I read the API on this error but I don't see why I would have a problem.
    As always thanks in advance for the help!

    You're a total dumb ass:
    public void push(String str)
              Node newTop = null;  // newTop is null
              newTop.item = str; // Line 14; it's still null here.
              newTop.next = top;
              top = newTop;
         }Set newTop to point to a non-null Node.
    %

  • Can't figure out simple error message

         public int findAccount(int accountNum)
              int i;
              for(i = 0; i < accountCount; i++)
              if(accounts[i] = accounts[accountNum])
                        return i;
              else
                   return -1;
    It gives me this error message:
    C:\bank\Bank.java:79: incompatible types
    found : support.BankAccount
    required: boolean
                   if(accounts[i] = accounts[accountNum])
    ^
    1 error
    the source code didn't put the post right, it should have the array accounts with the i index, I'm sure you know what I mean, its only putting accounts

    Actually, it should be:
    for(i = 0; i < accountCount; i++){
    if(accounts == accounts[accountNum])
    return i;
    else
    return -1;
    to correct the syntax error. You may still have logic errors but this clears up the syntax error. Note the DOUBLE equals, in Java conditionals and iterators must take booleans (no auto-downcasting), in addition, the double equals only checks for reference equality, not value equality. To check for value equality between objects, you should use foo.equals(bar) and overload equals(). Hope this helps.
    silentOpen

  • Help, I just can't figure out this code or what to do to make it work

    ok, what i'm trying to do is the following: I created a class called Enrollement, in that class I put in an array of 30 objects to hold the places of 30 names that I used Scanner to bring in from a text file. Ok, that part of the code alone works fine. After that, I know want to write a function that will count the number of times each letter (a-z) appears in the first and last names in the class that are held in that array. I have been working on this for a while making changes doing a bunch of stuff but i keep getting errors with the second part that I honestly don't know how to fix or what i'm doing wrong. I am very new to Java. IF/when anyone responds, please dumb down your answers as much as possible so that I can understand what you are saying, I just have no idea what the errors mean or how to make this program work. my code is below:
    import java.util.Scanner;
       import java.io.File;
        class Enrollment{
           public static void main(String [] args)throws Exception{
             Person [] name = new Person [30];
             Scanner sc = new Scanner(new File("names.txt"));
             while (sc.hasNext()){
                String lastName = sc.next();
                String firstName = sc.next();
                sc.nextLine();
                System.out.println("Name: " + firstName + " " + lastName.substring(0,lastName.length()-1));
           public int chararcterCount(char c){
             int count = 0;
             for(int i = 0;i<30;i++){
                Person p = Person ;
    count = count + p.charCount(c);
    return count;
    public static void main(String [] args)throws Exception{
    Enrollment e = new Enrollment();
    e.print();
    System.out.println("Letter a appears " + e.characterCount('a') + times);
    keeps telling me that public static void main.... is already defined and i know that but once i delete that part from program i just keep getting more errors later and i just have no clue how to make this all work

    the program is supposed to count the number of times
    a certain letter appears in the first and last names
    of the class.I was asking about the particular code snippet you posted, not about the program.
    ....p.charCount is supposed to count the
    number of times that character appears, or at least
    that's what i want it to do, Does it do that? Did you test it? You should write a main method that just constructs a Person object and then call its charcount method for vairous characters--one that appears zero times, one time, and multiple times--and see if you get the right results.
    i'm not too sure of the
    rules aorund here and i don't know if this is taboo,
    but would it be possible tot talk to you in real time
    on AOL Instant Messenger or somethingNo, most people here (myself included) will not do that. It denies others the chance to learn from your problem, and prevents others who might help you from participating in the conversation.

  • Can't figure out my errors

    // Rectangle.java                                              
    public class Rectangle
        private double width;
        private double length;
        private double area;
        private double perimeter;
        public void double setWidth(x)     **********
            width = (x > 0.0 && x < 20.0)w ?: 1;
        public void double setLength(y)
            length = (y > 0.0 && y < 20.0)y ?: 1;
        public double getWidth()
        return width;
        public double getLength()
            return length;
        public double cArea()
            area = length * width;
            return area;
        public double cPerimeter()
            perimeter = (2 * length) + (2 * width);
            return perimeter;
    }       ^^^^^^^^^^at ********** I am getting <identifer> expected
    and at ^^^^^^^^^^ I am getting '(' expected
    please help!
    Message was edited by:
    Green_Ops
    Message was edited by:
    Green_Ops
    null

    ok, I have made some changes to the code, which is all I've been doing for the past couple days trying to figure this out.
    I made all the changes that you guys pointed out. But I'm still getting the same errors, in the same places. And what I don't understand, is that I have the same code declaring another method, (setLength), and that one doesn't have the error. ???
    // Rectangle.java                                               Phillip Barrios
    public class Rectangle
        private double width;
        private double length;
        private double area;
        private double perimeter;
        public void double setWidth(double x)
            width = (x > 0.0 && x < 20.0)x ?: 1;
        public void double setLength(double y)
            length = (y > 0.0 && y < 20.0)y ?: 1;
        public double getWidth()
        return width;
        public double getLength()
            return length;
        public double cArea()
            area = length * width;
            return area;
        public double cPerimeter()
            perimeter = (2 * length) + (2 * width);
            return perimeter;
    }

  • Trying to figure out this error

    I have a Flex website that I created and I'm getting the
    following error when I try to call to my ColdFusion RemoteObjects:
    [RPC Fault faultString="Send failed"
    faultCode="Client.Error.MessageSend"
    faultDetail="Channel.Connect.Failed error
    NetConnection.Call.Failed: HTTP: Failed: url: '
    http://reevespro.com/flex2gateway/'"
    I haven't a clue where or to fix. And I have no idea why it's
    trying to call flex2gateway, the directory doesn't exist. Anyone
    have a clue?
    Thanks

    Hi,
    If you are using the ColdFusion adapter for BlazeDS/LCDS,
    please open remoting-config.xml and see which channel your Remoting
    destination is using. In services-config.xml, you should be able to
    find channel used above configured. You should be modifying the end
    point URL of the channel.
    Hope this helps.

  • Can you figure out this setup? Snow Leopard and Windows 7...

    Here's my potential rig:
    - Running a Mac Pro.
    - 2 Hard Drives:
    1) Snow Leopard on first drive
    2) Windows 7 on second drive
    - 2 24" Apple LED Cinema Displays
    So here's my question...is there a way I can have both OS's running at the same time, with Snow Leopard on the left monitor and Windows 7 on the right monitor, all running out from one computer rig (Mac Pro)?
    I've heard of ppl using Synergy to run dual monitors with dual computers and sharing one keyboard and mouse. I want to do the same EXCEPT run it all out of 1 computer.
    Any advice, suggestions, critiques?
    Thanks!

    You'll have to rely on virtualization there. Check out parallels or VMWare Fusion. I think both companies provide evalauation versions. There's also Sun's free VirtualBox that you might want to give a try. A virtual windows installation won't perform as well as a boot camp installation in all situations
    Cheers,
    Jazz

  • Can't figure out this screen mode problem! Pic to illustrate!! THANKYOU FOR YOUR HELP

    THIS IS THE TUT IM FOLLOWING.                                                                        
    THIS IS WHAT MINE LOOKS LIKE BEFORE I APPLY THE SCREEN MODE
    THIS IS WHAT IT LOOKS LIKE AFTER I APPLY SCREEN MODE
    What is the problem????? THANKYOU SO MUCH FOR YOUR HELP.

    You need to understand the meaning of the word Screen.
    It has nothing to do with half tones or rasters.
    It refers to additive (light) colour mixing like on your computer screen. So Red + Green = Yellow and so on. Look at your own screen with a strong magnifying glass to see how it works.
    Like Monika says it works best in RGB mode. If you are working in CMYK you must use a rich black (preferably 100% of all 4 colours in this rare case).
    Incidentally, an opacity mask might be a better way to go for buttons and stuff.
    There too you should use 100% of all 4 colours in the mask when working in CMYK.

  • Error in exception can't figure out why?

    hi
    iam new to oracle ..can't figure out the error in this code..
    set serveroutput on
    declare
    e_m exception;
    pragma_exception_init(e_m,-1400);
    begin
    insert into dept_dup(dno) values(nULL);
    exception
    when e then
    raise_application_error(-20000,'exception e');
    end;
    thank u
    rajiv

    This compiles OK:
    SQL>
    SQL> set serveroutput on
    SQL>
    SQL> drop table dept_dup;
    Table dropped.
    SQL>
    SQL> create table dept_dup(dno number);
    Table created.
    SQL>
    SQL> declare
      2  e_m exception;
      3  pragma exception_init(e_m,-1400);
      4  begin
      5  insert into dept_dup(dno) values(NULL);
      6  exception
      7  when e_m then
      8  raise_application_error(-20000,'exception em');
      9  end;
    10  /
    PL/SQL procedure successfully completed.
    SQL> show errors
    No errors.
    SQL>
    SQL> exitReading the PL/SQL docs can also help: http://download-uk.oracle.com/docs/cd/B19306_01/appdev.102/b14261/errors.htm#sthref2000
    Message was edited by:
    Pierre Forstmann

  • Can't figure out how to use this latest version of iTunes! How do you add/remove apps on your iPhone when it's connected to your mac? Many thanks, Frustrated

    I can't figure out this new itunes.  How do you import apps from macbook pro to iphone 4S?
    Help! Many thanks!

    OK some changes to make it lok like your old itunes
    View > Show Sidebar  this puts the left panel back and you can see your Library, Device and Playlists
    View > Show Status Bar this outs the grey bar back at he bottom with song info displayed
    Click on the black Arrow in Search and Untick Search Entire Library. Search now works as it did before
    Syncing Apps is the same as before
    Select your device and select the Apps Page
    There is a different button by the side of each app with Installed or Removed on it.
    Click on these and they will change to Will Install or Will Remove. Click apply at the bottom

  • TS3694 My iPad says it has to restore to update, but it will not.  It is caught in a cycle of not being able to restore but needed to restore.  I keep getting error code 3014 but I can not figure out what this means!

    My iPad says it has to restore to update, but it will not.  It is caught in a cycle of not being able to restore but needed to restore.  I keep getting error code 3014 but I can not figure out what this means! nor can I do anything about it!  So Frutrated!

    Also...
    See Here  >  http://support.apple.com/kb/HT1808
    You may need to try this More than Once...
    But... if the Device has been Modified... this will Not necessarily work.

  • I uninstalled Firefox once, reinstalled it and it ran. I had a problem so I did it again. Now it will not run and I get an error message saying that firefox is running and you can only run one at a time. I can't figure out what is running.

    Because of a problem, I uninstalled Firefox once, reinstalled it and it ran. I had a problem so I uninstalled/reinstalled it again. Now it will not run. I get an error message saying that firefox is running and you can only run one at a time. I have uninstalled multiple times and can't figure out what is running. The is only one Firefox installed and it is not open. What does this mean and how do I fix it?

    If you use ZoneAlarm Extreme Security then try to disable Virtualization.
    *http://kb.mozillazine.org/Browser_will_not_start_up#XULRunner_error_after_an_update
    See also:
    *[[/questions/880050]]

  • I can't figure out what's wrong with this code

    First i want this program to allow me to enter a number with the EasyReader class and depending on the number entered it will show that specific line of this peom:
    One two buckle your shoe
    Three four shut the door
    Five six pick up sticks
    Seven eight lay them straight
    Nine ten this is the end.
    The error message i got was an illegal start of expression. I can't figure out why it is giving me this error because i have if (n = 1) || (n = 2) statements. My code is:
    public class PoemSeventeen
    public static void main(String[] args)
    EasyReader console = new EasyReader();
    System.out.println("Enter a number for the poem (0 to quit): ");
    int n = console.readInt();
    if (n = 1) || (n = 2)
    System.out.println("One, two, buckle your shoe");
    else if (n = 3) || (n = 4)
    System.out.println("Three, four, shut the door");
    else if (n = 5) || (n = 6)
    System.out.println("Five, six, pick up sticks");
    else if (n = 7) || (n = 8)
    System.out.println("Seven, eight, lay them straight");
    else if (n = 9) || (n = 10)
    System.out.println("Nine, ten, this is the end");
    else if (n = 0)
    System.out.println("You may exit now");
    else
    System.out.println("Put in a number between 0 and 10");
    I messed around with a few other thing because i had some weird errors before but now i have narrowed it down to just this 1 error.
    The EasyReader class code:
    // package com.skylit.io;
    import java.io.*;
    * @author Gary Litvin
    * @version 1.2, 5/30/02
    * Written as part of
    * <i>Java Methods: An Introduction to Object-Oriented Programming</i>
    * (Skylight Publishing 2001, ISBN 0-9654853-7-4)
    * and
    * <i>Java Methods AB: Data Structures</i>
    * (Skylight Publishing 2003, ISBN 0-9654853-1-5)
    * EasyReader provides simple methods for reading the console and
    * for opening and reading text files. All exceptions are handled
    * inside the class and are hidden from the user.
    * <xmp>
    * Example:
    * =======
    * EasyReader console = new EasyReader();
    * System.out.print("Enter input file name: ");
    * String fileName = console.readLine();
    * EasyReader inFile = new EasyReader(fileName);
    * if (inFile.bad())
    * System.err.println("Can't open " + fileName);
    * System.exit(1);
    * String firstLine = inFile.readLine();
    * if (!inFile.eof()) // or: if (firstLine != null)
    * System.out.println("The first line is : " + firstLine);
    * System.out.print("Enter the maximum number of integers to read: ");
    * int maxCount = console.readInt();
    * int k, count = 0;
    * while (count < maxCount && !inFile.eof())
    * k = inFile.readInt();
    * if (!inFile.eof())
    * // process or store this number
    * count++;
    * inFile.close(); // optional
    * System.out.println(count + " numbers read");
    * </xmp>
    public class EasyReader
    protected String myFileName;
    protected BufferedReader myInFile;
    protected int myErrorFlags = 0;
    protected static final int OPENERROR = 0x0001;
    protected static final int CLOSEERROR = 0x0002;
    protected static final int READERROR = 0x0004;
    protected static final int EOF = 0x0100;
    * Constructor. Prepares console (System.in) for reading
    public EasyReader()
    myFileName = null;
    myErrorFlags = 0;
    myInFile = new BufferedReader(
    new InputStreamReader(System.in), 128);
    * Constructor. opens a file for reading
    * @param fileName the name or pathname of the file
    public EasyReader(String fileName)
    myFileName = fileName;
    myErrorFlags = 0;
    try
    myInFile = new BufferedReader(new FileReader(fileName), 1024);
    catch (FileNotFoundException e)
    myErrorFlags |= OPENERROR;
    myFileName = null;
    * Closes the file
    public void close()
    if (myFileName == null)
    return;
    try
    myInFile.close();
    catch (IOException e)
    System.err.println("Error closing " + myFileName + "\n");
    myErrorFlags |= CLOSEERROR;
    * Checks the status of the file
    * @return true if en error occurred opening or reading the file,
    * false otherwise
    public boolean bad()
    return myErrorFlags != 0;
    * Checks the EOF status of the file
    * @return true if EOF was encountered in the previous read
    * operation, false otherwise
    public boolean eof()
    return (myErrorFlags & EOF) != 0;
    private boolean ready() throws IOException
    return myFileName == null || myInFile.ready();
    * Reads the next character from a file (any character including
    * a space or a newline character).
    * @return character read or <code>null</code> character
    * (Unicode 0) if trying to read beyond the EOF
    public char readChar()
    char ch = '\u0000';
    try
    if (ready())
    ch = (char)myInFile.read();
    catch (IOException e)
    if (myFileName != null)
    System.err.println("Error reading " + myFileName + "\n");
    myErrorFlags |= READERROR;
    if (ch == '\u0000')
    myErrorFlags |= EOF;
    return ch;
    * Reads from the current position in the file up to and including
    * the next newline character. The newline character is thrown away
    * @return the read string (excluding the newline character) or
    * null if trying to read beyond the EOF
    public String readLine()
    String s = null;
    try
    s = myInFile.readLine();
    catch (IOException e)
    if (myFileName != null)
    System.err.println("Error reading " + myFileName + "\n");
    myErrorFlags |= READERROR;
    if (s == null)
    myErrorFlags |= EOF;
    return s;
    * Skips whitespace and reads the next word (a string of consecutive
    * non-whitespace characters (up to but excluding the next space,
    * newline, etc.)
    * @return the read string or null if trying to read beyond the EOF
    public String readWord()
    StringBuffer buffer = new StringBuffer(128);
    char ch = ' ';
    int count = 0;
    String s = null;
    try
    while (ready() && Character.isWhitespace(ch))
    ch = (char)myInFile.read();
    while (ready() && !Character.isWhitespace(ch))
    count++;
    buffer.append(ch);
    myInFile.mark(1);
    ch = (char)myInFile.read();
    if (count > 0)
    myInFile.reset();
    s = buffer.toString();
    else
    myErrorFlags |= EOF;
    catch (IOException e)
    if (myFileName != null)
    System.err.println("Error reading " + myFileName + "\n");
    myErrorFlags |= READERROR;
    return s;
    * Reads the next integer (without validating its format)
    * @return the integer read or 0 if trying to read beyond the EOF
    public int readInt()
    String s = readWord();
    if (s != null)
    return Integer.parseInt(s);
    else
    return 0;
    * Reads the next double (without validating its format)
    * @return the number read or 0 if trying to read beyond the EOF
    public double readDouble()
    String s = readWord();
    if (s != null)
    return Double.parseDouble(s);
    // in Java 1, use: return Double.valueOf(s).doubleValue();
    else
    return 0.0;
    Can anybody please tell me what's wrong with this code? Thanks

    String[] message = {
        "One, two, buckle your shoe",
        "One, two, buckle your shoe",
        "Three, four, shut the door",
        "Three, four, shut the door",
        "Five, six, pick up sticks",
        "Five, six, pick up sticks",
        "Seven, eight, lay them straight",
        "Seven, eight, lay them straight",
        "Nine, ten, this is the end",
        "Nine, ten, this is the end"
    if(n>0)
        System.out.println(message[n]);
    else
        System.exit(0);

  • I'm getting error messages when I download updates for lightroom and flash for the mac. can't figure out how to trouble shoot.

    I'm getting error messages when I download updates for lightroom and flash for the mac. can't figure out how to trouble shoot.

    It sounds as if your browser and some of your apps are not color-managed.  This is pretty typical.  Even IE9 is only partially color-managed.
    You can expect color-managed and non-color-managed applications to show you different things with the same images.  How different will depend upon how different your monitor color profile is from the image's color profile.
    For web publication and most general use, experts usually advise saving images with the sRGB profile.  If such images, saved through the Save for Web & Devices function, look different to you than you expect, it may be that your input images have previously been saved in another color space.
    You should really try to get your head around color-management by reading more on it.  It can seem baffling and it's difficult to understand without some background.  A quick web search turns up many overviews.  Beware, though, even people writing articles sometimes don't fully understand it.
    -Noel

  • Error message I can't figure out

    Can anyone help with this problem: Whenever I try to save a video I created I get a file error:illegal name message. I can not figure out where the problem is or how to fix it. This occurs near the end of the saving process.
    file name is final ceremony and reception 2-26-10

    OSX has certain character strokes that are not to be used in file names. It's most likely the cause.
    You can Google a full list.
    Al

Maybe you are looking for

  • Junk mail since using iPad

    Since using an iPad I am receiving more and more junk mail.  I have tried to add to Blocked Senders but I still receive them.  Anyone else suffered from this?

  • Can't Open CR preferences

    I also posted this in Bridge General Discussion. I'm setting up a new Macbook Pro, late 2013 15", 10.9.2 CS6 Production Premium, Also have Indesign CS6, LR5, Acrobat Pro 11. Camera RAW is version 8.4. Everything is up to date. Bridge and Camera RAW p

  • MY CS5 does not support my new Canon 7D Mark II camera Raw files on my Mac - what needs to be downloaded?

    I'm having trouble getting the CR2 files from my new Canon 7D Mark II camera to CS5/Bridge - it says the files are not supported by the installed version of RAW.  The DNG Converter dos not seem to help (I noticed it works for CS6 & CC only)  What nee

  • Windows with BootCamp on SD

    Soon I will be getting a new MacBookPro. For the occasional but necessary use of Windows/MsOffice I would like to use BootCamp + an SD card (16Gb) for storing the Windows7 (RC) and MSO2007 with critical data files on a G-Raid mini2 (configured in Rai

  • LV 2011 development environment prompting to install LV 2012 RT Module f1 patch?

    I have a LV 2011 development environment setup, including RT.  I am getting a message that there is an urgent patch to LV 2012 RT available; see attached.  This development machine must remain on LV 2011; should this patch be installed?  Thanks. Matt