Last problem in my project!!

i've intend to open this 'Receipt.class' by clicking button from other class file called 'Main.class'
Normally we used this statement "Receipt open = new Receipt();" to open,
but what if the class file is like that??
Please help me even giving me the clues!! please.. this is my last problem in my project!!!
import java.awt.geom.*;
import java.awt.event.ActionListener;
import java.awt.event.ActionEvent;
import java.awt.print.PrinterJob;
import java.awt.event.*;
import java.awt.*;
import javax.swing.*;
import java.awt.print.*;
public class Receipt extends JPanel implements Printable, ActionListener {
final static JButton button = new JButton("Print");
public Receipt() {
     setBackground(Color.white);
button.addActionListener(this);
init();
public void actionPerformed(ActionEvent e) {
if (e.getSource() instanceof JButton) {  
PrinterJob printJob = PrinterJob.getPrinterJob();
printJob.setPrintable(this);
if (printJob.printDialog()) {
try {
printJob.print();
catch (Exception ex) {
ex.printStackTrace();
public void paintComponent(Graphics g) {
     super.paintComponent(g);
     Graphics2D g2 = (Graphics2D) g;
     drawShapes(g2);
public void drawShapes(Graphics2D g2){
g2.drawString("Hello world",50,50);
public int print(Graphics g, PageFormat pf, int pi) throws PrinterException {
if (pi >= 1) {
return Printable.NO_SUCH_PAGE;
     drawShapes((Graphics2D) g);
return Printable.PAGE_EXISTS;
public void init{
     JFrame f = new JFrame();
     JPanel panel = new JPanel();
     panel.add(button);
     f.getContentPane().add(BorderLayout.SOUTH, panel);
     f.getContentPane().add(BorderLayout.CENTER, new Receipt());
     f.setSize(580, 500);
     f.show();

I don't quite get your question. What did you mean by open? Did you mean to display it. Receipt is a JPanel, to show it you need to have it inside a Frame or an Applet or some sort of container.
try this
import javax.swing.*;
Receipt receipt = new Receipt();
JFrame aFrame = new JFrame("Display Receipt Panel"); //create a JFrame
aFrame.getContentPane().setLayout(new BorderLayout()); //set Layout Manager for the frame
aFrame.getContentPane().add(receipt, BorderLayout.CENTER); //add panel to the frame
aFrame.show(); //show the frameThe above block of codes create a JFrame and add the Receipt panel to the Frame. Then call the Frame to show. You can put this code in a method, if you need to use this Frame and panel again, make them instance variables rather than local variables.

Similar Messages

  • The timesheet creation failed, because of problems with the project I server or with data validation

    Hi,
    One of my user is facing issue in creating new time sheet,
    "The time sheet creation failed, because of problems with the project server or with data validations".
    This issue is coming to only few members out of 10000 members.
    Note: For the same user, can able to do in other machines. only the problem in his machine. Have ran the office diagnostics, but still the problem persists.
    Is any add-on's/any settings need to update in IE. Could any one please help me on how to fix this issue?
    Many thanks in advance.

    I would check the compatibility settings in IE etc, or try another browser (chrome, safari etc.)
    Ben Howard [MVP] | web |
    blog | book

  • Project Server 2010 - Modification date and name of the person who made the last change in the project

    Hello everybody
    I'm with a doubt.
    I got in the business
    environment Project Server 2010 and
    would like to get the publication date,modification
    date and name
    of the person who made
    the last change in
    the project. It is possible
    to doby the native
    resources or is
    there any query in
    SQL Server to perform a
    query of this information.
    Thank you.
    Obrigado por contactar o fórum Microsoft Technet!

    Hi Hezequias,
    You can get the ProjectModifiedDate column in MSP_EPMProject_userView in the Reporting DB where you can
    get the data based on the projectUID. 
    The "last saved" date in the draft DB (be aware that querying in the draft DB is not supported by MS).
    For the "last modified by", I think it is not stored in any place.
    But you can develop custom code upon publishing the project (Event BeforePublish), writing the current
    date and username automatically into a custom enterprise field.
    Hope this helps,
    Guillaume Rouyre, MBA, MCP, MCTS |

  • I have problem in my project, please Help me, urgent

    have problem in my project.
    When i start using project, i recive a errore in flash player
    if it possible troubleshooted for me
    Problem file

    The problem is that you have left paper on the floor near the
    wastebasket.
    Please you have to do a little of the work yourself.
    First, post a topic that has a title regarding your problem.
    That way people who know about that problem will be more likely to
    take a look.
    Second, don't just say you have a problem and receive and
    error. Shay what kind of problem and tell us what the error says.
    Third. Most people won't download a file from any random
    stranger off the net. So don't expect that is going to explain it.
    Fourth, even if the file does explain it, why should a
    stranger have to do all the steps that you should have done?
    Fifth, do a little work yourself, what have you tried to fix
    it?
    Sixth. Just because it is urgent to you doesn't mean it is
    urgent to everybody else.
    So try some of these things and post back.

  • Problem when Creating Project (Composite Application Services) in NWDS

    I've seen a few posts regarding this but I don't feel as if any real solution was given.
    I just installed Netweaver Developer Studio (7.0.15) with the current JDK/JRE (1.6.0_07).  When trying to create a new Composite Application Services project within the Studio, using the new project wizard, I get an error: Problem when Creating Project.
    I get the EJB Module and Dictionary to create within my navigator with no problems, however, during the creation of the metadata, the error occurs.  I do have the metadata folder appear within the navigator, but nothing in it.  None of the other three items are created.
    I have tried the attempt at deleting the metadata folder within my workspace directory and trying again but the same exact result occurs.
    Is there any other solution out there for this problem besides attempting to find older versions of NWDS, etc. that are more "stable"?
    Thank you!

    Durga,
    Very simple but effective solution.
    I had tried uninstalling / re-installing NWDS with no effect but uninstalling / re-installing NWDS AND all java related products on my machine did work.
    Note: For anyone else with this issue in the future.  I installed the Java SDK / JRE 1.4.2_18 with NWDS 7.0.15 in case this is also a possible issue with versions.
    Thanks, Durga!

  • My very last problem:)

    Ok. here we go again I guess..
    I got this table. which data I save in txt file "hello.txt".
    Each CellData is put in there seperated by an |
    example:
    (columns are: name, country, score)
    Bush, George|United States|0|Kennedy, John F.|United States|1|Blair, Tony|United Kingdom|15|
    now I need a function or anything which can read these data a part from each other, read Bush, George, then reads, United States, then reads 0.
    in this function it also needs something like this:
    o=1
    i=0
    while (there is more info in hello.txt) {
    if (i != 3) {
    read first word
    table.setValueAt(FirstReadInfo,1,0)
    int i + 1
    table.setValueAt(SecondReadinfo,1,1)
    int i + 1
    table.setValueAt(ThirdReadInfo,1,2)
    i=0 (reset while statement)
    addRow()
    now my question is:
    How to read word by word seperated by |
    How to see if there is more info in txt file.
    this really is the last thing for my project:)
    Thanks so much for all youve done so far.
    Thanks again for whats coming

    You could try a Scanner as below....
    import java.io.*;
    import java.util.*;
    public class ScanFar {
        public static void main(String[] args) throws IOException {
            Scanner s =
                new Scanner(new BufferedReader(new FileReader("farrago.txt")));
                s.useDelimiter("|\s*");
            while (s.hasNext()) {
                // enter your code here
                System.out.println(s.next());
            s.close();
    }Or a regular expression might be better in that you could trap all three elements at once
    Pattern pattern = Pattern.compile("([^|]+)|([^|]+)|([^|]+)");
    Matcher matcher = pattern.matcher(your input string);
    while(matcher.find()) {
                match.group(1); // this is the first ( ) or the name
                match.group(2); // this is the second ( ) or the city
                match.group(3); // this is the thrid ( ) or the score
            }

  • The last Version in a Project is a Master?

    I am reading the Aperture documentation and the Glossary states:
    Version: The file containing all the metadata and adjustment information applied to an images, a vidao clip, or an audio clip. In Aperture, only versions are changed. Aperture never changes masters. See also master.
    Master: The source media file that was copied from either your computer's file systeem or your camera's memory card. In Aperture, the master is never modified. Whenver a change is made to an image, a video clip, or an audio clip, that change is applied to the version. See also memory card, project, version.
    Project: In Aperture the top-level container that holds all the masters, versions, and metadata associated with your shoot. In the cae of referenced images, the masters are stored in their current location rather than in the project file. See also album, folder, library, master, referenced images, version.
    I am trying to understand
    1. Is this saying that I have /both/ Versions and Masters in my Project in a managed images database (i.e. all images are in the Aperture database)? If so, is there a number of ways to create a version from a master so I can see what this does /and/ is there a way to tell which is a Version and which is the Master if they look exactly the same?
    2. If I have /both/ two Versions of a Master and the Master in a Project (three total files) - and assuming they look exactly the same can I just willy-nilly delete two of these same looking images and expect Aperture to just delete two and retain "the" Master? I mean, functionally speaking it doesn't matter which of these three I delete because Aperture will perform a sort of sleight of hand and keep one is that it?
    Sorry for all the posts on this but I am trying to read up on this and get work done at the same time and I just don't get this yet.
    Thanks,
    Jon

    OK. Thank you.
    Can I please just follow up with you on this? I am experimenting and seeing behaviour I am not sure I really understand.
    If I then take these three Versions (all of the same Master) - and I copy them to an Album. I am seeing the following behaviour (from my recollection):
    I can DELETE the third Version in the Album (which Deletes the Version in the Project), then I can delete the second Version in the Album (which deletes the second version in the Project), then I can delete the third version in the Album (which deletes my last remaining Version in the Project) - all without any warning or any alert. Is that right? I mean at this point I have no more Master.
    Also, I am uber paranoid about deleting things at this point because I trashed my database so badly but I have ALBUMS that have IMAGES in them. SOME of these "Versions" are being used by other ALBUMS because I have STARRED AND COLORED all the Versions in my Albums. Now I know for a fact what I have in my albums and when I look in a PROJECT I know not to delete this or I will screw up my Album.
    However, how do I delete an Album without worrying that I am going to delete a "master version" (i.e. trash my last Version in my Project for my master) or that I am going to trash a Version that is being used by another ALBUM?!
    Do I just run a DELETE of the ALBUM and this is like REMOVING the Version from the Album in a way that won't trash my Master or my Albums?!
    Does that question make sense??

  • Problem after installation Project Server 2013 CU September 9, 2014

    Dear All,
    I have some problems after installation
    Project Server 2013 CU September 9, 2014 (Hotfix 2883072) on 3 level farm
    Before installing CU, I have installed
    SP1 for Project Server 2013, installation and configuration was successful.
    Then I have installed CU and I have not get any errors during installation process. Then I have restarted servers and in SharePoint health analyzer got an error about patch/installation status
    on WFE server.
    I checked in Windows installed updates and hotfix is installed. I checked in SharePoint Update and Upgrade history and there were no errors during installation. But when I checked in Manage
    Patch Status list I found an information:
    Language Pack for SharePoint and Project Server 2013 - Russian
    Microsoft Project Server Russian Language Pack 15.0.4420.1017 Installed
    Hotfix for Microsoft Project Server 2013 (KB2883072) 64-Bit Edition
    15.0.4649.1001 Missing/Required
    Microsoft Project Server 2013
    Microsoft Project Server English Language Pack 15.0.4571.1502 Installed
    Hotfix for Microsoft Project Server 2013 (KB2883072) 64-Bit Edition
    15.0.4649.1001 Missing/Required
    Service Pack 1 for Microsoft Project Server 2013 (KB2880553) 64-Bit Edition
    15.0.4571.1502 Installed
                Microsoft Project Server Web Front End Server
    15.0.4571.1502 Installed
    Hotfix for Microsoft Project Server 2013 (KB2883072) 64-Bit Edition
    15.0.4649.1001 Missing/Required
    Service Pack 1 for Microsoft Project Server 2013 (KB2880553) 64-Bit Edition
    15.0.4571.1502 Installed
    If I run installation again I get message that nothing will be updated - no update needed.
    Please help, how I can install missed packages?

    The problem was solved !
    I solve it using two ways:
    1. I have installed the hotfix for Project Server -  Hotfix for Project Server 2013 October 14, 2014 KB 2889959 (Projectserverwfe-x-none.msp, Projectservermui-Language-Code.msp)
    2. using command
    Psconfig -cmd upgrade -inplace b2b -force -cmd applicationcontent -install -cmd installfeatures -cmd installcheck -noinstallcheck
    After two actions I was able to run SharePoint Configuration Wizard and upgrade database. Configuration completed successful.

  • PREMIERE PRO CS5.5 Gamma problem while exporting project to mjpeg A or B

    Dear Sir,
    I'm in a big ****. I've directed and edited 1h documentary for Finnish television, also, the technical specs requested by the TV Channel is all production Broadcast masters must be encoded with Apple ProRES codec or MJPEG A or B.
    As i'm working on PC (win7), the ProRES codec doesn't exist on PC system, so i've done the export to MJPEG. The problem is i have a different gamma level when i watch the final export with Quicktime or VLC. Of course i can adjust the level in those players, but it doesnt effect the file. When i import the Qt file into a Premiere sequence, the gamma level is still **** and different from my original level i have from my timeline and preview window. If i export the project to H264 1920x1080p25, then the gamma is perfect with Qt, VLC and WinMedia player. But the TV station don't wanna work with H264. Deadline is on next monday, and i can't send a Qt MJPEG file with wrong gamma !!!Any chance to find a solution to fix it ??? After reading different forum, i can see this problem exist since many years and never been solved.
    What can i do ??
    Denis.

    Things is my prpject includ few effect plugins i bought, so what ever i could find a mac, not your i could export xml project to finalcut with plugins it dont have
    Denis
    Sent from my iPad.
    Le 31 mai 2013 à 15:20, Fuzzy Barsik <[email protected]> a écrit :
    Re: PREMIERE PRO CS5.5 Gamma problem while exporting project to mjpeg A or B
    created by Fuzzy Barsik in Premiere Pro - View the full discussion
    If it were me, I wouldn't encode to MJPEG.
    So as to encode to ProRes on Windows you can utilise any solution based on ffmpeg/ffmbc or better yet find a Mac with Final Cut or Compressor installed for delivering critical work.
    Please note that the Adobe Forums do not accept email attachments. If you want to embed a screen image in your message please visit the thread in the forum to embed the image at http://forums.adobe.com/message/5368019#5368019
    Replies to this message go to everyone subscribed to this thread, not directly to the person who posted the message. To post a reply, either reply to this email or visit the message page: http://forums.adobe.com/message/5368019#5368019
    To unsubscribe from this thread, please visit the message page at http://forums.adobe.com/message/5368019#5368019. In the Actions box on the right, click the Stop Email Notifications link.
    Start a new discussion in Premiere Pro by email or at Adobe Community
    For more information about maintaining your forum email notifications please go to http://forums.adobe.com/message/2936746#2936746.

  • "Problem when creating project"

    Hi,
    I am trying to create a new Composite Application Services project using Netweaver studio 7.011. When it came to the final step of the Project creation wizard, an error message pop-up saying "Problem when creating project".
    I have tried the methods posted in the forums, but its doesn't work for me.
    "Problem when creating project"
    Problem creating a composite applications project
    Can advise on how to resolve this?
    I am currently using Java 1.4.10 and NW2004s SP11.
    Thanks a lot.
    Regards,
    aiwei

    Hi Chandan,
    I still encounter the error message and this time, it only create the ejbmodule folder. In mine previous creation, I have dictionary, ejbmodule, metadata and webdynpro.
    I realised that there is some different in the .plugin folder and the previous .plugin folder of the .metadata.
    Not sure whether is it affected by the .plugin folder. Is there a list of .plugin required?
    can advise?
    Thanks again.

  • Problem opening my project on adobe premiere element 10.

    When I try to open it it says: Cannot open project because some file are damged or are obsolete. Does someone have any advice on what I could do?

    Thank you, problem solved. A corrupted photo , thanks
    Envoyé de mon iPad
    Le 2014-04-17 à 21:08, "A.T. Romano" <[email protected]> a écrit :
    Re: Problem opening my project on adobe premiere element 10.
    created by A.T. Romano in Premiere Elements - View the full discussion
    berthiaumes
    What computer operating system is your Premiere Elements 10 running on?
    Please review the following Adobe document on damaged project, if you have not already.
    http://helpx.adobe.com/premiere-elements/kb/troubleshoot-damaged-proje cts-premiere-elements.html
    We will be watching as your discussion with SB moves forward.
    Thanks.
    ATR
    Please note that the Adobe Forums do not accept email attachments. If you want to embed a screen image in your message please visit the thread in the forum to embed the image at http://forums.adobe.com/message/6308980#6308980
    Replies to this message go to everyone subscribed to this thread, not directly to the person who posted the message. To post a reply, either reply to this email or visit the message page: http://forums.adobe.com/message/6308980#6308980
    To unsubscribe from this thread, please visit the message page at http://forums.adobe.com/message/6308980#6308980. In the Actions box on the right, click the Stop Email Notifications link.
    Start a new discussion in Premiere Elements at Adobe Community
    For more information about maintaining your forum email notifications please go to http://forums.adobe.com/thread/416458?tstart=0.

  • I am having some problems finalizing the project, it says error code -108. I read some tips but i couldn't figure out what AppleMan1958 suggested ,can someone explain this to me ,thank you

    I am having some problems finalizing the project, it says error code -108. I read some tips but i couldn't figure out what AppleMan1958 suggested ,can anyone help me with this problem? thank you

    Oh ok, well that was what the test said prior to reformatting the hard drive. Now, it doesn't find any trouble no matter how many times I run it. That's what has me so confused, everything seems to check out and yet...I can't do anything, not even install the software!

  • A problem about build project fail...

    Hi all, I'm fairly new to iPhone programing and now get a problem about build project fail. ><
    I've downloaded a couple of sample codes from Apple web site and build them, but there are some errors messages as below...
    Could some body help me to handle this problem?? I'll be very appreciated~
    ================================ Error msg of "MoveME" sample ============================
    Building target “MoveMe” of project “MoveMe” with configuration “Debug” — (21 errors, 1 warning)
    Checking Dependencies
    warning: couldn't add 'com.apple.XcodeGenerated' tag to '/Volumes/MoveMe/build/MoveMe.build': Error Domain=NSPOSIXErrorDomain Code=2 UserInfo=0x33ba1f0 "Operation could not be completed. No such file or directory"
    error: unable to create '/Volumes/MoveMe/build' (Read-only file system)
    error: unable to create '/Volumes/MoveMe/build' (Read-only file system)
    Unable to create directory /Volumes/MoveMe/build/MoveMe.build/Debug-iphonesimulator/MoveMe.build
    Unable to create directory /Volumes/MoveMe/build/MoveMe.build/Debug-iphonesimulator/MoveMe.build/Objects-n ormal/i386
    Unable to create directory /Volumes/MoveMe/build/MoveMe.build/Debug-iphonesimulator/MoveMe.build
    Unable to create directory /Volumes/MoveMe/build/MoveMe.build/Debug-iphonesimulator/MoveMe.build
    Unable to create directory /Volumes/MoveMe/build/MoveMe.build/Debug-iphonesimulator/MoveMe.build
    Unable to create directory /Volumes/MoveMe/build/MoveMe.build/Debug-iphonesimulator/MoveMe.build
    warning: couldn't add 'com.apple.XcodeGenerated' tag to '/Volumes/MoveMe/build/MoveMe.build': Error Domain=NSPOSIXErrorDomain Code=2 UserInfo=0x33ba1f0 "Operation could not be completed. No such file or directory"
    error: unable to create '/Volumes/MoveMe/build' (Read-only file system)
    error: unable to create '/Volumes/MoveMe/build' (Read-only file system)
    Unable to create directory /Volumes/MoveMe/build/MoveMe.build/Debug-iphonesimulator/MoveMe.build
    Unable to create directory /Volumes/MoveMe/build/MoveMe.build/Debug-iphonesimulator/MoveMe.build/Objects-n ormal/i386
    Unable to create directory /Volumes/MoveMe/build/MoveMe.build/Debug-iphonesimulator/MoveMe.build
    Unable to create directory /Volumes/MoveMe/build/MoveMe.build/Debug-iphonesimulator/MoveMe.build
    Unable to create directory /Volumes/MoveMe/build/MoveMe.build/Debug-iphonesimulator/MoveMe.build
    Unable to create directory /Volumes/MoveMe/build/MoveMe.build/Debug-iphonesimulator/MoveMe.build
    mkdir /Volumes/MoveMe/build/Debug-iphonesimulator/MoveMe.app (error: Read-only file system)
    mkdir /Volumes/MoveMe/build/Debug-iphonesimulator/MoveMe.app (error: Read-only file system)
    cd /Volumes/MoveMe
    <com.apple.tools.info-plist-utility> Info.plist -genpkginfo /Volumes/MoveMe/build/Debug-iphonesimulator/MoveMe.app/PkgInfo -expandbuildsettings -o /Volumes/MoveMe/build/Debug-iphonesimulator/MoveMe.app/Info.plist
    error: couldn't create directory /Volumes/MoveMe/build/Debug-iphonesimulator/MoveMe.app: Read-only file system
    error: couldn't create directory /Volumes/MoveMe/build/Debug-iphonesimulator/MoveMe.app: Read-only file system
    error: The file “PkgInfo” does not exist.
    error: couldn't create directory /Volumes/MoveMe/build/Debug-iphonesimulator/MoveMe.app: Read-only file system
    error: couldn't create directory /Volumes/MoveMe/build/Debug-iphonesimulator/MoveMe.app: Read-only file system
    error: The file “PkgInfo” does not exist.
    mkdir /Volumes/MoveMe/build/Debug-iphonesimulator/MoveMe.app (error: Read-only file system)
    cd /Volumes/MoveMe
    /Developer/Library/PrivateFrameworks/DevToolsCore.framework/Resources/pbxcp -exclude .DS_Store -exclude CVS -exclude .svn -resolve-src-symlinks /Volumes/MoveMe/Default.png /Volumes/MoveMe/build/Debug-iphonesimulator/MoveMe.app
    error: couldn't create directory /Volumes/MoveMe/build/Debug-iphonesimulator/MoveMe.app: Read-only file system
    pbxcp: error: open(): /Volumes/MoveMe/build/Debug-iphonesimulator/MoveMe.app/Default.png [/SourceCache/pbxtools/pbx_tools-1059/pbxcp/fileutils.m:392]: No such file or directory
    error: couldn't create directory /Volumes/MoveMe/build/Debug-iphonesimulator/MoveMe.app: Read-only file system
    mkdir /Volumes/MoveMe/build/Debug-iphonesimulator/MoveMe.app (error: Read-only file system)
    cd /Volumes/MoveMe
    /Developer/Library/PrivateFrameworks/DevToolsCore.framework/Resources/pbxcp -exclude .DS_Store -exclude CVS -exclude .svn -resolve-src-symlinks /Volumes/MoveMe/Placard.png /Volumes/MoveMe/build/Debug-iphonesimulator/MoveMe.app
    error: couldn't create directory /Volumes/MoveMe/build/Debug-iphonesimulator/MoveMe.app: Read-only file system
    pbxcp: error: open(): /Volumes/MoveMe/build/Debug-iphonesimulator/MoveMe.app/Placard.png [/SourceCache/pbxtools/pbx_tools-1059/pbxcp/fileutils.m:392]: No such file or directory
    error: couldn't create directory /Volumes/MoveMe/build/Debug-iphonesimulator/MoveMe.app: Read-only file system
    mkdir /Volumes/MoveMe/build/Debug-iphonesimulator/MoveMe.app (error: Read-only file system)
    cd /Volumes/MoveMe
    /Developer/Library/PrivateFrameworks/DevToolsCore.framework/Resources/pbxcp -exclude .DS_Store -exclude CVS -exclude .svn -resolve-src-symlinks /Volumes/MoveMe/DisplayStrings.strings /Volumes/MoveMe/build/Debug-iphonesimulator/MoveMe.app
    error: couldn't create directory /Volumes/MoveMe/build/Debug-iphonesimulator/MoveMe.app: Read-only file system
    pbxcp: error: open(): /Volumes/MoveMe/build/Debug-iphonesimulator/MoveMe.app/DisplayStrings.strings [/SourceCache/pbxtools/pbx_tools-1059/pbxcp/fileutils.m:392]: No such file or directory
    error: couldn't create directory /Volumes/MoveMe/build/Debug-iphonesimulator/MoveMe.app: Read-only file system
    mkdir /Volumes/MoveMe/build/Debug-iphonesimulator/MoveMe.app (error: Read-only file system)
    cd /Volumes/MoveMe
    /Developer/usr/bin/ibtool --errors --warnings --notices --output-format human-readable-text --compile /Volumes/MoveMe/build/Debug-iphonesimulator/MoveMe.app/MainWindow.nib /Volumes/MoveMe/MainWindow.xib
    error: couldn't create directory /Volumes/MoveMe/build/Debug-iphonesimulator/MoveMe.app: Read-only file system
    /* com.apple.ibtool.errors */
    Internal Error:
    Description: Compilation failed. Unable to write to path: /Volumes/MoveMe/build/Debug-iphonesimulator/MoveMe.app/MainWindow.nib
    error: couldn't create directory /Volumes/MoveMe/build/Debug-iphonesimulator/MoveMe.app: Read-only file system
    mkdir /Volumes/MoveMe/build/Debug-iphonesimulator/MoveMe.app (error: Read-only file system)
    cd /Volumes/MoveMe
    /Developer/Library/PrivateFrameworks/DevToolsCore.framework/Resources/pbxcp -exclude .DS_Store -exclude CVS -exclude .svn -resolve-src-symlinks /Volumes/MoveMe/Icon.png /Volumes/MoveMe/build/Debug-iphonesimulator/MoveMe.app
    error: couldn't create directory /Volumes/MoveMe/build/Debug-iphonesimulator/MoveMe.app: Read-only file system
    pbxcp: error: open(): /Volumes/MoveMe/build/Debug-iphonesimulator/MoveMe.app/Icon.png [/SourceCache/pbxtools/pbx_tools-1059/pbxcp/fileutils.m:392]: No such file or directory
    error: couldn't create directory /Volumes/MoveMe/build/Debug-iphonesimulator/MoveMe.app: Read-only file system
    mkdir /Volumes/MoveMe/build/Debug-iphonesimulator/MoveMe.app (error: Read-only file system)
    cd /Volumes/MoveMe
    /Developer/usr/bin/ibtool --errors --warnings --notices --output-format human-readable-text --compile /Volumes/MoveMe/build/Debug-iphonesimulator/MoveMe.app/MoveMeView.nib /Volumes/MoveMe/MoveMeView.xib
    error: couldn't create directory /Volumes/MoveMe/build/Debug-iphonesimulator/MoveMe.app: Read-only file system
    /* com.apple.ibtool.errors */
    Internal Error:
    Description: Compilation failed. Unable to write to path: /Volumes/MoveMe/build/Debug-iphonesimulator/MoveMe.app/MoveMeView.nib
    error: couldn't create directory /Volumes/MoveMe/build/Debug-iphonesimulator/MoveMe.app: Read-only file system
    mkdir /Volumes/MoveMe/build/MoveMe.build/Debug-iphonesimulator/MoveMe.build/Objects-n ormal/i386 (error: Read-only file system)
    cd /Volumes/MoveMe
    /Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin/gcc-4.0 -x objective-c -arch i386 -fmessage-length=0 -pipe -std=c99 -Wno-trigraphs -fpascal-strings -fasm-blocks -O0 -Wreturn-type -Wunused-variable -D_IPHONE_OS_VERSION_MINREQUIRED=20000 -isysroot /Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator2.0 .sdk -fvisibility=hidden -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Volumes/MoveMe/build/MoveMe.build/Debug-iphonesimulator/MoveMe.build/MoveMe-ge nerated-files.hmap -I/Volumes/MoveMe/build/MoveMe.build/Debug-iphonesimulator/MoveMe.build/MoveMe- own-target-headers.hmap -I/Volumes/MoveMe/build/MoveMe.build/Debug-iphonesimulator/MoveMe.build/MoveMe- all-target-headers.hmap -iquote /Volumes/MoveMe/build/MoveMe.build/Debug-iphonesimulator/MoveMe.build/MoveMe-pr oject-headers.hmap -F/Volumes/MoveMe/build/Debug-iphonesimulator -I/Volumes/MoveMe/build/Debug-iphonesimulator/include -I/Volumes/MoveMe/build/MoveMe.build/Debug-iphonesimulator/MoveMe.build/Derived Sources -include /var/folders/bW/bWmyU-LjHBKBRZqhplPNE++TI/-Caches-/com.apple.Xcode.501/SharedPrecompiledHeaders/MoveMePrefix-chaljwmdesvmdlfdlkpiazlaoxmy/MoveMePrefix.pch -c /Volumes/MoveMe/main.m -o /Volumes/MoveMe/build/MoveMe.build/Debug-iphonesimulator/MoveMe.build/Objects-n ormal/i386/main.o
    error: couldn't create directory /Volumes/MoveMe/build/MoveMe.build/Debug-iphonesimulator/MoveMe.build/Objects-n ormal/i386: Read-only file system
    {standard input}:unknown:FATAL:can't create output file: /Volumes/MoveMe/build/MoveMe.build/Debug-iphonesimulator/MoveMe.build/Objects-n ormal/i386/main.o
    error: couldn't create directory /Volumes/MoveMe/build/MoveMe.build/Debug-iphonesimulator/MoveMe.build/Objects-n ormal/i386: Read-only file system
    mkdir /Volumes/MoveMe/build/MoveMe.build/Debug-iphonesimulator/MoveMe.build/Objects-n ormal/i386 (error: Read-only file system)
    cd /Volumes/MoveMe
    /Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin/gcc-4.0 -x objective-c -arch i386 -fmessage-length=0 -pipe -std=c99 -Wno-trigraphs -fpascal-strings -fasm-blocks -O0 -Wreturn-type -Wunused-variable -D_IPHONE_OS_VERSION_MINREQUIRED=20000 -isysroot /Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator2.0 .sdk -fvisibility=hidden -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Volumes/MoveMe/build/MoveMe.build/Debug-iphonesimulator/MoveMe.build/MoveMe-ge nerated-files.hmap -I/Volumes/MoveMe/build/MoveMe.build/Debug-iphonesimulator/MoveMe.build/MoveMe- own-target-headers.hmap -I/Volumes/MoveMe/build/MoveMe.build/Debug-iphonesimulator/MoveMe.build/MoveMe- all-target-headers.hmap -iquote /Volumes/MoveMe/build/MoveMe.build/Debug-iphonesimulator/MoveMe.build/MoveMe-pr oject-headers.hmap -F/Volumes/MoveMe/build/Debug-iphonesimulator -I/Volumes/MoveMe/build/Debug-iphonesimulator/include -I/Volumes/MoveMe/build/MoveMe.build/Debug-iphonesimulator/MoveMe.build/Derived Sources -include /var/folders/bW/bWmyU-LjHBKBRZqhplPNE++TI/-Caches-/com.apple.Xcode.501/SharedPrecompiledHeaders/MoveMePrefix-chaljwmdesvmdlfdlkpiazlaoxmy/MoveMePrefix.pch -c /Volumes/MoveMe/Classes/MoveMeAppDelegate.m -o /Volumes/MoveMe/build/MoveMe.build/Debug-iphonesimulator/MoveMe.build/Objects-n ormal/i386/MoveMeAppDelegate.o
    error: couldn't create directory /Volumes/MoveMe/build/MoveMe.build/Debug-iphonesimulator/MoveMe.build/Objects-n ormal/i386: Read-only file system
    {standard input}:unknown:FATAL:can't create output file: /Volumes/MoveMe/build/MoveMe.build/Debug-iphonesimulator/MoveMe.build/Objects-n ormal/i386/MoveMeAppDelegate.o
    error: couldn't create directory /Volumes/MoveMe/build/MoveMe.build/Debug-iphonesimulator/MoveMe.build/Objects-n ormal/i386: Read-only file system
    mkdir /Volumes/MoveMe/build/MoveMe.build/Debug-iphonesimulator/MoveMe.build/Objects-n ormal/i386 (error: Read-only file system)
    cd /Volumes/MoveMe
    /Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin/gcc-4.0 -x objective-c -arch i386 -fmessage-length=0 -pipe -std=c99 -Wno-trigraphs -fpascal-strings -fasm-blocks -O0 -Wreturn-type -Wunused-variable -D_IPHONE_OS_VERSION_MINREQUIRED=20000 -isysroot /Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator2.0 .sdk -fvisibility=hidden -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Volumes/MoveMe/build/MoveMe.build/Debug-iphonesimulator/MoveMe.build/MoveMe-ge nerated-files.hmap -I/Volumes/MoveMe/build/MoveMe.build/Debug-iphonesimulator/MoveMe.build/MoveMe- own-target-headers.hmap -I/Volumes/MoveMe/build/MoveMe.build/Debug-iphonesimulator/MoveMe.build/MoveMe- all-target-headers.hmap -iquote /Volumes/MoveMe/build/MoveMe.build/Debug-iphonesimulator/MoveMe.build/MoveMe-pr oject-headers.hmap -F/Volumes/MoveMe/build/Debug-iphonesimulator -I/Volumes/MoveMe/build/Debug-iphonesimulator/include -I/Volumes/MoveMe/build/MoveMe.build/Debug-iphonesimulator/MoveMe.build/Derived Sources -include /var/folders/bW/bWmyU-LjHBKBRZqhplPNE++TI/-Caches-/com.apple.Xcode.501/SharedPrecompiledHeaders/MoveMePrefix-chaljwmdesvmdlfdlkpiazlaoxmy/MoveMePrefix.pch -c /Volumes/MoveMe/Classes/PlacardView.m -o /Volumes/MoveMe/build/MoveMe.build/Debug-iphonesimulator/MoveMe.build/Objects-n ormal/i386/PlacardView.o
    error: couldn't create directory /Volumes/MoveMe/build/MoveMe.build/Debug-iphonesimulator/MoveMe.build/Objects-n ormal/i386: Read-only file system
    {standard input}:unknown:FATAL:can't create output file: /Volumes/MoveMe/build/MoveMe.build/Debug-iphonesimulator/MoveMe.build/Objects-n ormal/i386/PlacardView.o
    error: couldn't create directory /Volumes/MoveMe/build/MoveMe.build/Debug-iphonesimulator/MoveMe.build/Objects-n ormal/i386: Read-only file system
    mkdir /Volumes/MoveMe/build/MoveMe.build/Debug-iphonesimulator/MoveMe.build/Objects-n ormal/i386 (error: Read-only file system)
    cd /Volumes/MoveMe
    /Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin/gcc-4.0 -x objective-c -arch i386 -fmessage-length=0 -pipe -std=c99 -Wno-trigraphs -fpascal-strings -fasm-blocks -O0 -Wreturn-type -Wunused-variable -D_IPHONE_OS_VERSION_MINREQUIRED=20000 -isysroot /Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator2.0 .sdk -fvisibility=hidden -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Volumes/MoveMe/build/MoveMe.build/Debug-iphonesimulator/MoveMe.build/MoveMe-ge nerated-files.hmap -I/Volumes/MoveMe/build/MoveMe.build/Debug-iphonesimulator/MoveMe.build/MoveMe- own-target-headers.hmap -I/Volumes/MoveMe/build/MoveMe.build/Debug-iphonesimulator/MoveMe.build/MoveMe- all-target-headers.hmap -iquote /Volumes/MoveMe/build/MoveMe.build/Debug-iphonesimulator/MoveMe.build/MoveMe-pr oject-headers.hmap -F/Volumes/MoveMe/build/Debug-iphonesimulator -I/Volumes/MoveMe/build/Debug-iphonesimulator/include -I/Volumes/MoveMe/build/MoveMe.build/Debug-iphonesimulator/MoveMe.build/Derived Sources -include /var/folders/bW/bWmyU-LjHBKBRZqhplPNE++TI/-Caches-/com.apple.Xcode.501/SharedPrecompiledHeaders/MoveMePrefix-chaljwmdesvmdlfdlkpiazlaoxmy/MoveMePrefix.pch -c /Volumes/MoveMe/Classes/MoveMeView.m -o /Volumes/MoveMe/build/MoveMe.build/Debug-iphonesimulator/MoveMe.build/Objects-n ormal/i386/MoveMeView.o
    error: couldn't create directory /Volumes/MoveMe/build/MoveMe.build/Debug-iphonesimulator/MoveMe.build/Objects-n ormal/i386: Read-only file system
    {standard input}:unknown:FATAL:can't create output file: /Volumes/MoveMe/build/MoveMe.build/Debug-iphonesimulator/MoveMe.build/Objects-n ormal/i386/MoveMeView.o
    error: couldn't create directory /Volumes/MoveMe/build/MoveMe.build/Debug-iphonesimulator/MoveMe.build/Objects-n ormal/i386: Read-only file system
    Build failed (21 errors, 1 warning)

    Ya, something like that...
    I'm even new to Mac, thanks for your answer ^^"

  • Project manager - problem exporting a project with AE compositions.

    I have a problem exporting my project to another disk, this is what happens:
    I needed to move the project from the windows partition of my Mac to the Mac partition, in order to be able to continue my edit under MacOS, my sequences include a series of After Effects compositions of footage that has been stabilized in warp stabilizer using the option "replace with AE composition" from the timeline.
    Using the project manager I started my backup operation, with these options:
    Source: all sequences selected
    Resulting Project: Collect files and copy to new location
    Include Audio conform files
    Destination: a folder in the Mac partition
    The resulting project had a message popping up saying that AE rpject file is missing (it was, I had to manually copy and paste it from ithe win partition to the mac) and once copied obviously AE couldn't find the source video clips of its compositions, so I had to manually re-link them all  (quite difficult job to do among almost two years of footage).
    What have I done wrong ?
    Why AE lose the connection with the fils?
    Thanks

    Thanks Jim,
    I understand that Adobe Anywhere solves this, but there should be this fairly basic functionality (which exists in Avid and FCP) in a non-enterprise edition of the software.  I have submitted a couple different feature requests about this, going back to CS5, so hopefully enough people make similar requests for a fix to be implemented.  Adobe Anywhere is really not a solution for our small shop as currently configured/priced, especially when we can have editors working remotely with very affordable USB 3 drives.  The only hangup is the markers, which just isn't worth a 5 figure fix.  As such it's hard to consider the problem solved for either us or any small shop or post crew.
    Best,
    Jon

  • Anyone with GrooveAgent or Kontakt3... without problems w opening projects?

    Does anyone work with groove agent? (similar issues occur with kontakt3)
    There's one day I can't open a project that contains one or more groove agent instances, or it takes long long time to open (15-20min)!! I'm desperate, because I can't find the solution. I can't find a pattern to know when this happens. In activity monitor/logic pro/files and open ports I can see as last open file the following:
    /Library/Audio/Plug-Ins/Components/Groove Agent 3.component/Contents/Resources/Groove Agent 3.rsrc
    ... and nothing else for a long while or till infinite.
    ((What I'm doing at the moment is to disable core audio, load the project, save it with different name, purge it (this is to delete everything except groove agent track), switch on core audio, cross my fingers, wait, wait, wait more (till plugin is loaded correctly), and bounce that track and import it then in the original project. So now I have two projects, one for GA and another one for the rest!))
    This behavior NEVER happen in young projects. Are my projects corrupting with time? I reorganize memory usually and don't think so. What can I do?
    I've tried by reinstalling groove agent, checking folders/files permissions, watching the console, everything! but nothing to do. Any idea or help will be fantastic!

    mmh, as additional advice, when creating new project and grooveAgent loads fine, the next open files after grooveagent.rsrc are:
    /System/Library/Frameworks/QuickTime.framework/Versions/A/Resources/QuickTime.rsrc
    /System/Library/Frameworks/QuickTime.framework/Versions/A/Resources/English.lpro j/Localized.rsrc
    Do I have to think my problem is something related to quicktime??

Maybe you are looking for

  • How to insert new line in textarea

    I try programatiaclly to add for example three strings in <textarea> the final result should be something like this: --TEXTAREA TAG BEGIN line1 line2 line3 --TEXTAREA TAG END I tried the hack described here; http://www.mail-archive.com/[email protect

  • Need to search twice in iTunes 11

    Every other time i do a search in iTunes and click return I'm presented with the results. Great. But as soon as I attempt to click tp play, the list reverts to the full iTunes contents. I then perform the search again, press return and this time it w

  • No pre-fader solo?

    I'm using Logic 9.1.6, with system 10.6.8. I have a headphone mix that is routed via pre-fader sends out bus 3 & 4 to outputs 3 & 4, which go out of my audio interface into my headphone amp. I used to be able to solo my faders or channel strips, and

  • Handling java.lang.OutOfMemoryError

    Hi all, I've got these huge text files (approx 23MB in size) for which I am writing a simple text parsing program. I'm using a BufferedReader to read information in line by line. BufferedReader rdr = new BufferedReader(new FileReader(myBigFile));Even

  • Backup to tape drive

    HI, We are running Oracle 11gR1 on AIX 6.1. We have a standalone tape drive attached to this server and I am wondering can i backup the database directly to the tape drive without media manager? Thanks, Denny