Could you correct this 4-lines-script please?

Hi guys!
I've some troubles with this script...
[CODE]
tell application "iTunes"
set some_items to the selection
do shell script "chmod a-w " & quoted form of POSIX path of (some_items as alias)
end tell
[CODE]
Where is the fatal error? (In Finder it works succesfully..)
Tks in advance..:))

You can directly edit a file in AppleScript, for example:
<pre style="
font-family: Monaco, 'Courier New', Courier, monospace;
font-size: 10px;
margin: 0px;
padding: 5px;
border: 1px solid #000000;
width: 720px;
color: #000000;
background-color: #FFDDFF;
overflow: auto;">
set someLyrics to "blah blah blah
blah blah blah"
set theFile to (path to desktop as text) & "test.txt"
set fileRef to (open for access file theFile with write permission) --fileRef is used to reference the file
write ((current date) as text) to fileRef
write return to fileRef
write someLyrics to fileRef
close access fileRef --be sure to close the file </pre>
If you want to append to an existing file, you need to write beyond the existing contents (eof=end of file):
<pre style="
font-family: Monaco, 'Courier New', Courier, monospace;
font-size: 10px;
margin: 0px;
padding: 5px;
border: 1px solid #000000;
width: 720px;
color: #000000;
background-color: #FFDDFF;
overflow: auto;">
set someLyrics to "blah blah blah
blah blah blah"
set theFile to (path to desktop as text) & "test.txt"
set fileRef to (open for access file theFile with write permission) --fileRef is used to reference the file
write ((current date) as text) to fileRef starting at eof
write return to fileRef starting at eof
write someLyrics to fileRef starting at eof
close access fileRef --be sure to close the file </pre>
There's quite a bit more to this subject, but if you need to ask further questions I would encourage you to post these separately to get the widest audience / quickest response.

Similar Messages

  • Access to this place or content is restricted. If you think this is a mistake, please contact your administrator or the person who directed you here.

    Hi guys,
    I posted a question which was reviewed and published, now i am not able to see the quesrion and the replies anymore.
    I am getting this message "Access to this place or content is restricted. If you think this is a mistake, please contact your administrator or the person who directed you here."
    Can you please help.
    Thank you
    Andy

    You get this due to your newer status in forum, most of the contect needs to be reviewed and approved by one of us ie modertors of this space

  • Access to this place or content is restricted. If you think this is a mistake, please contact your administrator or the person who directed you here. ''Getting

    I tried to post a question on SCN and I too got the following error:
    Access to this place or content is restricted. If you think this is a mistake, please contact your administrator or the person who directed you here.
    Does that mean my question is rejected ? or is it being moderated ?

    This is because your new discussion thread was rejected. You should see feedback from the moderation at http://scn.sap.com/actions/notifications

  • Access to this place or content is restricted. If you think this is a mistake, please contact your administrator

    Hello,
       I am not able to find the discussion, as it is showing error message
    Access to this place or content is restricted. If you think this is a mistake, please contact your administrator or the person who directed you here.
    The thread link is mentioned below.
                     http://scn.sap.com/thread/3704991
    Thanks

    Hi Sanjana,
    I think you may raised issue about CRM Data source enhancement.
    if yes then that might be  hidden by moderator as per SCN rules. Mean its alerted by scn experts and moderators will take action as epr scn rules.
    Data source enhacement have been discussed mnay times on scn.
    please go thru sample existing codes, apply your lgoic and follow it.
    Later you can do syntax check and do the debeug with help of abap expert.
    Thanks

  • HAs any one having problems printing a playlist from itunes Version 11, How do you correct this problem

    Downloaded Itunes Ver.11 and now I can't prin a playlist ...All the titles come out brunchup and you can't read it.How do you correct this problem???????

    Downloaded Itunes Ver.11 and now I can't prin a playlist ...All the titles come out brunchup and you can't read it.How do you correct this problem???????

  • The recent software update on my HTC One has caused errors with Exchange ActiveSync issues. Calendar, mail and tasks sync fine but contacts won't sync. How do you correct this?

    The recent software update on my HTC One has caused errors with Exchange ActiveSync issues. Calendar, mail and tasks sync fine but contacts won't sync. How do you correct this?

    I had the same problem.  Here is what worked for me.  Open the mail app and delete your exchange account (Settings > Delete Account).  Then re-add your Exchange account.  After this my Exchange contacts showed up again. 

  • Could you help this query

    hi to all
    i have table called period which has the four columns id(p.key),name,parent_id,level
    i have 3 different types of periods for eg
    101 2009 null 1
    102 Q1 101 2
    103 Jan 102 3
    so here parent_id is also a period , and have Q1,Q2,Q3,Q4 belong to level 2 and all the months belong to level 3
    Q1 has Jan,Feb,March and Q2 has Apr,May,Jun, .... Q4 has Oct,Nov,Dec months as childs
    now my question is to show the data for a year 2009 l
    displaying 2nd level and immeadetly its sub childs to it like
    id              name        level
    1096     Q1     2
    1097     JAN     3
    1098     FEB     3
    1099     MAR     3
    1100     Q2     2
    1101     APR     3
    1102     MAY     3
    1103     JUN     3
    1104     Q3     2
    1105     JUL     3
    1106     AUG     3
    1107     SEP     3
    1108     Q4     2
    1109     OCT     3
    1110     NOV     3
    1111     DEC     3
    1676     Annual     2( which does not have any more childs but still it is a child of 2009)
    1675     N/A     2( which does not have any more childs but still it is a child of 2009)
    thanks and regards
    santhosh

    if I understand correctly this is all bout ordering the data. So we just have to find the correct order by clause.
    Since you order by a date the basic principle is to convert all the differnt strings into a date value. Then order on it.
    example untested
    order by case when level = 3 then to_date(name,'MON')
                 when level = 2 and name like 'Q%' then add_months(to_date('0101','ddmm'),(to_number(substr(name,2,1))-1)*3) 
                 when level = 2 and name = 'Annual' then to_date('3112','ddmm')
                 when level = 2 and name = 'N/A' then to_date('3112','ddmm')
                 when level = 1 then to_date('YYYY')
                 end,
                 levelyou can also create a kind of hierarchical select, but I doubt that this would be faster.
    My prefered solution would be to add an additional column of datatype date. Fill it with the correct days and then order on it and on the level.
    Btw: With your result data you could order simply on ID, but I doubt if this can be guaranteed. So I do not recommend it.
    Edited by: Sven W. on Sep 23, 2009 10:06 AM - corrected level 3 function

  • I get duplicate emails since ios7. How do you correct this?

    I get duplicate emails on the iPhone since ios7. How do I correct this?

    Try a reset: hold down the home button along with the power button until you see the Apple, then let go.
    Post back if it doesn't work.

  • Moderators could you add this to the Help & Terms of Use

    Hello,
    I just found it interesting that this was not included in the Help & Terms of Use information. Could you add, the next time they are updated, the time limit a user has to edit a post. I have seen this a number of times come up in the Discussions and it always leads to some confusion as to just how long a user has to edit their post. My apologies if it is there and I just didn't find it...it wouldn't be the first time.
    I hope you find this constructive feedback for a future update to the Help & Terms of Use. Sorry if this has already been requested as I hadn't seen it.
    regards,
    littleshoulders
    Message was edited by: littleshoulders

    In the isshell in ifs 1.1.9, I do a
    ls -attrall
    and I see "null" next to the property bundle. I assume this to mean that no property bundle has been created for this folder instance.
    As for categories, 1.2 doc states.. "A folder, ... can be associated with zero,one or more categorys" I will have to create a new category for each file and or folder.
    I really want to have additional attributes for each file.
    I dont want to subclass folder because, if a user does a drag and drop in NTFS a folder will be created and not a MyFolder.
    I have a kludge for now; I put a comma delimited list of items in description field.
    Apparently this limitiation, is changed in 1.2. See above.
    Thanks for your help. IFS is a really great product. Cant wait for 1.2 on NT.
    Mitch
    null

  • I have adobe premiere elements 13 and i imported my video to my computer i click edit video, then it tells me to sign in. so i sign in then accept agreement and nothin happens after that could you tell me whats going on please

    i have adobe premiere elements 13 and i imported my video to my computer i click edit video, then it tells me to sign in. so i sign in then accept agreement and nothin happens after that could you tell me whats going on please

    i have adobe premiere elements 13 and i imported my video to my computer i click edit video, then it tells me to sign in. so i sign in then accept agreement and nothin happens after that could you tell me whats going on please

  • Can you correct my unfunction my script?

    Hi, everyone
    I made a script for add a continued at end of paragraph but unfunction, call you please help to fix it?
    var myDialog = app.dialogs.add({name:"add continueds",canCancel:true});
    with(myDialog){
        with(dialogColumns.add()){
            with(dialogRows.add()){
               var mySelection = dropdowns.add({stringList:["Continued", "continued", "Cont'd","cont'd"], selectedIndex:0});
    if (myDialog.show() == true)
    main();
    function main(){
    var myObject;
    var myCheckSelection = false;
    if(app.documents.length > 0){
      if(app.selection.length > 0){
       switch(app.selection[0].constructor.name){
        case "InsertionPoint":
        case "Character":
        case "Word":
        case "TextStyleRange":
        case "Line":
        case "Paragraph":
        case "TextColumn":
        case "Text":
        case "Cell":
        case "Column":
        case "Row":
        case "Table":
         myObject = app.selection[0];
         if(myObject != "None")
    else{
      alert("No documents are open. Please open a document and try again.");
    function addContinueds(){
        if (mySelection.selectedIndex == 0){
       app.findGrepPreferences.findWhat = "(.)\\r";
       app.changeGrepPreferences.changeTo = "$1 (Continued)\\r";
       app.selection[0].changeGrep();
       app.findGrepPreferences = app.changeGrepPreferences = null;
        if (mySelection.selectedIndex == 1){
       app.findGrepPreferences.findWhat = "(.)\\r";
       app.changeGrepPreferences.changeTo = "$1 (continued)\\r";
       app.selection[0].changeGrep();
       app.findGrepPreferences = app.changeGrepPreferences = null;
       if (mySelection.selectedIndex == 2){
       app.findGrepPreferences.findWhat = "(.)\\r";
       app.changeGrepPreferences.changeTo = "$1 (Cont'd)\\r";
       app.selection[0].changeGrep();
       app.findGrepPreferences = app.changeGrepPreferences = null;
      if (mySelection.selectedIndex == 3){
       app.findGrepPreferences.findWhat = "(.)\\r";
       app.changeGrepPreferences.changeTo = "$1 (cont'd)\\r";
       app.selection[0].changeGrep();
       app.findGrepPreferences = app.changeGrepPreferences = null;
    John

    Hi, Jarek
    I change it into this format (for in case of find-change two or more items) but not work: ---- why?
    var
      mySelected = Number( app.extractLabel("mDialog") ),     //     previous selection's set
      myDialog = app.dialogs.add({name:"add continueds",canCancel:true});
      if ( isNaN( mySelected ) ) mySelected = 0;
      with(myDialog){
           with(dialogColumns.add()){
                with(dialogRows.add()){
                     var
                     mySelection = dropdowns.add({stringList:["01   Continued", "02   continued", "03   Cont'd","04   cont'd"], selectedIndex: mySelected});
    if (myDialog.show() == true)
        main();
    myDialog.destroy();
    function main(){
      mySelected = app.insertLabel( "mDialog", String(mySelection.selectedIndex) );     //     to remember selection's set
      if(app.selection.length && app.selection[0].hasOwnProperty ("contents") ) addContinueds(); 
      else alert("Wrong selection. Please try again.");
    function addContinueds() { 
      app.findGrepPreferences = app.changeGrepPreferences = null;
      switch (mySelection.selectedIndex){
           case 1:
      app.findGrepPreferences.findWhat = "(.)\\r";
      app.selection[0].changeGrep();
      app.changeGrepPreferences.changeTo = "$1 (continued)\\r";
      app.findGrepPreferences = app.changeGrepPreferences = null;
                break;
           case 2:
      app.findGrepPreferences.findWhat = "(.)\\r";
      app.selection[0].changeGrep();
      app.changeGrepPreferences.changeTo = "$1 (Cont'd)\\r";
      app.findGrepPreferences = app.changeGrepPreferences = null;
                break;
           case 3:
      app.findGrepPreferences.findWhat = "(.)\\r";
      app.selection[0].changeGrep();
      app.changeGrepPreferences.changeTo = "$1 (cont'd)\\r";
      app.findGrepPreferences = app.changeGrepPreferences = null;
                break;
        default:
      app.findGrepPreferences.findWhat = "(.)\\r";
      app.selection[0].changeGrep();
      app.changeGrepPreferences.changeTo = "$1 (Continued)\\r";
      app.findGrepPreferences = app.changeGrepPreferences = null;
                break;

  • Can you do this in Bridge scripting?

    I'm game to learn Bridge scripting if it can do what I want, but I have no idea how I even get started in learning what can and can't be done from Bridge scripting. So, here are a couple questions. If someone can give me some guidance on whether it can be done, I'll dive in and figure out how.
    I'm interested in adding a new view to Bridge that would filter out original files when there is an edited copy in the same directory with a common root name. I'd like to only show the edited copy and not the root name. In other cases, I'd like to select only the latest version.
    Is it possible to use the Bridge scripting to make a new menu item that would select only the latest copy of an image? I'd write my own logic in JavaScript to examine the filenames and decide which images should be selected.
    Also, is it possible to create new views in Bridge so that I could view only the latest version of an image? Again, I'd write my own logic in JavaScript to device which images should be displayed.
    --John

    I've wondered about Version Cue since it came out. It appears that you have to buy the whole suite in order to get it and that it's not available separately or just with Photoshop CS2. Is that correct?
    I am a photo hobbiest and the suite is out of my price range (if I was going to spend that kind of money for my hobby, I'd spend it on a lens or towards another camera body), particularly when Adobe's policy for upgrades when you own the suite is that you have to upgrade the whole suite every time, not just a component.
    If you know of a good, in-depth writeup that covers the version cue features, I haven't been able to find one.
    Thanks for the info directing me at a custom browse scheme. I'll read about that and see how feasible it would be to present a "poor man's latest version display". I had in mind that the naming scheme would be pretty easy. I think the only rule that I'd have to follow in my edited versions is to preserve the original root name in the edited versions. If there were multiple edited versions, I'd pick the one with the later time/date.
    I'm off to read some more about how to get started with this. I'm glad this forum exists.
    --John

  • Could you resolve this

    When i try to login through sqlplus for a user i get the following error:
    ERROR:
    ORA-12154: TNS:could not resolve the connect identifier specified.
    i am able to login through Oracle Exterprise Manager and Toad using the same user.
    Please Suggest.

    What's the workaround for this..A password is subject to Oracle naming conventions. But we can use special characters in a password in the same way that we can use them in table names, by wrapping the password in double quotes. This means that we have to use double quotes every time we attempt to connect...
    SQL> conn system
    Enter password: **********
    Connected.
    SQL> create user abc identified by "abc@789"
      2  /
    User created.
    SQL> grant create session to abc
      2  /
    Grant succeeded.
    SQL> conn abc/"abc@789"
    Connected.
    SQL> Cheers, APC

  • Could someone interpret this eMac panic.log please?

    I have had some interesting adventures with this eMac (1GHz, 40GB, 512MB, Combo) last few days. I will list those adventures if it helps someone to help my dilemma. I haven't a clue what any of this means. Is the eMac repairable? What can I do on my own? I was only able to get to this log from Safe Boot Mode.
    panic.log
    Tue Oct  4 20:44:17 2011
    Unresolved kernel trap(cpu 0): 0x300 - Data access DAR=0x00000000DB03109A PC=0x000000000003FCEC
    Latest crash info for cpu 0:
       Exception state (sv=0x21FA9780)
          PC=0x0003FCEC; MSR=0x00009030; DAR=0xDB03109A; DSISR=0x40000000; LR=0x0003FCD4; R1=0x0D7C39A0; XCP=0x0000000C (0x300 - Data access)
          Backtrace:
    0x00000000 0x0002BB08 0x002F9F1C 0x002F9FE4 0x002B6FA8 0x002B7048
             0x002BE6CC 0x002BE9E8 0x002BEA5C 0x002BEA98 0x002E6608 0x0008EC24 0x000291BC 0x000233A8
             0x000ABBAC 0xB5490006
    Proceeding back via exception chain:
       Exception state (sv=0x21FA9780)
          previously dumped as "Latest" state. skipping...
       Exception state (sv=0x21407A00)
          PC=0x9000A758; MSR=0x0200F030; DAR=0x00542000; DSISR=0x40000000; LR=0x9000A69C; R1=0xBFFF9B20; XCP=0x00000030 (0xC00 - System call)
    Kernel version:
    Darwin Kernel Version 8.0.0: Sat Mar 26 14:15:22 PST 2005; root:xnu-792.obj~1/RELEASE_PPC
    panic(cpu 0 caller 0xFFFF0003): 0x300 - Data access
    Latest stack backtrace for cpu 0:
          Backtrace:
             0x00095564 0x00095A7C 0x00026838 0x000A8184 0x000AB880
    Proceeding back via exception chain:
       Exception state (sv=0x21FA9780)
          PC=0x0003FCEC; MSR=0x00009030; DAR=0xDB03109A; DSISR=0x40000000; LR=0x0003FCD4; R1=0x0D7C39A0; XCP=0x0000000C (0x300 - Data access)
          Backtrace:
    0x00000000 0x0002BB08 0x002F9F1C 0x002F9FE4 0x002B6FA8 0x002B7048
             0x002BE6CC 0x002BE9E8 0x002BEA5C 0x002BEA98 0x002E6608 0x0008EC24 0x000291BC 0x000233A8
             0x000ABBAC 0xB5490006
       Exception state (sv=0x21407A00)
          PC=0x9000A758; MSR=0x0200F030; DAR=0x00542000; DSISR=0x40000000; LR=0x9000A69C; R1=0xBFFF9B20; XCP=0x00000030 (0xC00 - System call)
    Kernel version:
    Darwin Kernel Version 8.0.0: Sat Mar 26 14:15:22 PST 2005; root:xnu-792.obj~1/RELEASE_PPC
    Wed Oct  5 19:29:57 2011
    Unresolved kernel trap(cpu 0): 0x600 - Alignment DAR=0x00000000DB03109A PC=0x00000000000A5040
    Latest crash info for cpu 0:
       Exception state (sv=0x209B8280)
          PC=0x000A5040; MSR=0x00009030; DAR=0xDB03109A; DSISR=0x000000A0; LR=0x0006B4B0; R1=0x0CD0B7C0; XCP=0x00000018 (0x600 - Alignment)
          Backtrace:
    0x000FC000 0x002D9684 0x0080D424 0x0080BFF8 0x007FEB00 0x00813C48
             0x007FEBD4 0x002E485C 0x0008A678 0x0008A724 0x000291CC 0x0001AB80 0x00029570 0x00048DEC
             0x0001D9C8 0x0001FD78 0x000215C8 0x00038030 0x002630FC 0x00262F68 0x002A8174 0x000ABA30
             0x38314338
          Kernel loadable modules in backtrace (with dependencies):
             com.apple.ATIRadeon(4.0.0)@0x7f8000
                dependency: com.apple.iokit.IOPCIFamily(1.6)@0x452000
                dependency: com.apple.iokit.IOGraphicsFamily(1.4)@0x731000
                dependency: com.apple.iokit.IONDRVSupport(1.4)@0x755000
    Proceeding back via exception chain:
       Exception state (sv=0x209B8280)
          previously dumped as "Latest" state. skipping...
       Exception state (sv=0x2D60E280)
          PC=0x90013B0C; MSR=0x0200D030; DAR=0x8FE576B8; DSISR=0x0A000000; LR=0x90013948; R1=0xBFFF6D30; XCP=0x00000030 (0xC00 - System call)
    Kernel version:
    Darwin Kernel Version 8.0.0: Sat Mar 26 14:15:22 PST 2005; root:xnu-792.obj~1/RELEASE_PPC
    panic(cpu 0 caller 0xFFFF0006): 0x600 - Alignment
    Latest stack backtrace for cpu 0:
          Backtrace:
             0x00095564 0x00095A7C 0x00026838 0x000A8184 0x000AB880
    Proceeding back via exception chain:
       Exception state (sv=0x209B8280)
          PC=0x000A5040; MSR=0x00009030; DAR=0xDB03109A; DSISR=0x000000A0; LR=0x0006B4B0; R1=0x0CD0B7C0; XCP=0x00000018 (0x600 - Alignment)
          Backtrace:
    0x000FC000 0x002D9684 0x0080D424 0x0080BFF8 0x007FEB00 0x00813C48
             0x007FEBD4 0x002E485C 0x0008A678 0x0008A724 0x000291CC 0x0001AB80 0x00029570 0x00048DEC
             0x0001D9C8 0x0001FD78 0x000215C8 0x00038030 0x002630FC 0x00262F68 0x002A8174 0x000ABA30
             0x38314338
          Kernel loadable modules in backtrace (with dependencies):
             com.apple.ATIRadeon(4.0.0)@0x7f8000
                dependency: com.apple.iokit.IOPCIFamily(1.6)@0x452000
                dependency: com.apple.iokit.IOGraphicsFamily(1.4)@0x731000
                dependency: com.apple.iokit.IONDRVSupport(1.4)@0x755000
       Exception state (sv=0p
    Wed Oct  5 19:59:13 2011
    Unresolved kernel trap(cpu 0): 0x300 - Data access DAR=0x00000000DB03109A PC=0x000000000003FCF0
    Latest crash info for cpu 0:
       Exception state (sv=0x2544FC80)
          PC=0x0003FCF0; MSR=0x00009030; DAR=0xDB03109A; DSISR=0x40000000; LR=0x0003FCD8; R1=0x0CC739D0; XCP=0x0000000C (0x300 - Data access)
          Backtrace:
    0x0CC73A6E 0x0002BB0C 0x00300480 0x003005FC 0x002FE6BC 0x002FBE3C
             0x002FBFCC 0x002FBFCC 0x002B2EA0 0x002E6D54 0x0008B8A4 0x000291C0 0x000233AC 0x000ABE2C
             0x00000000
    Proceeding back via exception chain:
       Exception state (sv=0x2544FC80)
          previously dumped as "Latest" state. skipping...
       Exception state (sv=0x25440000)
          PC=0x9000A778; MSR=0x0000F030; DAR=0x00308B74; DSISR=0x0A000000; LR=0x9000A6BC; R1=0xBFFFF0E0; XCP=0x00000030 (0xC00 - System call)
    Kernel version:
    Darwin Kernel Version 8.2.0: Fri Jun 24 17:46:54 PDT 2005; root:xnu-792.2.4.obj~3/RELEASE_PPC
    panic(cpu 0 caller 0xFFFF0003): 0x300 - Data access
    Latest stack backtrace for cpu 0:
          Backtrace:
             0x00095544 0x00095A5C 0x0002683C 0x000A819C 0x000ABB00
    Proceeding back via exception chain:
       Exception state (sv=0x2544FC80)
          PC=0x0003FCF0; MSR=0x00009030; DAR=0xDB03109A; DSISR=0x40000000; LR=0x0003FCD8; R1=0x0CC739D0; XCP=0x0000000C (0x300 - Data access)
          Backtrace:
    0x0CC73A6E 0x0002BB0C 0x00300480 0x003005FC 0x002FE6BC 0x002FBE3C
             0x002FBFCC 0x002FBFCC 0x002B2EA0 0x002E6D54 0x0008B8A4 0x000291C0 0x000233AC 0x000ABE2C
             0x00000000
       Exception state (sv=0x25440000)
          PC=0x9000A778; MSR=0x0000F030; DAR=0x00308B74; DSISR=0x0A000000; LR=0x9000A6BC; R1=0xBFFFF0E0; XCP=0x00000030 (0xC00 - System call)
    Kernel version:
    Darwin Kernel Version 8.2.0: Fri Jun 24 17:46:54 PDT 2005; root:xnu-792.2.4.obj~3/RELEASE_PPC
    Wed Oct  5 20:15:37 2011
    Unresolved kernel trap(cpu 0): 0x300 - Data access DAR=0x0000000009264718 PC=0x00000000000D9B60
    Latest crash info for cpu 0:
       Exception state (sv=0x2543D280)
          PC=0x000D9B60; MSR=0x00009030; DAR=0x09264718; DSISR=0x40000000; LR=0x000D9B48; R1=0x0CC8B410; XCP=0x0000000C (0x300 - Data access)
          Backtrace:
    0x0006B544 0x000D9B0C 0x0021FC88 0x0021F650 0x000FC4A4 0x000E4B18
             0x000E4E28 0x000E7284 0x000E6B60 0x000E7408 0x0021FAF4 0x00239240 0x000F9FA8 0x000E817C
             0x000F3788 0x000EBD78 0x000EC138 0x002A7A94 0x000ABCB0 0x00000000
    Proceeding back via exception chain:
       Exception state (sv=0x2543D280)
          previously dumped as "Latest" state. skipping...
       Exception state (sv=0x2DB07780)
          PC=0x90001F4C; MSR=0x0200D030; DAR=0xE29CD000; DSISR=0x42000000; LR=0x943F2BD4; R1=0xBFFFAD70; XCP=0x00000030 (0xC00 - System call)
    Kernel version:
    Darwin Kernel Version 8.2.0: Fri Jun 24 17:46:54 PDT 2005; root:xnu-792.2.4.obj~3/RELEASE_PPC
    panic(cpu 0 caller 0xFFFF0003): 0x300 - Data access
    Latest stack backtrace for cpu 0:
          Backtrace:
             0x00095544 0x00095A5C 0x0002683C 0x000A819C 0x000ABB00
    Proceeding back via exception chain:
       Exception state (sv=0x2543D280)
          PC=0x000D9B60; MSR=0x00009030; DAR=0x09264718; DSISR=0x40000000; LR=0x000D9B48; R1=0x0CC8B410; XCP=0x0000000C (0x300 - Data access)
          Backtrace:
    0x0006B544 0x000D9B0C 0x0021FC88 0x0021F650 0x000FC4A4 0x000E4B18
             0x000E4E28 0x000E7284 0x000E6B60 0x000E7408 0x0021FAF4 0x00239240 0x000F9FA8 0x000E817C
             0x000F3788 0x000EBD78 0x000EC138 0x002A7A94 0x000ABCB0 0x00000000
       Exception state (sv=0x2DB07780)
          PC=0x90001F4C; MSR=0x0200D030; DAR=0xE29CD000; DSISR=0x42000000; LR=0x943F2BD4; R1=0xBFFFAD70; XCP=0x00000030 (0xC00 - System call)
    Kernel version:
    Darwin Kernel Version 8.2.0: Fri Jun 24 17:46:54 PDT 2005; root:xnu-792.2.4.obj~3/RELEASE_PPC
    Wed Oct  5 21:10:37 2011
    Unresolved kernel trap(cpu 0): 0x300 - Data access DAR=0x00000000DB03109A PC=0x000000000003FCF0
    Latest crash info for cpu 0:
       Exception state (sv=0x2070BC80)
          PC=0x0003FCF0; MSR=0x00009030; DAR=0xDB03109A; DSISR=0x40000000; LR=0x0003FCD8; R1=0x0CCE3A20; XCP=0x0000000C (0x300 - Data access)
          Backtrace:
    0x0030014C 0x0002BB0C 0x002F983C 0x002F9904 0x0043FFD8 0x002BF690
             0x002BDF88 0x002BE0BC 0x002E5D00 0x0008AF74 0x000291C0 0x000233AC 0x000ABE2C 0x015FB380
          Kernel loadable modules in backtrace (with dependencies):
             com.apple.iokit.IOStorageFamily(1.4)@0x430000
    Proceeding back via exception chain:
       Exception state (sv=0x2070BC80)
          previously dumped as "Latest" state. skipping...
       Exception state (sv=0x2C449000)
          PC=0x9000A778; MSR=0x0200F030; DAR=0x0032CD80; DSISR=0x40000000; LR=0x9000A6BC; R1=0xF007F320; XCP=0x00000030 (0xC00 - System call)
    Kernel version:
    Darwin Kernel Version 8.2.0: Fri Jun 24 17:46:54 PDT 2005; root:xnu-792.2.4.obj~3/RELEASE_PPC
    panic(cpu 0 caller 0xFFFF0003): 0x300 - Data access
    Latest stack backtrace for cpu 0:
          Backtrace:
             0x00095544 0x00095A5C 0x0002683C 0x000A819C 0x000ABB00
    Proceeding back via exception chain:
       Exception state (sv=0x2070BC80)
          PC=0x0003FCF0; MSR=0x00009030; DAR=0xDB03109A; DSISR=0x40000000; LR=0x0003FCD8; R1=0x0CCE3A20; XCP=0x0000000C (0x300 - Data access)
          Backtrace:
    0x0030014C 0x0002BB0C 0x002F983C 0x002F9904 0x0043FFD8 0x002BF690
             0x002BDF88 0x002BE0BC 0x002E5D00 0x0008AF74 0x000291C0 0x000233AC 0x000ABE2C 0x015FB380
          Kernel loadable modules in backtrace (with dependencies):
             com.apple.iokit.IOStorageFamily(1.4)@0x430000
       Exception state (sv=0x2C449000)
          PC=0x9000A778; MSR=0x0200F030; DAR=0x0032CD80; DSISR=0x40000000; LR=0x9000A6BC; R1=0xF007F320; XCP=0x00000030 (0xC00 - System call)
    Kernel version:
    Darwin Kernel Version 8.2.0: Fri Jun 24 17:46:54 PDT 2005; root:xnu-792.2.4.obj~3/RELEASE_PPC
    Wed Oct  5 21:19:23 2011
    Unresolved kernel trap(cpu 0): 0x300 - Data access DAR=0x00000000DB03109A PC=0x000000000003FCF0
    Latest crash info for cpu 0:
       Exception state (sv=0x2BE8E280)
          PC=0x0003FCF0; MSR=0x00009030; DAR=0xDB03109A; DSISR=0x40000000; LR=0x0003FCD8; R1=0x0CC9BA20; XCP=0x0000000C (0x300 - Data access)
          Backtrace:
    0x0030014C 0x0002BB0C 0x002F983C 0x002F9904 0x0043FFD8 0x002BF690
             0x002BDF88 0x002BE0BC 0x002E5D00 0x0008AF74 0x000291C0 0x000233AC 0x000ABE2C 0x00000000
          Kernel loadable modules in backtrace (with dependencies):
             com.apple.iokit.IOStorageFamily(1.4)@0x430000
    Proceeding back via exception chain:
       Exception state (sv=0x2BE8E280)
          previously dumped as "Latest" state. skipping...
       Exception state (sv=0x2BE95000)
          PC=0x9000A778; MSR=0x0200F030; DAR=0x00341006; DSISR=0x42000000; LR=0x9000A6BC; R1=0xBFFFE2C0; XCP=0x00000030 (0xC00 - System call)
    Kernel version:
    Darwin Kernel Version 8.2.0: Fri Jun 24 17:46:54 PDT 2005; root:xnu-792.2.4.obj~3/RELEASE_PPC
    panic(cpu 0 caller 0xFFFF0003): 0x300 - Data access
    Latest stack backtrace for cpu 0:
          Backtrace:
             0x00095544 0x00095A5C 0x0002683C 0x000A819C 0x000ABB00
    Proceeding back via exception chain:
       Exception state (sv=0x2BE8E280)
          PC=0x0003FCF0; MSR=0x00009030; DAR=0xDB03109A; DSISR=0x40000000; LR=0x0003FCD8; R1=0x0CC9BA20; XCP=0x0000000C (0x300 - Data access)
          Backtrace:
    0x0030014C 0x0002BB0C 0x002F983C 0x002F9904 0x0043FFD8 0x002BF690
             0x002BDF88 0x002BE0BC 0x002E5D00 0x0008AF74 0x000291C0 0x000233AC 0x000ABE2C 0x00000000
          Kernel loadable modules in backtrace (with dependencies):
             com.apple.iokit.IOStorageFamily(1.4)@0x430000
       Exception state (sv=0x2BE95000)
          PC=0x9000A778; MSR=0x0200F030; DAR=0x00341006; DSISR=0x42000000; LR=0x9000A6BC; R1=0xBFFFE2C0; XCP=0x00000030 (0xC00 - System call)
    Kernel version:
    Darwin Kernel Version 8.2.0: Fri Jun 24 17:46:54 PDT 2005; root:xnu-792.2.4.obj~3/RELEASE_PPC
    Wed Oct  5 21:35:08 2011
    Unresolved kernel trap(cpu 0): 0x300 - Data access DAR=0x00000000DB03109A PC=0x000000000003FCF0
    Latest crash info for cpu 0:
       Exception state (sv=0x2C30EA00)
          PC=0x0003FCF0; MSR=0x00009030; DAR=0xDB03109A; DSISR=0x40000000; LR=0x0003FCD8; R1=0x0CBCB9D0; XCP=0x0000000C (0x300 - Data access)
          Backtrace:
    0x00063B10 0x0002BB0C 0x00300480 0x003005FC 0x002FE6BC 0x002FCC9C
             0x002FBFCC 0x002FBFCC 0x002F858C 0x002E6AEC 0x0008B0FC 0x000291C0 0x000233AC 0x000ABE2C
             0x302C3078
    Proceeding back via exception chain:
       Exception state (sv=0x2C30EA00)
          previously dumped as "Latest" state. skipping...
       Exception state (sv=0x2BEAEC80)
          PC=0x9000A778; MSR=0x0200F030; DAR=0xE0065000; DSISR=0x42000000; LR=0x9000A6BC; R1=0xBFFF9980; XCP=0x00000030 (0xC00 - System call)
    Kernel version:
    Darwin Kernel Version 8.2.0: Fri Jun 24 17:46:54 PDT 2005; root:xnu-792.2.4.obj~3/RELEASE_PPC
    panic(cpu 0 caller 0xFFFF0003): 0x300 - Data access
    Latest stack backtrace for cpu 0:
          Backtrace:
             0x00095544 0x00095A5C 0x0002683C 0x000A819C 0x000ABB00
    Proceeding back via exception chain:
       Exception state (sv=0x2C30EA00)
          PC=0x0003FCF0; MSR=0x00009030; DAR=0xDB03109A; DSISR=0x40000000; LR=0x0003FCD8; R1=0x0CBCB9D0; XCP=0x0000000C (0x300 - Data access)
          Backtrace:
    0x00063B10 0x0002BB0C 0x00300480 0x003005FC 0x002FE6BC 0x002FCC9C
             0x002FBFCC 0x002FBFCC 0x002F858C 0x002E6AEC 0x0008B0FC 0x000291C0 0x000233AC 0x000ABE2C
             0x302C3078
       Exception state (sv=0x2BEAEC80)
          PC=0x9000A778; MSR=0x0200F030; DAR=0xE0065000; DSISR=0x42000000; LR=0x9000A6BC; R1=0xBFFF9980; XCP=0x00000030 (0xC00 - System call)
    Kernel version:
    Darwin Kernel Version 8.2.0: Fri Jun 24 17:46:54 PDT 2005; root:xnu-792.2.4.obj~3/RELEASE_PPC
    Wed Oct  5 21:45:09 2011
    Unresolved kernel trap(cpu 0): 0x300 - Data access DAR=0x00000000DB03109A PC=0x000000000003FCF0
    Latest crash info for cpu 0:
       Exception state (sv=0x2C43D780)
          PC=0x0003FCF0; MSR=0x00009030; DAR=0xDB03109A; DSISR=0x40000000; LR=0x0003FCD8; R1=0x0CC0BA40; XCP=0x0000000C (0x300 - Data access)
          Backtrace:
    0x0CC0BADC 0x0002BB0C 0x00300480 0x003005FC 0x002FE6BC 0x002FBE3C
             0x002FBFCC 0x002B2EA0 0x002E6D54 0x0008B8A4 0x000291C0 0x000233AC 0x000ABE2C 0x372F507A
    Proceeding back via exception chain:
       Exception state (sv=0x2C43D780)
          previously dumped as "Latest" state. skipping...
       Exception state (sv=0x20A04A00)
          PC=0x9000A778; MSR=0x0200F030; DAR=0xBFFFF0CC; DSISR=0x0A000000; LR=0x9000A6BC; R1=0xBFFFDE90; XCP=0x00000030 (0xC00 - System call)
    Kernel version:
    Darwin Kernel Version 8.2.0: Fri Jun 24 17:46:54 PDT 2005; root:xnu-792.2.4.obj~3/RELEASE_PPC
    panic(cpu 0 caller 0xFFFF0003): 0x300 - Data access
    Latest stack backtrace for cpu 0:
          Backtrace:
             0x00095544 0x00095A5C 0x0002683C 0x000A819C 0x000ABB00
    Proceeding back via exception chain:
       Exception state (sv=0x2C43D780)
          PC=0x0003FCF0; MSR=0x00009030; DAR=0xDB03109A; DSISR=0x40000000; LR=0x0003FCD8; R1=0x0CC0BA40; XCP=0x0000000C (0x300 - Data access)
          Backtrace:
    0x0CC0BADC 0x0002BB0C 0x00300480 0x003005FC 0x002FE6BC 0x002FBE3C
             0x002FBFCC 0x002B2EA0 0x002E6D54 0x0008B8A4 0x000291C0 0x000233AC 0x000ABE2C 0x372F507A
       Exception state (sv=0x20A04A00)
          PC=0x9000A778; MSR=0x0200F030; DAR=0xBFFFF0CC; DSISR=0x0A000000; LR=0x9000A6BC; R1=0xBFFFDE90; XCP=0x00000030 (0xC00 - System call)
    Kernel version:
    Darwin Kernel Version 8.2.0: Fri Jun 24 17:46:54 PDT 2005; root:xnu-792.2.4.obj~3/RELEASE_PPC
    Thanks for any effort anyone is able to give.
    Tricia

    Hello,
    We had (still do) two eMac's a 1.25GHZ USB 2.0 1GB ram and a 1.0GHZ 1GB ram, never had kernal
    panics on either
    then, (One was in use the faster one with a airport extreme card) the 1.0GHz stored (also with a airport
    extreme card) We bought a Airport Extreme dual band 802.11n router and got every one set up
    (using a
    MacBook pro running Snow Leopard, specs said Macs running OSX 10.3.9 Panther could run
    wirelessly
    from the Airport Extreme (but not set it up) and then I went to the eMac 1.25GHz and turned it on
    and kernal panic, yikes, ran applejack, techtoo from Applecare (though a 2004 version) and Apple
    Hardware  test and Disk Warrior , everything is fine, then thought, bring out the other emac (running
    Panther) started it up bang Kernal Panic, then, unplugged both for awhile, plugged then back in did
    zap PRAM, then restarted one in safe mode and it worked like a computer, no kernal panic (*But we
    turned off the airport card) restarted and turned airport card back on and kernal panic, did this with
    both, turning on/off airport card on two computers and airport extreme card on-kernal panic, card off
    worked like a mac (but no online) so, hooked up via Ethernet, reset settings on emac on 1 and was
    fine, no kernal panic, ran like a mac and got online, switched the ethernet over to the other eMac
    and same thing, after settings changed, mac ran, got online no kernal panic
    Then swicthed both back to airport extreme card settings-Kernal Panic Right Away, ended up using
    ethernet cable on one, put the emac 1.0 Ghz back in basement (and later the 1.25Ghz ) and bought
    a imac in 2010 3.06Ghz 4GB Ram, spoke with tech support (as Airport Extreme was quite new and
    Staff said that the new (then early 2010 I think) the Airport Extreme dual band 802.11N due to play
    well with 802.11B Airport Extreme cards, I discussed the specs and what was required to set up the
    Airport Utility and Airport Extreme (Leopard >above, and to use Panther 10.3.x and above (guess not
    true or We had one very unusual coincidence
    ? did You by chance get a new Router or cable modem? If possible try the ethernet route if possible
    (adjust settings in System Preferences, ? move eMac closer if You have a short pice of cable
    I realize eMac's weigh 55pounds or so,
    Just thought I would share this, The XLAB is a great site, but this trouble shooting found out ours
    * and a imac (older) could not accept the high level of security, so it (was a Airport Card 1st version)
    swicthed to ethernet and a lower security type )its on the desk with the cable modem and airport
    extreme and rarely used or on anymore ( alaptop is used instead)
    Bizarre or what? later used Google and typed in Apple Airport Extreme 802.11N dual band and
    problems and wow pages and pages (a lot like what I am writing)
    Best of luck
    db

  • There is a CSS error with Mozilla Thimble currently - showing a big white box over the code area. Can you correct this?

    I guess this is a question for mozilla dev.

    It will be better if you submit a bug with how to reproduce. Submit a bug here: https://bugzilla.mozilla.org/enter_bug.cgi

Maybe you are looking for

  • How can i get my money back for downloading a song?

    I bought some music from sublime but i just found the cd i had for it.  Is there any way to refund the music so i can get more music?

  • Can't drag files and folders to iTunes

    You're supposed to be able to drag files and folders from windows into iTunes, either just to add them to the library or to a specific device or playlist. However, when I try to do this now it just shows a little red circle with a slash like when you

  • How do i uninstall firefox from my pc

    i tried to uninstall dut it didnt

  • [REQUEST] VBIOS / UEFI GOP MSI N770 Lightning

    Dear Sir, I'd like to ask / request UEFI GOP for my purpose MSI fast boot here is my S/N: 602-V283-10SB1307013586 then I attached my GPU info through GPU-Z below dropbox.com/s/m9t9v6nto5qyz4k/GK104.rom Thanks in advance

  • Copy variants between programs

    Hi! I've copied a Z program into an another Z program in the development system. Unfortunately there are a lot of variants to the old program in the productive system. Because these variants are only in the productive syste I could not copy them. Aft