My Mac creating corrupted files

Hi guys,
I seem to have an incredibly frustrating problem with my Mac. I have a Mac OS X version 10.5.4. Build 9E27 with 2.66 GHz Intel Core 2 Duo and 2GB Ram.
Lately I've been experiencing some problems regarding graphics. It may have started two weeks ago. It seems that whatever I create, I have problems uploading to web servers and emailing. They send through, however the graphics are always corrupted. Either with random lines on top of the graphics, or only show 1/4 of the graphics with the rest grayed out, or the image is demented or the whole thing is blacked out. However when I tried printing these very same graphics and they strangely come out ok.
I am a web designer and it is crucial for the uploading process to work, and for the graphics to arrive to their destinations correctly, without corruptions.
At first I thought perhaps I am experiencing a glitch on one of my Adobe programs; Photoshop. This is what I use the most. However I tried working in Illustrator and it produced the same problem. Then I tried doing a screenshot of a website and tried uploading and emailing that image across the web without editing it on any programs or adobe programs and it STILL has a the same problem, and it actually looks worse and is more corrupted.
I am quite convinced there is something wrong with my Mac, but I am not sure what it is or what to do about it It is incredibly frustrating and hope someone out there know what is wrong, or if it is fixable if I attend to something myself before taking it to a technician.
Thanks and regards,
Nancy

Nancy --
I'm wondering why you're staying at 10.5.4.
10.5.8 is the final Leopard, and would be a free update for you.
If you are on 10.5.8 now, change your specs mentioned in your profile here, the last line of your posts.
Do you have any photos in iPhoto? Can you upload a photo without graphics breakups?
How about PDFs? How about something viewed in Preview, not Adobe Reader.
Have you updated any of your Adobe apps just before this approximate two -week period?
Have you done any maintenance that has cleared caches? I use YASU (free download) to clean things up about 1-2x a year.
Message was edited by: ~Bee

Similar Messages

  • Pdf creator is creating corrupt file on Mac with Mountain Lion

    pdf creator is creating corrupt file on Mac with Mountain Lion, how to rectify?

    Please say what PDF creator you have including version
    and how you know they are corrupt

  • AvAudioRecorder, create corrupted file on random check

    Hello,
    I face issue with AvAudioRecorder, create corrupted file on random check.
    below is complete functionality code.
    -(IBAction)btnRecordClick:(id)sender {
        [PlayingTimer invalidate];
        PlayingTimer = nil;
        if (isPaused==NO) {
            AVAudioSession *audioSession = [AVAudioSession sharedInstance];
            NSError *err = nil;
            [audioSession setCategory :AVAudioSessionCategoryPlayAndRecord error:&err];
            if(err){
                // NSLog(@"audioSession: %@ %d %@", [err domain], [err code], [[err userInfo] description]);
                return;
            [audioSession setActive:YES error:&err];
            err = nil;
            if(err){
                // NSLog(@"audioSession: %@ %d %@", [err domain], [err code], [[err userInfo] description]);
                return;
            //*******Working well with .wav,.caf and .mp4 files *****************
            recordSetting = [[NSMutableDictionary alloc] init];
            //this is for .wav and .caf file
            //this is for .mp4 file for iPhone 3GS/iPhone 4
            [recordSetting setValue: [NSNumber numberWithInt:kAudioFormatMPEG4AAC] forKey:AVFormatIDKey];
            [recordSetting setValue: [NSNumber numberWithFloat:44100.0] forKey:AVSampleRateKey];
            [recordSetting setValue: [NSNumber numberWithInt: 2] forKey:AVNumberOfChannelsKey];
            [recordSetting setValue:[NSNumber numberWithInt:16] forKey:AVLinearPCMBitDepthKey];
            [recordSetting setValue:[NSNumber numberWithBool:NO] forKey:AVLinearPCMIsBigEndianKey];
            [recordSetting setValue:[NSNumber numberWithBool:NO] forKey:AVLinearPCMIsFloatKey];
            self.strMessage = @"";
            self.strMessageType = [NSString stringWithFormat:@"Audio Message"];
            self.strFileName = [NSString stringWithFormat:@"%@.mp4", [_globalmodel stringUniqueID]];
            // NSLog(@"FileName :%@",self.strFileName);
            self.strUniqueRef = [NSString stringWithFormat:@"%@",[_globalmodel stringUniqueID]];
            NSString *soundPath;//=[NSString alloc];
            soundPath = [NSString stringWithFormat:@"%@/%@", DOCUMENTS_FOLDER,self.strFileName] ;
            NSURL *url1 = [NSURL fileURLWithPath:soundPath];
            // NSLog(@"Recording Path:%@",url1);
            err = nil;
            recorder = [[ AVAudioRecorder alloc] initWithURL:url1 settings:recordSetting error:&err];
            if(!recorder){
                // NSLog(@"recorder: %@ %d %@", [err domain], [err code], [[err userInfo] description]);
                UIAlertView *alert =[[UIAlertView alloc] initWithTitle: @"My Easy Media"
                                                               message: @"The Recording format is not supported on your device!"
                                                              delegate: nil
                                                     cancelButtonTitle:@"OK"
                                                     otherButtonTitles:nil];
                [alert show];
                [alert release];
                return;
            //prepare to record
            [recorder setDelegate:self];
            [recorder prepareToRecord];
            recorder.meteringEnabled = YES;
            BOOL audioHWAvailable = audioSession.inputIsAvailable;
            if (! audioHWAvailable) {
                UIAlertView *cantRecordAlert =
                [[UIAlertView alloc] initWithTitle: @"Warning"
                                           message: @"Audio input hardware not available"
                                          delegate: nil
                                 cancelButtonTitle:@"OK"
                                 otherButtonTitles:nil];
                [cantRecordAlert show];
                [cantRecordAlert release];
                return;
            // start recording
            [recorder record];
            _isRecordingStarted = YES;
            // SET TIMER // START TIMER
            timer = [NSTimer scheduledTimerWithTimeInterval:1.0 target:self selector:@selector(EndRecording:)
                                                   userInfo:nil repeats:YES];
            // END TO SETTING TIMER
            timerDisplayRight.hidden = NO;
            timerDisplayLeft.hidden = NO;
            timerDisplayRight.text = [NSString stringWithFormat:@"%02d:%02d", intMimute,-- intSecond];
            timerDisplayLeft.text = [NSString stringWithFormat:@"00:00"];
            progressView.progress = 0.0;
        else {
            isPaused=NO;
            [recorder record];
            _isRecordingStarted = YES;
            [btnReview setEnabled:NO];
            timer = [NSTimer scheduledTimerWithTimeInterval:1.0 target:self selector:@selector(EndRecording:)
                                                   userInfo:nil repeats:YES];
            timerDisplayRight.hidden = NO;
            timerDisplayLeft.hidden = NO;
        timerDisplayRight.text = [NSString stringWithFormat:@"%02d:%02d", intMimute,-- intSecond];
    -(IBAction)btnPauseClick:(id)sender {
        // NSLog(@"Pause Button of ActionSheet Clicked");
        [timer invalidate];
        timer = nil;
        isPaused=YES;
        [recorder pause];
        [btnPause setEnabled:NO];
        [btnRecord setEnabled:YES];
        [btnStop setEnabled:YES];
    -(IBAction)btnStopClick:(id)sender {
        // NSLog(@"Stop Button of ActionSheet Clicked");
        [recorder stop];
        progressView.progress = 1.0;
        // NSLog(@"Total Recording Secomd : %d", totalRecordingSecond);
        finalRecordingSecond = totalRecordingSecond;
        [btnStop setEnabled:NO];
        [btnReview setEnabled:YES];
        [btnRecord setEnabled:YES];
        [btnPause setEnabled:NO];
        timerDisplayRight.text = [NSString stringWithFormat:@"%02d:%02d", (totalRecordingSecond/60), (totalRecordingSecond % 60) ];
        timerDisplayLeft.text = [NSString stringWithFormat:@"00:00"];
        [timer invalidate];
        timer = nil;
        // REINITIALIZE TIMER VARIABLES...
        intMimute =  5;
        intTotalTime = (60 * intMimute);   
        intSecond = intTotalTime / intMimute;
        intMimute--;       
        // REINITIALIZE TIMER VARIABLES...       
        _isRecordingStarted = NO;
    Please help.
    once we start recored and after near about 10 to 15 second, tap on stop.
    It create file with length 24kb, which is not occured all time, but randomly found file is courrupted.

    I've been having the same problem for over a week for the Yankees @ Red Sox MLB's games of the year. I've reported the problem to apple by logging into my account in iTunes > purchase history > report problem. I know of several other people who have the same problems.

  • On Mac created swf file looses actions once opened on PC

    The following issue is occuring:
    We create an ebook with Indesign CS5. Then create an FLA file from it or export from pdf to swf straight via InDesign. We create swf in HTML and an Exe file. The following happens:
    The Exe file is totally corrupted. Once opened on the PC either in Explorer or FireFox The file just goes wild no actions work at all. The HTML with the swf file works partly. The sound buttons don't work nor the external links in the files. This is a major isuue and we must find a solution for this.
    Best Regrads!
    Itale

    So far I made a bit of progress and the following happens:
    The original file is created in InDesign CS5 for Mac with animations, sounds and internal and external (Go To URL) links.
    Once exported to SWF from Indesign and opened either with Flash player or Firefox on the Mac everything seems to be in order. Once I open the file on a browser on the PC s.a. Explorere or Firefox the external links won't work. All the rest works but the GoTo URL won't open the url's
    I can't seem to find a reason for this. Are you familiar witrh this issue and if so do you have any suggestions that may solve this issue?
    Kind Regards

  • Score export to PDF creating corrupt file

    I have a three page score in the "guitar mix" format. Using the camera tool to export to a PDF, page 1 comes out fine, but pgs 2 and 3 won't open in Preview. It says the file is corrupt.
    I have restarted the machine already. No change.

    When you print to Pdf check the Page Setup box Scale does not say a tiny percentage like 2% or something. Check that it is 100%...
    Hope this helps.

  • Fireworks 8 (mac) creates slice files for all image layers

    Hi,
    When creating a document with one or more slices with a
    rollover behaviour, fireworks exports the
    same number of images for the rest of the slices on the
    page, even those without a rollover behaviour. For example, if
    there is a slice with 4 states (therefore 4 image layers), all the
    slices on the page will export 4 images, even if you only require
    1. This is very frustrating especially if the page has many slices.
    Does anybody else apart from Angel Massa, who I have seen
    make a post last year on this subject, have this problem or know
    the solution?
    This didn’t happen on any of the previous releases of
    Fireworks.
    Thx, Mark.

    Ideally posting a link to the problem file would be helpful
    so we can
    debug with it.
    Jim Babbage - .:Community MX:. & .:Adobe Community
    Expert:.
    Extending Knowledge, Daily
    http://www.communityMX.com/
    CommunityMX - Free Resources:
    http://www.communitymx.com/free.cfm
    .:Adobe Community Expert for Fireworks:.
    news://forums.macromedia.com/macromedia.fireworks
    news://forums.macromedia.com/macromedia.dreamweaver
    Tweener wrote:
    >
    quote:
    Originally posted by:
    Newsgroup User
    > Are you using "frames" or "layers" when you create your
    rollovers? I
    > just want to make sure we're talking apples and apples
    :-)Frames is a
    > better choice as it's designed to work with animations
    and rollovers
    > create a button symbol, which encapsulates up to four
    rollover states
    > into a single symbol
    >
    > When you're exporting, make sure that "Include areas
    without slices" is
    > not checked.
    >
    > --
    > Jim Babbage - .:Community MX:. & .:Adobe Community
    Expert:.
    > Extending Knowledge, Daily
    >
    http://www.communityMX.com/
    > CommunityMX - Free Resources:
    >
    http://www.communitymx.com/free.cfm
    > ---
    > .:Adobe Community Expert for Fireworks:.
    > news://forums.macromedia.com/macromedia.fireworks
    > news://forums.macromedia.com/macromedia.dreamweaver
    >
    >
    > Sorry, when I talk about "4 image layers" it was to
    illustrate the number of
    > button states - they are however exported as frames and
    the option "Include
    > areas without slices" is indeed unchecked.
    >
    > I have just done a quick experiment by exporting a file
    in fireworks 8 created
    > with an older version (I can't remenber which, but the
    file dates to jan 2004)
    > and the result is the same, the second frame created for
    the over state of a
    > "close" button is exported for all the other slices on
    the page despite the
    > othes using only the first frame. Pre-8 versions of FW
    didn't do this.
    >
    > Regards, Mark
    >

  • I have created corrupted files when transfering to new laptop

    Please can anybody assist..
    I've just tried to transfer my library from my desktop onto my laptop, somewhere in the process i have managed to corrupt my files.
    I can still access my ipod on my desktop, but am unable to update it because i'm told that there is not enough free space to hold all of the items in the library.
    Please help, i can't even find a link to email the support team...

    How are you trying to transfer to files. If we know that it might help to figure out what is going wrong.

  • My macbook seems to be going crazy. At certain points (and for hours) I get the oh snap page on chrome, safari doesnt work, macbook wont let me create any files or for example upload music to itunes. I restored my mac so im sure its not a malware problem.

    My macbook seems to be going crazy. At certain points (and for hours) I get the oh snap page on chrome, safari doesnt work, macbook wont let me create any files or for example upload music to itunes. I restored my mac so im sure its not a malware problem. The only thing that solves it is switching off and on , but sometimes I have to do that for 6-7 times before its ok or wait for a few hours. Some help please

    Please read this whole message before doing anything.
    This procedure is a test, not a solution. Don’t be disappointed when you find that nothing has changed after you complete it.
    Step 1
    The purpose of this step is to determine whether the problem is localized to your user account.
    Enable guest logins* and log in as Guest. Don't use the Safari-only “Guest User” login created by “Find My Mac.”
    While logged in as Guest, you won’t have access to any of your personal files or settings. Applications will behave as if you were running them for the first time. Don’t be alarmed by this; it’s normal. If you need any passwords or other personal data in order to complete the test, memorize, print, or write them down before you begin.
    Test while logged in as Guest. Same problem?
    After testing, log out of the guest account and, in your own account, disable it if you wish. Any files you created in the guest account will be deleted automatically when you log out of it.
    *Note: If you’ve activated “Find My Mac” or FileVault, then you can’t enable the Guest account. The “Guest User” login created by “Find My Mac” is not the same. Create a new account in which to test, and delete it, including its home folder, after testing.
    Step 2
    The purpose of this step is to determine whether the problem is caused by third-party system modifications that load automatically at startup or login, by a peripheral device, by a font conflict, or by corruption of the file system or of certain system caches.
    Disconnect all wired peripherals except those needed for the test, and remove all aftermarket expansion cards, if applicable. Start up in safe mode and log in to the account with the problem. You must hold down the shift key twice: once when you turn on the computer, and again when you log in.
    Note: If FileVault is enabled, or if a firmware password is set, or if the startup volume is a Fusion Drive or a software RAID, you can’t do this. Ask for further instructions.
    Safe mode is much slower to start up and run than normal, with limited graphics performance, and some things won’t work at all, including sound output and Wi-Fi on certain models. The next normal startup may also be somewhat slow.
    The login screen appears even if you usually log in automatically. You must know your login password in order to log in. If you’ve forgotten the password, you will need to reset it before you begin.
    Test while in safe mode. Same problem?
    After testing, restart as usual (not in safe mode) and verify that you still have the problem. Post the results of Steps 1 and 2.

  • Creating TOC corrupts file

    Hi,
    Wondering if anyone has the same issue and found a workaround.
    I spent 3 hours on creating and designing a TOC for my book. All was well and I was very happy. Today I opende the file, and both the file and the backup I created one hour before ending work yesterday didn't open. Corrupt.
    I work with CS5, but I remember I had the same in CS4. The file is doing well until you create/update a Table of Contents.
    The file probably has some corruption that creating a TOC makes Indesign mess up the file for good, but exporting and importing back doesn't help one bit.
    I've tries all the standard answers you can Google for against corrupt files, but can't nail this one. Can't find a decent workaround except for making a backup every five minutes when I'm working on the file, or update the TOC, don't save, but export. So I can never save an up to date TOC.
    Anyone who has had this issue as well: please respond. Thanks. I am on W7/CS5/Dutch.
    PS.
    Indesign feels like the most instable piece of software since Windows 95. (And yes, it crashes on the Mac just as hard.)

    None of the symptoms you describe are in any way usual or "normal" for ANY version of ID. This is probably a system-specific problem such as conflicting software or a bad font, What's your OS?
    Do you get an error message when you try to open this file?

  • I'm trying to backup a my harddrive with disk utility but I'm getting an error  Unable to create Backup.dmg" (input/output error). Is there any other way to save my data? I believe my hard drive is failing or corrupt file. I can't boot up. Grey screen

    I'm trying to backup a my hard drive with disk utility but I'm getting an error  Unable to create Backup.dmg" (input/output error). Is there any other way to save my data? I believe my hard drive is failing or corrupt file. I can't boot up. Grey screen and spinning wheel. I've tried everything https://discussions.apple.com/message/20580424#20580424
    any help will be greatly appreciated.

    Check here. Also have you done a TimeMachine back up?
    http://support.apple.com/kb/TS2570

  • I can't print PDF files from the latest Firefox; asks which program created the files. None of the options listed will print the files, such as IRS forms. Running Mac OS 10.6.8.

    I run Mac OS 10.6.8.
    When I try to print a PDT file, such as an IRS form, Firefox opens a small dialog box asking what program was used to create the file I wish to print.No matter which of the selections I choose, the file will not print.
    I have the latest Adobe Reader installed.
    Note that these files always open normally in Safari.
    Help!

    Hi there,
    Does you printer/RIP support protocols other than AppleTalk? If it does, then I would change it to something like HP Jetdirect-Socket.
    PaHu

  • How to create PDF files that can't by copied by MAC

    Hi,
    I need to create pdf files that I can put on my website, that cannot be copied or edited by MAC users. I have created pdfs that can't be copied by Windows users, but they're still copyable by Mac users.
    Thank  you!
    Alicia

    Your Windows users must be exceptionally uninformed...

  • Can't open Keynote files after last update. I created the files with Ipad 2, the same Ipad which won't open the files now. No Mac involved. What can I do to habe access again?

    Can't open my Keynote files after last update on Ipad 2. I created the files on the same Ipad. No Mac involved. What can I do to open and use the files again?

    Finally, this helped me:
    https://discussions.apple.com/message/23602871#23602871

  • IMovie HD creates corrupt db file which not get deleted out of trash

    iMovie HD creates corrupt db file which not get deleted out of trash.
    How to delete this file ?
    Please help me out,
    Thank You.

    Where is what file created? (Do you see it in iMovie or Finder?)
    Which trash, iMovie's or Finder's?

  • Firefox and Thunderbird creates CGLog files in /tmp on my Mac. It contains a lot of info related to keyboard and mouse (keys, scrolls, clicks!) I am concerned!

    These files mostly contains following lines:
    Firefox and Thunderbird creates CGLog files in /tmp on my Mac. It contains a lot of info related to keyboard and mouse (keys, scrolls, clicks!) I am concerned!
    --- flushing event log at XXXX.XXXXXXXX ---
    432138.5090574 (Firefox): CGSGetNextEventRecordInternal: XXXX.XXXXXX loc (-XXXX, XXXX) conn 0xXXXXX MouseMoved win 0xXXXX (click 1)
    and the most scaring:
    XXXX.XXXXX (Firefox): CGSGetNextEventRecordInternal: XXXX.XXXXX loc (xxx.xx, xxx.xx) conn 0xXXX KeyDown win 0x0 flags 0xa00100 set 252 char 63233; key 125 data -2303 special 0 repeat 0 keybd 44
    Why it happens? Is it dangerous? How can I turn it off?
    I saw that on the latest Firefox release for Mac and on Firefox ESR 31.2.0 for Mac
    I saw that on Thunderbird release for Mac 31.2.0

    You can start with this;
    '''[https://support.mozilla.org/en-US/forums/support-forum-contributors/710576 Possible Mal-Ware Scan For Macs]''' {web link}

Maybe you are looking for

  • QC View v's QC Renderer performance?

    I'm very new at this - I've made a small cocoa app with a Quartz Composition to display a live feed from a firewire connected DV camera. I used QC View to add the composition into a window and have a QCPatchController to allow the user to change a fe

  • Setting up printer sharing with a Windows Vista printer

    I am new to the Mac world and have been trying to set up printer sharing between my Macbook and HP PC. I have two HP's that I have been successful in sharing a printer with, but I can not figure out how to get the Macbook connected. I have read a num

  • Problems with Flash Player install

    I use Notebook software for my Smartboard, and when I try to use the interactive gallery I get an error message that I must download Adobe Flash Player. I've tried several times, but nothing seems to happen and it's not showing up in my applications

  • About about scripting language

    I'm looking to getting some training on scripting language to use on SCCM.  Any advise which I should focus on?  VBscript or Powershell.  I need to create Configuration Baselines and most of the examples I've seen uses scripting.   Also can anyone su

  • IPhoto for Mac problems

    Since I installed the last update to OS X, iPhoto is running so slow that I can not even stand to use it! This problem started in May. I do have 36K photos in my library - but this never ending spinning ball started out of the blue the first time I l