Opened an Apple binary property list file with Texteditor

Hello,
i made the mistake opening an Apple binary property list file with Texteditor made a change and save it, now the file is corrupted. I should have used bbedit or textwrangler in stead but thats to late now.
Is there a way to convert the file back to the previous state?
when i open a similar file in textWrangler i get a xml file, when i open the other one textwrangler / bbedit gives the error "An unexpected I/O error occurred (MacOS Error code: -36)"
i have undone the changes i made in Texteditor and saved it again, no result. I have no backup.
Please help
Thanks
Marco

Recovering an edited file which has been saved is in general (so long as no backup is generated) as difficult as recovering a deleted file (if not more so).
Depending on which plist file you are referring to, it is often possible to just remove the corrupted file and the program which requires it will rebuild it upon its next launch (albeit likely without preferences saved).
You could try that or let us know which plist you corrupted for more help.
Best REgards,

Similar Messages

  • AppleScript 10.9.0 System Events -10006  Update property list file item

    Have AppleScript that runs without error on Mountain Lion 10.8.5, but errors out on Mavericks  10.9.0.
    At end of script, property list items need to be updated and this is when error occurs.
    Put together a subset of the script, see below) that get the error
    Statement reads "set value of property list item "ArrayList001" to ArrayList001"
    Text of error:
         error "System Events got an error: 'xxx.plist' is not a property list file."
         number -10006 from contents of property list file "xxx05.plist"
    =============================================================================
    property myPListFile : "cbmck05.plist"
    property myPListFilePath : ""
    property constPreviousRunDay : "PreviousRunDay"
    on run
       set today to "Date01" as string
              set List001 to {}
              set List002 to {}
              set myPListFilePath to ""
              repeat with i from 1 to 8
                        set end of List001 to (i * 2) as string
              end repeat
              set myPListFilePath to path to desktop folder from user domain as string
              set fileMyPList to (myPListFilePath & myPListFile) as string
    clear_file(fileMyPList)
    -- First time! need to initalize
              tell application "System Events"
      -- create an empty property list dictionary item
                        set the parent_dictionary to make new property list item with properties {kind:record}
      -- create new property list file using the empty dictionary list item as contents
                        set new_plistfile to ¬
      make new property list file with properties {contents:parent_dictionary, name:fileMyPList}
      make new property list item at end of property list items of contents of new_plistfile ¬
      with properties {kind:string, name:constPreviousRunDay, value:today}
      make new property list item at end of property list items of contents of new_plistfile ¬
                                  with properties {kind:list, name:"ArrayList001"}
      make new property list item at end of property list items of contents of new_plistfile ¬
                                  with properties {kind:list, name:"ArrayList002"}
              end tell
              set previousRunDate to today
              set xxList to (repopulate_lists())
              set ArrayList001 to List001
              set ArrayList002 to List002
    -- save info in the plist file
              tell application "System Events"
                        tell property list file fileMyPList
                                  tell contents
                                            set value of property list item constPreviousRunDay to previousRunDate
                                            set value of property list item "ArrayList001" to ArrayList001     --   <<< ------- error caused by the statement
                                            set value of property list item "ArrayList002" to ArrayList002
                                  end tell
                        end tell
              end tell
    end run
    -- ==========================================
    on repopulate_lists()
              set newList to {}
              set List002 to {}
              repeat with i from 1 to 8
                        set end of newList to i as string
              end repeat
              set List001 to newList
              return List001
    end repopulate_lists
    -- ==========================================
    -- Does the file exist?
    on fileExists(f)
              try
      f as string as alias
                        return true
              on error errMsg number errNum
                        return false
              end try
    end fileExists
    -- Delete the  files if exist
    on clear_file(aFile)
              if fileExists(aFile) then
                        tell application "Finder"
                                  set resultObject to delete aFile
                        end tell
              end if
    end clear_file

    Here's an AppleScript handler that partially works around this bug (warning: it turns each list item into a string).
    on plistWrite(plistPath, plistItemName, plistItemValue)
      -- version 1.1, Daniel A. Shockley
      -- 1.1 - rough work-around for Mavericks bug where using a list for property list item value wipes out data
              if class of plistItemValue is class of {"a", "b"} and AppleScript version of (system info) as number ≥ 2.3 then
      -- Convert each list item into a string and escape it for the shell command:
      -- This will fail for any data types that AppleScript cannot coerce directly into a string.
                        set plistItemValue_forShell to ""
                        repeat with oneItem in plistItemValue
                                  set plistItemValue_forShell to plistItemValue_forShell & space & quoted form of (oneItem as string)
                        end repeat
                        set shellCommand to "defaults write " & quoted form of POSIX path of plistPath & space & plistItemName & space & "-array" & space & plistItemValue_forShell
      do shell script shellCommand
                        return true
              else -- handle normally, since we aren't dealing with Mavericks list bug:
                        tell application "System Events"
      -- create an empty property list dictionary item
                                  set the parent_dictionary to make new property list item with properties {kind:record}
                                  try
                                            set plistFile to property list file plistPath
                                  on error errMsg number errNum
                                            if errNum is -1728 then
                                                      set plistFile to make new property list file with properties {contents:parent_dictionary, name:plistPath}
                                            else
                                                      error errMsg number errNum
                                            end if
                                  end try
                                  tell plistFile
                                            try
                                                      tell property list item plistItemName
                                                                set value to plistItemValue
                                                      end tell
                                            on error errMsg number errNum
                                                      if errNum is -10006 then
      make new property list item at ¬
                                                                          end of property list items of contents of plistFile ¬
      with properties ¬
                                                                          {kind:class of plistItemValue, name:plistItemName, value:plistItemValue}
                                                      else
                                                                error errMsg number errNum
                                                      end if
                                            end try
                                  end tell
                                  return true
                        end tell
              end if
    end plistWrite

  • Property List files damaged

    Have been having sporadic problems lately running Leopard (sluggish performance, LONG startup times that can exceed 10 MINUTES !!, etc.). After running Disk Warrior vers. 4.1, it detected 5 Property List files that were damaged and could not be repaired. All of them were either in my user account or the HD Library's Preferences Folder.
    Can I safely trash all of these damaged Property List files and reboot?
    Also, when I use Leopard's Disk Utility and run Repair Permissions, I get a message that 4 SUID files have been modified and will not be repaired. ???
    Any help or guidance regarding these problems would be appreciated. Thanks.

    SierraVista wrote:
    Have been having sporadic problems lately running Leopard (sluggish performance, LONG startup times that can exceed 10 MINUTES !!, etc.). After running Disk Warrior vers. 4.1, it detected 5 Property List files that were damaged and could not be repaired. All of them were either in my user account or the HD Library's Preferences Folder.
    Can I safely trash all of these damaged Property List files and reboot?
    yes.
    Also, when I use Leopard's Disk Utility and run Repair Permissions, I get a message that 4 SUID files have been modified and will not be repaired. ???
    most of those can be safely ignored. Check this [link|http://support.apple.com/kb/TS1448?viewlocale=en_US] to see if your messages are mentioned as harmless.
    Any help or guidance regarding these problems would be appreciated. Thanks.

  • Please help! I defragged my hard drive and now Illustrator CS6 is trying to open all of my complex Illustrator files with a "Text Import Options" box as if they are text files, and they are not opening!

    Please help! Illustrator CS6 started trying to open all of my complex.ai files with a "Text Import Options" box as if they were text files, and they are not opening!  Help!

    Hi Monika,
    I have spent the last two or three days trying to do what you suggested.  I uninstalled Adobe 6 from Windows.  Some files that CS6 placed on my system during installation remained, including fonts and .dll files.
    I had to abandon the Cleaner Tool you suggested because in one screen it allowed me to specify removing CS6 only, but on the following screen it only gave on option to remove ALL Adobe programs.  I could not do that because I didn't have the serial number handy for CS3 in case I want to reinstall it at some point.
    I tried to get technical help with the Cleaner Tool problem but no definitive help was available, so I reinstalled CS6 again without having the benefit of the Cleaner Tool.  I tried to get the serial number for CS3 so I could use the Cleaner Tool but spent 2 wasted hours in chat.  Even though I had a customer number, order number, order date, place of purchase, the email address used AND 16 digits of the serial number, in two hours the agent couldn't give me the serial number.  After two hours I had nothing but instructions to wait another 20 minutes for a case number.
    Illustrator CS6 is still trying to open some backups as Text and otherNone of the problems have been fixed.  I have tried to open/use the .ai files in CS6 installed on another system and am getting the same result, so I don't think the software was damaged by the cleaner.  The hard drive cleaner is well-known and I've run it many times without any problem to previous versions of Illustrator or any other programs.
    When I ordered, the sale rep promised good technical support and gave me an 800 number, but after I paid the $2000, I learned that the 800 number she gave me doesn't support CS6 and hangs up on me.  Adobe doesn't call it a current product even though they just sold it to me about 3 weeks ago.
    Would appreciate any help you experts can offer.  If I can't solve this, the last backup I can use was from June and I will have lost HUNDREDS of hours of work and assets that I cannot replace.
    Exhausted and still desperately in need of help...

  • How do I open an iWeb file with Texteditor?

    How do I open an iWeb file with Texteditor? I want to embed a midi file but I don't see any of the iWeb files under my document folder. Where are they and how do I open them in Texteditor? Thanks!

    first you have to publish the site. If you publish to idisk you can find the html files there and edit them there. If you publish to a folder find the file within that folder.
    you can use textedit, but check the help files to make sure you configured it properly for html.
    be aware you would have to edit the html file each time you republish the edited page.
    good luck

  • I have Adobe Design and Web Premium CS6. If I buy adobe CC, can I easily open my for example indesign CS6 files with no complications?

    I have Adobe Design and Web Premium CS6. If I buy adobe CC, can I easily open my for example indesign CS6 files with no complications?

    I cannot imagine any problems in doing so, but you can keep your cs6 installation anyway.

  • Is there a way to open and edit my iMovie HD files with iMovie '09 and later versions?

    I am getting ready to update an older iMac from Tiger to Mountain Lion. (Long overdue, I know) I have several files that I created using iMovie HD. After I update, will the new versions of iMovie be able to open and edit my iMovie HD files?

    I don't think that iMovie 11 is backwards compatible with iMovie HD 6.
    If you still have the install disks for iMovie Hd 6 (iLife 6) you can keep it alongside the newer version:
    Happily this is easily achieved, but it has to be done backwards.
    Delete iMovie 11 (just drag it to the trash). Now install iMovie 6 from the iLife 6 install disks. Update it to iMovie 6.0.3.
    Now re-install iMovie 11. This automatically moves iMovie 6 into a folder it creates in your Applications folder called iMovie Previous Version.
    Then reinstall iMovie 11.
    iMovie 6 works great with iDVD 7.
    Now you have them both, and you can have both in the Dock as well.
    Alternatively you could try this method, suggested by poster Uitech:
    Open a terminal and type "touch /Library/Preferences/com.apple.iLife011.plist"
    (No quotes)
    Install iMovieHD6 from the iLife 6 install disk.
    This works with both Leopard and Snow Leopard Macs.

  • Access Property List Files

    Hi,
    I created a new property list in one of my applications and named it zap.plist. I added the property item "isFirtsLaunched" and set it's "String" to "no". I am wanting the application to do something on the first run only. My code currently looks like this:
    on launched theApplication
    tell (path for resource "zap" extension "plist")
    if list item "isFirstLaunched" = no then
    display dialog "NO"
    else
    display alert "YES"
    end if
    end tell
    end launched
    When I run the application, it returns this error (http://i302.photobucket.com/albums/nn81/secrect_2008/Warning.png)
    I NEED to release the application before the 21st of July, can anyone tell me how to access the information? I have been searching for hours with Google and on the ADC.

    Hummm.
    I am trying
    on launched theApplication
    (*do shell script "defaults read path/to/file isFirstLaunched"*)
    display dialog quoted form of POSIX path of (path to "zap.plist")
    end launched
    as well as
    on launched theApplication
    (*do shell script "defaults read path/to/file isFirstLaunched"*)
    display dialog quoted form of POSIX path of "zap" of (path to me)
    end launched
    (The {(*do shell script "defaults read path/to/file isFirstLaunched"*)} is a comment because I am not using it right now).
    I am absolutely stuck. I feel really bad about this...

  • Open a url and view the files with it's timestamp

    Hi guys,
    I need to create a flow service in SAP BC to connect to a server by it's url and display it's files with it's timestamps.
    I have never done this b4, and usinf SAP BC makes it harder for me.. Mostly I need to know how to access the server and view the files with their timestamp.
    Any guidance for me will be much appreciated.
    Thank u.

    Yes,
    It's like this. I will connect to an FTP server. Then I need to view the files it the server or folder i specify with their respective timestamps.
    I am using SAP BC and it's webMethods to create the JAVA flow service. I am only now familiarising myself with SAP BC.
    Moreover I have never done a coding to access a server and list it's file. I can do it o view in a local directory using JFrame aand stuff... But SAP BC doesn't support those..
    So If u can give me some guidelines to follow.. i would appreciate it.
    Here's what i have come up with so far
    public static final void ReadFileServer( IData pipeline ) throws ServiceException
    //define input variables
         IDataCursor idcPipeline = pipeline.getCursor();
         String path = null;
         path = (String)idcPipeline.getValue();
         // Check if url is in the pipeline
         if (idcPipeline.first("path"))
              File dir = new File(path);
              String filesFound[]=dir.list();
              long [] age;
              age = new long[filesFound.length];
              for (int i = 0; i < filesFound.length; i++)
                   age = new File(filesFound).lastModified();
              String temp = "";
              for (int i = 0; i < age.length - 1; i++)
                   for(int k = i+1; k < age.length ; k++)
                        if (age > age [k])
                        temp = filesFound;
                        filesFound = filesFound[k];
                        filesFound[k] = temp;
              for (int i = 0; i < filesFound.length; i++)
              //get url out of the pipeline
              path = (String)idcPipeline.getValue();
              //insert the FILES into the pipeline
              idcPipeline.insertAfter("filesFound", filesFound);
              idcPipeline.insertAfter("age", age);
         //If it is not in the pipeline ERROR
         else
         age = "False";
         idcPipeline.insertAfter("path", path);
         //insert the successFlag into the pipeline
         idcPipeline.insertAfter("age", age);
         //Always destroy cursors that you created
         idcPipeline.destroy();
    return;
    }

  • Commons Net - List files with more than a wildcard "*" in path

    Hello everybody!
    I�m starting to use commons net library in a java project, and I have this doubt: I need to list files in a ftp server, for instance, like this �action*/slot*-qual*.txt�
    i.e., I want to list all the files like �slot (something) � qual (something) .txt�, in all directories beginning with �action (something)�.
    When I put this path in a variable named �path� and pass it to the listFiles method, it returns me a list of zero files. But, for instance, if I only pass the path �action*�, the listFiles returns me all the directories beginning with �action�, like action01, action02, etc. The same happens if I pass only �slot*-qual*.txt�, giving me all the files that respect the command, within a certain directory, like slot1-qual101010.txt, slot2-qual10.txt, slot3-qual1.txt, etc.
    So, there�s must me a method to do this kind of listing, isn�t it? Is it possible to list the files like this?
    If I put the command �ls action*/slot*-qual*.txt� in an ftp client that I use, I get the correct list that I need, so it works like this!
    Thanks a lot everybody!
    Andr� Augusto
    FTPClient ftp;
    FTPFile[] files;
    files=ftp.listFiles(path);
    for (int i=0; i<files.length; i++)
    logger.info("Index: "+i+ " -> Name: " +files.getName());

    Hello everybody!
    I�m starting to use commons net library in a java project, and I have this doubt: I need to list files in a ftp server, for instance, like this �action*/slot*-qual*.txt�
    i.e., I want to list all the files like �slot (something) � qual (something) .txt�, in all directories beginning with �action (something)�.
    When I put this path in a variable named �path� and pass it to the listFiles method, it returns me a list of zero files. But, for instance, if I only pass the path �action*�, the listFiles returns me all the directories beginning with �action�, like action01, action02, etc. The same happens if I pass only �slot*-qual*.txt�, giving me all the files that respect the command, within a certain directory, like slot1-qual101010.txt, slot2-qual10.txt, slot3-qual1.txt, etc.
    So, there�s must me a method to do this kind of listing, isn�t it? Is it possible to list the files like this?
    If I put the command �ls action*/slot*-qual*.txt� in an ftp client that I use, I get the correct list that I need, so it works like this!
    Thanks a lot everybody!
    Andr� Augusto
    FTPClient ftp;
    FTPFile[] files;
    files=ftp.listFiles(path);
    for (int i=0; i<files.length; i++)
    logger.info("Index: "+i+ " -> Name: " +files.getName());

  • HOW TO: Open SQL Developer from a batch file with specific tables opened

    I use SQL Developer daily as I develop database intensive programs.
    ** Question **
    How can I define a specific configuration of tabs (i.e. tables, procedures, etc) to be opened upon startup of SQL Developer?
    For example, creating a .BAT file to open SQL Developer with a specific set of table tabs already opened. This will save me the time every morning I use to open SQL Developer and configure all the tables I need opened.
    NOTE: I have tried various options of appending a table name to a command line starting sqldeveloper.exe. For example: ..\sqldeveloper.exe mydatabase.mytable. However, this only opens a worksheet tab with the name "mydatabase.mytable" but does not open my actual table.
    Any help will be appreciated.
    - Gary Davis

    what version are you using? Sql Dev 1.5?
    Not an exact answer, but you could try using Table FILTER
    click on your connection
    right button on TABLES
    click apply filter
    as for your question, check out:
    Re: EA1 - Automatically open connection list at startup?
    or
    SQL Developer

  • Finder Extremely Slow to List Files with SSD?

    Ok, I have an odd performance issue and want to see if anyone else has seen similar behavior.
    Occasionally, when I click on a directory in Finder, it takes several seconds before giving the listing, which is odd as the SSD is otherwise quite fast. (I have the new MBP i7 17" with the 512GB SSD.)
    Also, Word is occasionally freezing up on me when editing some large docs sourced from Windows office, some with embedded graphics, etc. - it beachballs and does not come back with time, and a couple of times has exhibited other odd behaviors including blank dialog boxes during save, blank menus, and changing the display of my document to all question marks as if in an unsupported font. I know Office 2008 is buggy, esp. when working with big docs and complex docs from the Windows versions, but two days ago, I got several of those symptoms at the same time (not entirely surprising), and when I killed Word, got an error message (which I should have written down but didn't) saying that there had been a disk error and that my document was inaccessible, and expressly suggesting that I had a bad disk.
    My system log is of course full of Word errors ("Unable to lock window," "Cannot map backing data shmem," "Unable to allocate xxxxxx bytes for bitmap data" and others), but none with the text of the error message I got, and I might just chalk this off to Word for the Mac being a clunker, but the fact that directories are sometimes slower than expected combined with the error message suggesting disk failure gives me pause.
    So I'll put it out there - have you ever gotten an error like this when Word for the Mac crashed? When browsing files in Finder, does it ever stop for several seconds, a noticeable delay, before displaying a directory, even with an SSD? Any ideas what might be causing this? (Do I have a bum SSD?)

    I have the same problem too. It is like Finder working on building caches, the first time I click on a local folder (library or system) then it will take quite some time (may be up to 30~60 secs) to see the listings. I aware about this slowness just 1~2 months back which not sure due to any application installation or OS upgrade/patches. However, after that, if I open another Finder window and click on the same folder again, this time the listing comes out immediately (which I suppose is the normal performance for MBP).
    Tried googling but most is about SMB, which is slow too, but now our problem is this slowness even happening on the local folders that stored on SSD!!!
    Appreciate suggestions to solve this or at least a way to troubleshoot this. Thanks

  • Adjusting system.log with Property List Editor

    Hi,
    I had my system.log set up to rotate every seven days by using the Property List Editor with my older 2.0GHz Mac Mini OS X.5.8. I have upgraded to a faster Mini OS X.6.4 and now the system.log renews every day. Can someone tell me which plist I need to edit to get my system.log to go back to renewing every seven days? I am getting tired of having to change the permissions every day to view the log, and I want a longer time span in each log.
    Thanks,
    Paul

    4paul3 wrote:
    Thank you Charlie that worked great. One thing I should point out is this has to be done from your Admin account in 10.6 and you have to type:
    sudo edit /etc/newsyslog.conf
    Actually, that sudo shouldn't be necessary: TextWrangler should ask you first if you want to unlock the file to make changes. When you want to save it should ask you to authenticate, and then it can save the file. But you're probably right about being in your admin account.
    Now, please accept my apology for not getting to this sooner but I had a medical thing scheduled and I have not been qualified to do Terminal commands or type coherently for quite some time. I’ve only recently had a clear head so I’m getting to this now. Thank you again this is wonderful.
    You're welcome. I'm glad to hear you're feeling better.
    I do have one question though. For future reference for anyone wanting to do this if I want the log to rotate every two weeks instead of every week and save the last seven logs what would be the entries that I would make in the TextWrangler document?
    In that case, I think you'd make the "when" field just a number of hours. In this case, 336 (168 hours per week times 2 weeks):
    # logfilename [owner:group] mode count size when flags [/pid_file] [sig_num]
    /var/log/system.log 640 7 * 168 J
    I haven't tested the two week interval, though, since it's kind of a long time...
    Or, if I wanted to have the log rotate after it reaches 2MB and save the last seven logs what would be the commands to use in the TextWrangler document?
    Just change the "when" field to an asterisk, the "count" field 7, and "size" 2048:
    # logfilename [owner:group] mode count size when flags [/pid_file] [sig_num]
    /var/log/system.log 640 7 2048 * J
    Thank you again for your input it is greatly appreciated!!
    You're welcome. Let me know if any of this doesn't make sense...
    charlie

  • Problem opening pdf files with Adobe Reader in Windows 7

    I bought a new Dell (Inspiron 5110) with pre-installed Windows 7 Home Premium (Version 6.1 SP1, 64 bit) and pre-installed Adobe Reader X (10.1.1). I cannot open ANY of my old pdf files with the Adobe reader (even after I re-installed the Adobe Reader). On another computer with Windows 7 I get the same error message. When I installed several other pdf-readers (Sumatra, Foxit, ..) I can still not open the pdf's -- but all the pdf's still open under Windows XP on my old computer and they also open on all my colleagues' non-Windows 7 computers. So it appears to be a Windows 7 problem. The Adobe error message says 'Adobe Reader could not open _.pdf because it is either not a supported file type or because the file has been damaged (…..).
    N.B.: I can download pdf files from the internet and can then open these 'new' pdf files with Adobe Reader X.
    N.B.2.: Most of the 'old' pdf files are scientific articles downloaded from various journal websites 2002-2011, so their quality should be out of question.
    N.B.3.:I've transfered the files via memory stick and portable HD.
    N.B.4.: If I try to open the pdf's via 'Open with' the problem remains the same.
    N.B.5.: When, on my Win7 Dell, I've uploaded/attached one of these old pdf files to an email the rtecipient could not tead it. But he could read it when I'd sent the same file from my old Win XP computer.
    N.B.6.: I have repeated this last observation: When I upload an old pdf file on my Win7 Dell to my email account and then send it to myself, I cannot open/read it on my Win XP (nor on the Dell, of course). Although the file size is precisely the same.
    N.B.7.: When I download a new pdf on my Dell, then upload/attach it to an email also on the Dell and send it to myself, I can download and read the attached pdf on both computers.
    Would be grateful for any suggestions.

    This is really strange.
    Please correct me if I am wrong, but from what I can understand, any PDF which is launched on your Win 7 OS fails to open, even though the same file works perfectly fine on your Win XP machine?
    Could you please run a full system anti virus scan on the said PDFs that are present on your local system. It could be a case of infected PDFs.
    Also, it would be great if you could try and download some of the erroneous PDFs from the web again, and see if you experience the same behavior.
    Thanks
    Ankit

  • Cant open embedded msg-files with Standard

    Hi,
    my problem is:
    I have embedded some msg-files into an pdf now I cant open the links to the msg-files with X Standard but
    I can open them with X Pro.
    The Problem is I need to get them opened with X Standard.
    When I try to open them with Standard he tells me something about the security-settings wont allow this.
    I already checked the security-settings and I have the option with " open in extern" activated and
    I dont got a blacklist.
    Is there a possibility to open the msg-files with Standard ?
    I would be very happy if you could write me a solution.
    Sincerly,
    David Scharlau

    Dale,
    Thanks for your reply.
    The problem is that I need to use the "fill" in the paint program.
    I have actually just been able to get the file to load into Appleworks paint after reading about using the .pict save. All looked good untill I tried to fill. What happens now is that the fill is very chunky and does not bleed thru at all. This makes it pretty useless at the moment.
    Same problem, with a twist now.
    Looking forward to any further ideas.
    Michael

Maybe you are looking for

  • Buying a new laptop purely for Hyperion Planning (Self study @ home)

    Hi Guys, I am going to buy a laptop/desktop which I am going to dedicate purely towards learning Planning v11 (1 user at home :D ). I don't want to buy a desktop because laptop is more convinient. I was thinking of getting one of the Alienware laptop

  • My Magic Trackpad won't do all the Lion gestures.

    I can do Swipe between pages and Show Desktop and Launchpad, but not Mission Control or App Expose.  All gestures work on the MB Air 13, but not on the Magic Trackpad.  Any ideas?

  • Why is the LaCie copy silent on DVD player?

    Friends, After several frustrating hours (LaCie's readme only tells me how to connect to LaCie's readme--it should say, "if you are reading this don't bother to read this.") I finally burned a DVD. It was made from a videocam film that we had copied

  • How can I change desktop size of remote slave mac?

    Hi I use a setup of one mac controlling 2 other macs for audio purpose. This means that I have one mac with a Cinema display connected and the 2 other macs without any monitor connected. Have can I decide the desktop size of the 2 connected macs with

  • Blank screen when attempting to view PDF

    Using a browser, I go to an link that gets an .fdf file (https://server.com/file.fdf). Inside the fdf file is a /F (https://server.com/file.pdf) call. If the install of Acrobat Reader 9.3.3/9.3.4 has been done straight from the web, a yellow bar appe