Help with Repeating Subforms

Hi There,
I am using LiveCycle Disigner ES and am encountering some problems with the repeating subforms...essentially even though I am following the instructions...I can't get the second instance. I have used Subform set which gives me the error reached maximum instances which is far from true. Can someone put me on the right track with this.
Thanks!
Donna Munroe

You do not want to put them in a subform set. Simply make sure that the root subform is flowed, that you have saved the form as a dynamic PDF and that shoudl be all you need.

Similar Messages

  • Need help with repeating Subforms on the next page

    I have created two different flowable repeating subforms, for example - subform1 and subform2 in a document with an action button for each to add another subform on the next page.  After subform2, I have two buttons - one to add subform1 again or add subform2 on the next page. When I click the button, Livecycle adds the new subform as commanded but the subform is added directly after the previous same subform not on the next page as requested.  I have tried to change the pagination settings but nothing seems to work.  Can anyone help me define how to get the repeating subform to add to the next page and not after the same subform?

    OK, so here's what I would do.
    1. Wrap your subform1 and subform2 in a subform. I'll call it sfMaster.
    2. Change your minimum instance for subform1 and 2 to 0 or uncheck the box, and set the initial count to 1. (That way you get at least one of each when we start.)
    3. have the buttons create a new instance of sfMaster, then remove the instance of the subform you didn't want within that most recent instance.
    So, what the user sees is a new subform1 or 2 each time they hit a button. And they'll appear in whatever order they choose it. The user doesn't have to know that what is actually happening is the creation of a new "master" subform that holds both subform1 and 2.
    To help illustrate what I mean, I've added a pink border around sfMaster and colored subform1 and 2.
    Binding options for Subform2 (Subform1 would be similar)
    What it looks like in action
    If you want to guarantee it appears on the next page, you'll need to add the conditional break from earlier. Keep working with it to get the settings just right. You may even want a docReady() event that creates two sfMaster's and sets one to have Subform1 and the other to have Subform2.

  • Need help with repeatable subform

    I am trying to create an interactive form for users to enter in data and print off. I need part of the form to be repeatable if required by the user. I created a subform and added a button but it doesn't seem to be working (the preview format is Acrobat 8 Dynamic XML and I've saved the form as that too). The top part of the form - Box Information - does not need to be repeatable. I need the File Information to be repeatable at the user's request, so I assumed adding a button would do the trick. The user needs to be able to add as many File Information subforms as possible (minimum of 1).
    I've set the content of the parent subform to Flowed, and I added objects to a subform which I wrapped within the parent subform, and set its content to flowed, but when I do this my formatting gets messed up and I can't move individual objects. (Basically, the File Information should look like the Box Information at the top of the form). I also set the Binding to repeat.
    Do I only need 1 subform for the File Information or does it need to be in a subform wrapped in a subform? Do I create the subform first then add objects, or the other way around? What script do I need for the button? For now I have (Java):Subform1.instanceManager.addInstance(
    true);
    I've attached the form as is, and would appreciate any help. This is my first time creating an interactive form and it's not going so well!
    Thanks,
    Karen

    Anyone have any advice?
    I've been playing around with this, and still can't get it. I've wrapped a flowed subform within a flowed subform, and have Repeat checked off. I added a button outside the subform I want repeated, and have used the scripts __FileInfo.instanceManager.addInstance(1); and __FileInfo.instanceManager.addInstance(true); but neither work. I have the form properties preview set to Interactive and Acrobat 8 Dynamic. Nothing happens when I click on the button. I've attached a new sample of the form I'm trying to create. Help please!
    Thanks,
    Karen

  • Problem with Repeating Subform bnot displaying

    I have a reapting subform but when I use the addInstance or InsertInstance, it is not adding a row onto the screen.  I can see from the instanceManager.count that the number of rows has increaes but they are not visible. 
    The Hierarchy is:
    CreateMaterialForm - Subform Flowed, top to bottom    binding: $record.MaterialNode
    ==== ClassificationForm - Subform Flowed, top to bottom     binding: CLASS
    ======== ClassLevelForm - Subform Flowed, top to bottom , Repeat Subform, Min count 1    binding: CLASSTAB[*]
    ============ ClassLevelValue - Text Field     binding: VALUE
    I only ever have the first row regardless of how many rows I add to the data structure at run time.    If I start the table with Min of 5, then the rows will be displayed as I add them to the data table.   
    How do I get the subform to expand to display the additional rows?   I have even tried placing a Button where the click event I did the AddInstance and sthat still did not add more visible rows.  It added rows according to the instanceManager.count. 
    NWDS 7.0.19
    Live Cycle 8.01
    Glenn

    Hi Glenn,
    Have you set the dynamic property of the form true?
    Please write the following code in wddoModifyView mthod of the view:
      if(firstTime) {
        IWDInteractiveForm iForm = (IWDInteractiveForm)view.getElement("YOUR_FORM");
        iForm.setDynamicPDF(true);
    Also do the following:
    In Adobe LiveCycle Designer 7.1 you can discover whether your adobe form was created as dynamic. Open your created pdf file in LiveCycle Designer. Menu File -> Form Properties -> tab Compatibility, Form Type. There must be Acrobat 7.x Dynamic PDF Form File.
    Hope this helps.
    Amit
    Edited by: Amit on Oct 28, 2009 8:43 AM

  • Dynamic Table with repeating Subform

    Hello,
    I am maiking a form which has a Dynamic Table with a repeating Subform.  The repeating subform has a dropdown list field which has three options for the user to pic.  "LABOR", "EQUIPT.", & "MATL."
    The way I want the form to work is the user will choose which item they want to add to the form with the dropdown list.  Whatever amount they put into the "Amount" column will go to the corresponding total "LABORTotal", "EQUIPTTotal", & "MATLTotal"
    The repeating Subform is basically the Row1, but I have the table split up into subforms because of issues I had eariler with the form.  The repeating subform title is "detail". 
    I cannot get the sums for the 3 items to go into the corresponding totals field.  This is the script that I have for the labor total field:
    form1.total.LABORTotal::calculate - (JavaScript, client)
    var nAmount = xfa.resolveNodes("detail[*].Table1.Row1.AMOUNT");
    var nItem = xfa.resolveNodes("detail[*].Table1.Row1.ITEM");
    var nSum = 0;
    for (var i=0; i<nAmount.length; i++)
        if (nItem.item[i].rawValue == "LABOR")
        nSum = nSum + nAmount.item(i).rawValue;
    This.rawValue = nSum;
    I am not familiar with loop scripting or var scripting so I know I am getting it wrong somewhere. 
    I would greatly appreciate any help!
    Thanks

    Okay,
    Here is your form back to you: https://acrobat.com/#d=IA67zcTBrWlnpcYS234*XQ.
    The issue wasn't the script. If you select the dropdown and go to the Object > Binding palette, you will see you had ticked "Specify values" and these were set to 1, 2 and 3.
    This meant that if the user selected LABOR, the value of the dropdown was "1" and NOT "LABOR". This was throwing the if statement.
    I deselected the specify values and it worked as expected.
    Hope that helps,
    Niall

  • Delete the blank page with repeating subforms

    hi all!
    I have a form for declarations.
    Every declaration has to be set on a new page.
    I solved this with a repeating subform.
    And in the properties of the repeating subform the variable 'After' has 'Go To Next Page'.
    This works well with only one disadvantage. In the end an empty page is also be created.
    I would like to get rid of this empty page.
    But how can this be done?
    kind regards,
    Anton Pierhagen

    Hi Kyle!
    Thank you very much! This one does the trick. Thats a relief!
    I am also very curious what does the Conditional break do?
    I think:
    this.instanceManager.count is the pagenumber where the repeating subform is printed on
    this.instanceIndex = the index of the table which is used as binding for the subform
    And did i understand it correctly that:
    - The code is called after the subform is created.
    - And when the condition is not correct the logic for the page is finished or only the logic of the (repeating) subform?
    kind regards,
    Anton

  • Please help with repeated Kernal Panics - I can't even leave it long enough to backup the 100gb or so of stuff, Please help with repeated Kernal Panics - I can't even leave it long enough to backup the 100gb or so of stuff

    Please can someone help me here, my Kernal Panic attack frequency is becoming very consistent at least 1 every 1 hr. Below are my last few attack reports, can someone please help me? Thanks.
    Interval Since Last Panic Report:  -102 sec
    Panics Since Last Report:          3
    Anonymous UUID: 2DD98ED2-47F9-406B-A38B-ED8B9424B7B5
    Tue May 29 11:11:37 2012
    Machine-check capabilities (cpu 1) 0x0000000000000c09:
    family: 6 model: 42 stepping: 7 microcode: 26
    Intel(R) Core(TM) i7-2760QM CPU @ 2.40GHz
    9 error-reporting banks
    threshold-based error status present
    extended corrected memory error handling present
    Machine-check status 0x0000000000000005:
    restart IP valid
    machine-check in progress
    MCA error-reporting registers:
    IA32_MC0_STATUS(0x401): 0x0000000000000000 invalid
    IA32_MC1_STATUS(0x405): 0x0980000000000000 invalid
    IA32_MC2_STATUS(0x409): 0x0000000000000000 invalid
    IA32_MC3_STATUS(0x40d): 0x0000000000000000 invalid
    IA32_MC4_STATUS(0x411): 0x0000000000000000 invalid
    IA32_MC5_STATUS(0x415): 0x0020000000000000 invalid
    IA32_MC6_STATUS(0x419): 0x0020000000000000 invalid
    IA32_MC7_STATUS(0x41d): 0x0020000000000000 invalid
    Package 0 logged:
    IA32_MC8_STATUS(0x421): 0x0020000000000000 invalid
    panic(cpu 0 caller 0x2aaf41): Machine Check at 0x9595c19f, thread:0x947c000, trapno:0x12, err:0x0,registers:
    CR0: 0x8001003b, CR2: 0x00099688, CR3: 0x00100000, CR4: 0x00040668
    EAX: 0xa05f6088, EBX: 0x9595c164, ECX: 0xa0604704, EDX: 0xb029147c
    ESP: 0xb0291420, EBP: 0xb0291498, ESI: 0x1c226cb0, EDI: 0x1c226cb4
    EFL: 0x00000202, EIP: 0x9595c19f
    Backtrace (CPU 0), Frame : Return Address (4 potential args on stack)
    0x819e18 : 0x21b837 (0x5dd7fc 0x819e4c 0x223ce1 0x0)
    0x819e68 : 0x2aaf41 (0x59dfe4 0x59e0d1 0x9595c19f 0x947c000)
    0x819f58 : 0x2a29f2 (0x1 0x0 0x0 0x0)
    BSD process name corresponding to current thread: Microsoft Outloo
    Mac OS version:
    10K549
    Kernel version:
    Darwin Kernel Version 10.8.0: Tue Jun  7 16:33:36 PDT 2011; root:xnu-1504.15.3~1/RELEASE_I386
    System model name: MacBookPro8,2 (Mac-94245A3940C91C80)
    System uptime in nanoseconds: 1153078954474
    unloaded kexts:
    com.apple.driver.AppleUSBUHCI     4.2.0 (addr 0x13cb000, size 0x65536) - last unloaded 220303805184
    loaded kexts:
    com.zeobit.kext.Firewall        2.0.1 - last loaded 202816384829
    com.sophos.kext.sav  7.3.0
    com.cisco.nke.ipsec    2.0.3
    com.checkpoint.kext.P4MacFilterScheme   1.0
    com.checkpoint.kext.FDECryptocore           1.0.0d1
    com.apple.filesystems.autofs            2.1.0
    com.apple.driver.AppleHWSensor   1.9.3d0
    com.apple.driver.AppleMikeyHIDDriver     1.2.0
    com.apple.driver.AudioAUUC           1.57
    com.apple.driver.IOBluetoothBNEPDriver 2.4.5f3
    com.apple.driver.AppleHDA 2.0.5f14
    com.apple.driver.AppleMikeyDriver           2.0.5f14
    com.apple.driver.AGPM        100.12.31
    com.apple.kext.ATIFramebuffer      6.3.6
    com.apple.driver.AppleUpstreamUserClient          3.5.7
    com.apple.driver.AppleMCCSControl          1.0.20
    com.apple.driver.SMCMotionSensor           3.0.1d2
    com.apple.Dont_Steal_Mac_OS_X      7.0.0
    com.apple.iokit.CHUDUtils    364
    com.apple.iokit.CHUDProf    366
    com.apple.driver.AudioIPCDriver    1.1.6
    com.apple.driver.ACPI_SMC_PlatformPlugin          4.7.0a1
    com.apple.driver.AppleLPC  1.5.1
    com.apple.driver.AppleGraphicsControl     2.10.6
    com.apple.kext.AppleSMCLMU        1.5.2d10
    com.apple.ATIRadeonX3000           6.3.6
    com.apple.driver.AppleIntelHDGraphics    6.3.6
    com.apple.driver.AppleIntelSNBGraphicsFB          6.3.6
    com.apple.driver.AppleUSBTCButtons        201.6
    com.apple.driver.AppleIRController            303.8
    com.apple.driver.AppleUSBTCKeyboard    201.6
    com.apple.iokit.SCSITaskUserClient            2.6.8
    com.apple.BootCache            31.1
    com.apple.AppleFSCompression.AppleFSCompressionTypeZlib  1.0.0d1
    com.apple.iokit.IOAHCIBlockStorage           1.6.4
    com.apple.driver.AppleUSBHub      4.2.4
    com.apple.driver.AppleFWOHCI      4.7.3
    com.apple.driver.AirPort.Brcm4331           433.11.5
    com.apple.driver.AppleSDXC           1.0.3
    com.apple.iokit.AppleBCM5701Ethernet   3.0.5b8
    com.apple.driver.AppleEFINVRAM  1.4.0
    com.apple.driver.AppleSmartBatteryManager      160.0.0
    com.apple.driver.AppleAHCIPort     2.1.7
    com.apple.driver.AppleUSBEHCI     4.2.4
    com.apple.driver.AppleACPIButtons           1.3.6
    com.apple.driver.AppleRTC  1.3.1
    com.apple.driver.AppleHPET           1.5
    com.apple.driver.AppleSMBIOS       1.7
    com.apple.driver.AppleACPIEC        1.3.6
    com.apple.driver.AppleAPIC            1.4
    com.apple.driver.AppleIntelCPUPowerManagementClient          142.6.0
    com.apple.security.sandbox 1
    com.apple.security.quarantine        0
    com.apple.nke.applicationfirewall   2.1.14
    com.apple.driver.AppleIntelCPUPowerManagement        142.6.0
    com.apple.driver.AppleProfileReadCounterAction            67
    com.apple.driver.AppleProfileTimestampAction   67
    com.apple.driver.AppleProfileThreadInfoAction   67
    com.apple.driver.AppleProfileRegisterStateAction            67
    com.apple.driver.AppleProfileKEventAction          67
    com.apple.driver.AppleProfileCallstackAction        69
    com.apple.driver.DspFuncLib          2.0.5f14
    com.apple.driver.AppleSMBusController    1.0.10d0
    com.apple.iokit.IOFireWireIP           2.0.3
    com.apple.iokit.IOSurface     74.2
    com.apple.iokit.IOBluetoothSerialManager            2.4.5f3
    com.apple.iokit.IOSerialFamily         10.0.3
    com.apple.iokit.CHUDKernLib          365
    com.apple.iokit.IOAudioFamily         1.8.3fc2
    com.apple.kext.OSvKernDSPLib      1.3
    com.apple.driver.AppleHDAController        2.0.5f14
    com.apple.iokit.IOHDAFamily           2.0.5f14
    com.apple.iokit.AppleProfileFamily 61
    com.apple.driver.IOPlatformPluginFamily 4.7.0a1
    com.apple.driver.AppleSMBusPCI   1.0.10d0
    com.apple.driver.AppleBacklightExpert     1.0.1
    com.apple.driver.AppleSMC 3.1.0d5
    com.apple.kext.ATI6000Controller 6.3.6
    com.apple.kext.ATISupport  6.3.6
    com.apple.iokit.IONDRVSupport      2.2.1
    com.apple.iokit.IOGraphicsFamily    2.2.1
    com.apple.driver.AppleThunderboltDPInAdapter            1.3.2
    com.apple.driver.AppleThunderboltDPAdapterFamily    1.3.2
    com.apple.driver.AppleThunderboltPCIDownAdapter     1.1.6
    com.apple.driver.BroadcomUSBBluetoothHCIController  2.4.5f3
    com.apple.driver.AppleUSBBluetoothHCIController         2.4.5f3
    com.apple.iokit.IOBluetoothFamily  2.4.5f3
    com.apple.driver.AppleUSBMultitouch       207.7
    com.apple.iokit.IOUSBHIDDriver     4.2.0
    com.apple.iokit.IOSCSIMultimediaCommandsDevice        2.6.8
    com.apple.iokit.IOBDStorageFamily 1.6
    com.apple.iokit.IODVDStorageFamily          1.6
    com.apple.iokit.IOCDStorageFamily 1.6.1
    com.apple.driver.AppleUSBMergeNub       4.2.4
    com.apple.driver.AppleUSBComposite        3.9.0
    com.apple.driver.XsanFilter 402.1
    com.apple.iokit.IOAHCISerialATAPI 1.2.6
    com.apple.iokit.IOSCSIArchitectureModelFamily   2.6.8
    com.apple.driver.AppleThunderboltNHI    1.2.6
    com.apple.iokit.IOThunderboltFamily         1.4.9
    com.apple.iokit.IOUSBUserClient     4.2.4
    com.apple.iokit.IOFireWireFamily    4.2.6
    com.apple.iokit.IO80211Family       320.1
    com.apple.iokit.IONetworkingFamily           1.10
    com.apple.iokit.IOAHCIFamily          2.0.6
    com.apple.iokit.IOUSBFamily            4.2.4
    com.apple.driver.AppleEFIRuntime            1.4.0
    com.apple.iokit.IOHIDFamily            1.6.6
    com.apple.iokit.IOSMBusFamily       1.1
    com.apple.kext.AppleMatch 1.0.0d1
    com.apple.security.TMSafetyNet     6
    com.apple.driver.DiskImages           289
    com.apple.iokit.IOStorageFamily      1.6.3
    com.apple.driver.AppleACPIPlatform         1.3.6
    com.apple.iokit.IOPCIFamily 2.6.5
    com.apple.iokit.IOACPIFamily          1.3.0
    Interval Since Last Panic Report:  241 sec
    Panics Since Last Report:          4
    Anonymous UUID: 2DD98ED2-47F9-406B-A38B-ED8B9424B7B5
    Tue May 29 11:36:22 2012
    Machine-check capabilities (cpu 5) 0x0000000000000c09:
    family: 6 model: 42 stepping: 7 microcode: 26
    Intel(R) Core(TM) i7-2760QM CPU @ 2.40GHz
    9 error-reporting banks
    threshold-based error status present
    extended corrected memory error handling present
    Machine-check status 0x0000000000000005:
    restart IP valid
    machine-check in progress
    MCA error-reporting registers:
    IA32_MC0_STATUS(0x401): 0x0000000000000000 invalid
    IA32_MC1_STATUS(0x405): 0x0980000000000000 invalid
    IA32_MC2_STATUS(0x409): 0xf200000000000019 valid
      MCA error code:            0x0019
      Model specific error code: 0x0000
      Other information:         0x00000000
      Threshold-based status:    No tracking
      Status bits:
       Processor context corrupt
       Error enabled
       Uncorrected error
       Error overflow
    IA32_MC3_STATUS(0x40d): 0x0000000000000000 invalid
    IA32_MC4_STATUS(0x411): 0x0000000000000000 invalid
    IA32_MC5_STATUS(0x415): 0x0020000000000000 invalid
    IA32_MC6_STATUS(0x419): 0x0020000000000000 invalid
    IA32_MC7_STATUS(0x41d): 0x0020000000000000 invalid
    Package 0 logged:
    IA32_MC8_STATUS(0x421): 0x0020000000000000 invalid
    panic(cpu 4 caller 0x2aaf41): Machine Check at 0x00279e2d, thread:0x86ea7a8, trapno:0x12, err:0x0,registers:
    CR0: 0x8001003b, CR2: 0x83c2ad20, CR3: 0x00100000, CR4: 0x00040660
    EAX: 0x00001000, EBX: 0x056df174, ECX: 0x05168ba0, EDX: 0x00000000
    ESP: 0x61f6b950, EBP: 0x61f6b988, ESI: 0x00b65000, EDI: 0x00000000
    EFL: 0x00000202, EIP: 0x00279e2d
    Backtrace (CPU 4), Frame : Return Address (4 potential args on stack)
    0x57652fb8 : 0x21b837 (0x5dd7fc 0x57652fec 0x223ce1 0x0)
    0x57653008 : 0x2aaf41 (0x59dfe4 0x59e0d1 0x279e2d 0x86ea7a8)
    0x576530f8 : 0x2a29f2 (0x1 0xc383c395 0x2444c705 0x108)
    0x61f6b988 : 0x2739f2 (0x999e720 0xb65000 0x0 0x0)
    0x61f6bb38 : 0x4a9acc (0x8786000 0x0 0x100000 0x19)
    0x61f6bb88 : 0x2d312e (0x8786000 0x0 0x100000 0x9)
    0x61f6bbe8 : 0x2cdaad (0x5c330a60 0x0 0x86904bc 0xf65641)
    0x61f6bc38 : 0x176af08 (0x5c330a60 0x0 0x0 0x100000)
    0x61f6bc88 : 0xf68dea (0x876c800 0x87814e0 0x0 0x100000)
    0x61f6bcb8 : 0xf5fbf1 (0x8b78a54 0x0 0x100000 0x0)
    0x61f6bd28 : 0xf68dea (0x8744400 0x8b78a40 0x0 0x100000)
    0x61f6bd58 : 0x14c60a5 (0x61f6bd94 0x0 0x100000 0x0)
    0x61f6bdb8 : 0x14c83b2 (0x8744800 0x845af9c 0x61f6bdd8 0x2)
    0x61f6bdd8 : 0xec1698 (0x874bb00 0x8738a00 0x0 0xd0)
    0x61f6be08 : 0xec228a (0x873f780 0x8738a00 0x1 0x873dc00)
    0x61f6be28 : 0xeca1dc (0x8738a00 0x8738a00 0x0 0xd0)
    0x61f6be68 : 0xeca33a (0x873dc00 0x8738a00 0x0 0x0)
    0x61f6bea8 : 0xecc4df (0x873dc00 0x8 0x552ed0 0x87393c0)
    0x61f6bf08 : 0xec81fc (0x873dc00 0x61f6bf30 0x1 0x575ed000)
    0x61f6bf28 : 0x552ea6 (0x8739240 0x0 0x0 0x0)
    0x61f6bf88 : 0x552eea (0x87393c0 0x2ab22a 0x61f6bfc8 0x22a90c)
    0x61f6bfc8 : 0x2a179c (0x87393c0 0x0 0x10 0x98b2cc4)
          Kernel Extensions in backtrace (with dependencies):
    com.checkpoint.kext.P4MacFilterScheme(1.0)@0x1766000->0x1775fff
    dependency: com.apple.iokit.IOStorageFamily(1.6.3)@0xf57000
    com.apple.iokit.IOAHCIBlockStorage(1.6.4)@0x14c3000->0x14d6fff
    dependency: com.apple.iokit.IOAHCIFamily(2.0.6)@0xebf000
    dependency: com.apple.iokit.IOStorageFamily(1.6.3)@0xf57000
    com.apple.driver.AppleAHCIPort(2.1.7)@0xec5000->0xed8fff
                dependency: com.apple.iokit.IOAHCIFamily(2.0.6)@0xebf000
    dependency: com.apple.iokit.IOPCIFamily(2.6.5)@0x909000
    com.apple.iokit.IOAHCIFamily(2.0.6)@0xebf000->0xec4fff
    com.apple.iokit.IOStorageFamily(1.6.3)@0xf57000->0xf6ffff
    BSD process name corresponding to current thread: kernel_task
    Mac OS version:
    10K549
    Kernel version:
    Darwin Kernel Version 10.8.0: Tue Jun  7 16:33:36 PDT 2011; root:xnu-1504.15.3~1/RELEASE_I386
    System model name: MacBookPro8,2 (Mac-94245A3940C91C80)
    System uptime in nanoseconds: 894813686994
    unloaded kexts:
    com.apple.driver.AppleUSBUHCI     4.2.0 (addr 0x13cb000, size 0x65536) - last unloaded 103878408642
    loaded kexts:
    com.zeobit.kext.Firewall        2.0.1
    com.sophos.kext.sav  7.3.0
    com.cisco.nke.ipsec    2.0.3
    com.checkpoint.kext.P4MacFilterScheme   1.0
    com.checkpoint.kext.FDECryptocore           1.0.0d1
    com.apple.filesystems.autofs            2.1.0
    com.apple.driver.AppleHWSensor   1.9.3d0
    com.apple.driver.AppleMikeyHIDDriver     1.2.0
    com.apple.driver.AudioAUUC           1.57
    com.apple.driver.AppleHDA 2.0.5f14
    com.apple.driver.AppleMikeyDriver           2.0.5f14
    com.apple.driver.AGPM        100.12.31
    com.apple.driver.IOBluetoothBNEPDriver 2.4.5f3
    com.apple.kext.ATIFramebuffer      6.3.6
    com.apple.driver.AppleUpstreamUserClient          3.5.7
    com.apple.driver.AppleMCCSControl          1.0.20
    com.apple.Dont_Steal_Mac_OS_X      7.0.0
    com.apple.iokit.CHUDUtils    364
    com.apple.iokit.CHUDProf    366
    com.apple.driver.AudioIPCDriver    1.1.6
    com.apple.driver.ACPI_SMC_PlatformPlugin          4.7.0a1
    com.apple.driver.AppleLPC  1.5.1
    com.apple.driver.AppleGraphicsControl     2.10.6
    com.apple.ATIRadeonX3000           6.3.6
    com.apple.kext.AppleSMCLMU        1.5.2d10
    com.apple.driver.AppleIntelHDGraphics    6.3.6
    com.apple.driver.AppleIntelSNBGraphicsFB          6.3.6
    com.apple.driver.SMCMotionSensor           3.0.1d2
    com.apple.driver.AppleUSBTCButtons        201.6
    com.apple.driver.AppleUSBTCKeyboard    201.6
    com.apple.driver.AppleIRController            303.8
    com.apple.iokit.SCSITaskUserClient            2.6.8
    com.apple.BootCache            31.1
    com.apple.AppleFSCompression.AppleFSCompressionTypeZlib  1.0.0d1
    com.apple.iokit.IOAHCIBlockStorage           1.6.4
    com.apple.driver.AppleUSBHub      4.2.4
    com.apple.driver.AirPort.Brcm4331           433.11.5
    com.apple.driver.AppleSDXC           1.0.3
    com.apple.iokit.AppleBCM5701Ethernet   3.0.5b8
    com.apple.driver.AppleEFINVRAM  1.4.0
    com.apple.driver.AppleSmartBatteryManager      160.0.0
    com.apple.driver.AppleAHCIPort     2.1.7
    com.apple.driver.AppleFWOHCI      4.7.3
    com.apple.driver.AppleUSBEHCI     4.2.4
    com.apple.driver.AppleACPIButtons           1.3.6
    com.apple.driver.AppleRTC  1.3.1
    com.apple.driver.AppleHPET           1.5
    com.apple.driver.AppleSMBIOS       1.7
    com.apple.driver.AppleACPIEC        1.3.6
    com.apple.driver.AppleAPIC            1.4
    com.apple.driver.AppleIntelCPUPowerManagementClient          142.6.0
    com.apple.security.sandbox 1
    com.apple.security.quarantine        0
    com.apple.nke.applicationfirewall   2.1.14
    com.apple.driver.AppleIntelCPUPowerManagement        142.6.0
    com.apple.iokit.IOSCSIBlockCommandsDevice       2.6.8 - last loaded 527142116865
    com.apple.iokit.IOUSBMassStorageClass     2.6.7
    com.apple.driver.AppleProfileReadCounterAction            67
    com.apple.driver.AppleProfileTimestampAction   67
    com.apple.driver.AppleProfileThreadInfoAction   67
    com.apple.driver.AppleProfileRegisterStateAction            67
    com.apple.driver.AppleProfileKEventAction          67
    com.apple.driver.AppleProfileCallstackAction        69
    com.apple.driver.DspFuncLib          2.0.5f14
    com.apple.driver.AppleSMBusController    1.0.10d0
    com.apple.iokit.IOFireWireIP           2.0.3
    com.apple.iokit.IOSurface     74.2
    com.apple.iokit.IOBluetoothSerialManager            2.4.5f3
    com.apple.iokit.IOSerialFamily         10.0.3
    com.apple.iokit.CHUDKernLib          365
    com.apple.iokit.IOAudioFamily         1.8.3fc2
    com.apple.kext.OSvKernDSPLib      1.3
    com.apple.driver.AppleHDAController        2.0.5f14
    com.apple.iokit.IOHDAFamily           2.0.5f14
    com.apple.iokit.AppleProfileFamily 61
    com.apple.driver.IOPlatformPluginFamily 4.7.0a1
    com.apple.driver.AppleSMBusPCI   1.0.10d0
    com.apple.driver.AppleBacklightExpert     1.0.1
    com.apple.kext.ATI6000Controller 6.3.6
    com.apple.kext.ATISupport  6.3.6
    com.apple.iokit.IONDRVSupport      2.2.1
    com.apple.iokit.IOGraphicsFamily    2.2.1
    com.apple.driver.AppleSMC 3.1.0d5
    com.apple.driver.AppleThunderboltDPInAdapter            1.3.2
    com.apple.driver.AppleThunderboltDPAdapterFamily    1.3.2
    com.apple.driver.AppleThunderboltPCIDownAdapter     1.1.6
    com.apple.driver.BroadcomUSBBluetoothHCIController  2.4.5f3
    com.apple.driver.AppleUSBBluetoothHCIController         2.4.5f3
    com.apple.iokit.IOBluetoothFamily  2.4.5f3
    com.apple.driver.AppleUSBMultitouch       207.7
    com.apple.iokit.IOUSBHIDDriver     4.2.0
    com.apple.iokit.IOSCSIMultimediaCommandsDevice        2.6.8
    com.apple.iokit.IOBDStorageFamily 1.6
    com.apple.iokit.IODVDStorageFamily          1.6
    com.apple.iokit.IOCDStorageFamily 1.6.1
    com.apple.driver.AppleUSBMergeNub       4.2.4
    com.apple.driver.AppleUSBComposite        3.9.0
    com.apple.driver.XsanFilter 402.1
    com.apple.iokit.IOAHCISerialATAPI 1.2.6
    com.apple.iokit.IOSCSIArchitectureModelFamily   2.6.8
    com.apple.driver.AppleThunderboltNHI    1.2.6
    com.apple.iokit.IOThunderboltFamily         1.4.9
    com.apple.iokit.IOUSBUserClient     4.2.4
    com.apple.iokit.IO80211Family       320.1
    com.apple.iokit.IONetworkingFamily           1.10
    com.apple.iokit.IOAHCIFamily          2.0.6
    com.apple.iokit.IOFireWireFamily    4.2.6
    com.apple.iokit.IOUSBFamily            4.2.4
    com.apple.driver.AppleEFIRuntime            1.4.0
    com.apple.iokit.IOHIDFamily            1.6.6
    com.apple.iokit.IOSMBusFamily       1.1
    com.apple.kext.AppleMatch 1.0.0d1
    com.apple.security.TMSafetyNet     6
    com.apple.driver.DiskImages           289
    com.apple.iokit.IOStorageFamily      1.6.3
    com.apple.driver.AppleACPIPlatform         1.3.6
    com.apple.iokit.IOPCIFamily 2.6.5
    com.apple.iokit.IOACPIFamily          1.3.0
    Model: MacBookPro8,2, BootROM MBP81.0047.B26, 4 processors, Intel Core i7, 2.4 GHz, 4 GB, SMC 1.69f3
    Graphics: AMD Radeon HD 6770M, AMD Radeon HD 6770M, PCIe, 1024 MB
    Graphics: Intel HD Graphics 3000, Intel HD Graphics 3000, Built-In, 384 MB
    Memory Module: global_name
    AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0xD6), Broadcom BCM43xx 1.0 5.100.198.104.5)
    Bluetooth: Version 2.4.5f3, 2 service, 12 devices, 1 incoming serial ports
    Network Service: Ethernet, Ethernet, en0
    Serial ATA Device: Hitachi HTS547575A9E384, 698.64 GB
    Serial ATA Device: MATSHITADVD-R   UJ-8A8
    USB Device: Hub, 0x0424 (SMSC), 0x2513, 0xfd100000 / 2
    USB Device: Microsoft® Nano Transceiver v1.0, 0x045e  (Microsoft Corporation), 0x0773, 0xfd120000 / 4
    USB Device: IR Receiver, 0x05ac  (Apple Inc.), 0x8242, 0xfd110000 / 3
    USB Device: Hub, 0x0424 (SMSC), 0x2513, 0xfa100000 / 3
    USB Device: My Passport 0746, 0x1058  (Western Digital Technologies, Inc.), 0x0746, 0xfa130000 / 6
    USB Device: BRCM2070 Hub, 0x0a5c  (Broadcom Corp.), 0x4500, 0xfa110000 / 5
    USB Device: Bluetooth USB Host Controller, 0x05ac  (Apple Inc.), 0x821a, 0xfa113000 / 9
    USB Device: Apple Internal Keyboard / Trackpad, 0x05ac  (Apple Inc.), 0x0252, 0xfa120000 / 4
    USB Device: FaceTime HD Camera (Built-in), 0x05ac  (Apple Inc.), 0x8509, 0xfa200000 / 2
    Interval Since Last Panic Report:  213 sec
    Panics Since Last Report:          5
    Anonymous UUID: 2DD98ED2-47F9-406B-A38B-ED8B9424B7B5
    Tue May 29 11:45:25 2012
    Machine-check capabilities (cpu 4) 0x0000000000000c09:
    family: 6 model: 42 stepping: 7 microcode: 26
    Intel(R) Core(TM) i7-2760QM CPU @ 2.40GHz
    9 error-reporting banks
    threshold-based error status present
    extended corrected memory error handling present
    Machine-check status 0x0000000000000005:
    restart IP valid
    machine-check in progress
    MCA error-reporting registers:
    IA32_MC0_STATUS(0x401): 0x0000000000000000 invalid
    IA32_MC1_STATUS(0x405): 0x0980000000000000 invalid
    IA32_MC2_STATUS(0x409): 0xb200000000000019 valid
      MCA error code:            0x0019
      Model specific error code: 0x0000
      Other information:         0x00000000
      Threshold-based status:    No tracking
      Status bits:
       Processor context corrupt
       Error enabled
       Uncorrected error
    IA32_MC3_STATUS(0x40d): 0x0000000000000000 invalid
    IA32_MC4_STATUS(0x411): 0x0000000000000000 invalid
    IA32_MC5_STATUS(0x415): 0x0020000000000000 invalid
    IA32_MC6_STATUS(0x419): 0x0020000000000000 invalid
    IA32_MC7_STATUS(0x41d): 0x0020000000000000 invalid
    Package 0 logged:
    IA32_MC8_STATUS(0x421): 0x0020000000000000 invalid
    panic(cpu 5 caller 0x2aaf41): Machine Check at 0x01149a81, thread:0x85d67a8, trapno:0x12, err:0x0,registers:
    CR0: 0x8001003b, CR2: 0x002fd000, CR3: 0x00100000, CR4: 0x00040660
    EAX: 0x00000031, EBX: 0x01159998, ECX: 0x00000001, EDX: 0x01158ee0
    ESP: 0x61f53cf0, EBP: 0x61f53d48, ESI: 0x00000000, EDI: 0x085a8800
    EFL: 0x00000002, EIP: 0x01149a81
    Backtrace (CPU 5), Frame : Return Address (4 potential args on stack)
    0x576f5fb8 : 0x21b837 (0x5dd7fc 0x576f5fec 0x223ce1 0x0)
    0x576f6008 : 0x2aaf41 (0x59dfe4 0x59e0d1 0x1149a81 0x85d67a8)
    0x576f60f8 : 0x2a29f2 (0x1 0x83c0 0x5 0x0)
    0x61f53d48 : 0x1139ee7 (0x576150a8 0x7 0x85a8800 0x0)
    0x61f53e28 : 0x113b850 (0xffffffff 0x7fffffff 0x0 0x0)
    0x61f53f28 : 0x2ad0c5 (0xffffffff 0x7fffffff 0x6b07 0x5771c000)
    0x61f53f48 : 0x225bba (0x5771c49c 0x80f2e89b 0x7a 0x5771c488)
    0x61f53fa8 : 0x22810b (0x0 0x2280f4 0x0 0xab6a884)
    0x61f53fc8 : 0x2a179c (0x0 0xffffffff 0x10 0xa56e520)
          Kernel Extensions in backtrace (with dependencies):
    com.apple.driver.AppleIntelCPUPowerManagement(142.6.0)@0x1138000->0x115bfff
    BSD process name corresponding to current thread: kernel_task
    Mac OS version:
    10K549
    Kernel version:
    Darwin Kernel Version 10.8.0: Tue Jun  7 16:33:36 PDT 2011; root:xnu-1504.15.3~1/RELEASE_I386
    System model name: MacBookPro8,2 (Mac-94245A3940C91C80)
    System uptime in nanoseconds: 526715803208
    unloaded kexts:
    com.apple.driver.AppleUSBUHCI     4.2.0 (addr 0x13cb000, size 0x65536) - last unloaded 304149660436
    loaded kexts:
    com.zeobit.kext.Firewall        2.0.1 - last loaded 216198961826
    com.sophos.kext.sav  7.3.0
    com.cisco.nke.ipsec    2.0.3
    com.checkpoint.kext.P4MacFilterScheme   1.0
    com.checkpoint.kext.FDECryptocore           1.0.0d1
    com.apple.filesystems.autofs            2.1.0
    com.apple.driver.AppleHWSensor   1.9.3d0
    com.apple.driver.AppleMikeyHIDDriver     1.2.0
    com.apple.driver.AudioAUUC           1.57
    com.apple.driver.AGPM        100.12.31
    com.apple.driver.AppleHDA 2.0.5f14
    com.apple.driver.AppleMikeyDriver           2.0.5f14
    com.apple.kext.ATIFramebuffer      6.3.6
    com.apple.driver.AppleUpstreamUserClient          3.5.7
    com.apple.driver.AppleMCCSControl          1.0.20
    com.apple.driver.SMCMotionSensor           3.0.1d2
    com.apple.Dont_Steal_Mac_OS_X      7.0.0
    com.apple.iokit.CHUDUtils    364
    com.apple.iokit.CHUDProf    366
    com.apple.driver.AudioIPCDriver    1.1.6
    com.apple.driver.ACPI_SMC_PlatformPlugin          4.7.0a1
    com.apple.driver.AppleLPC  1.5.1
    com.apple.driver.AppleGraphicsControl     2.10.6
    com.apple.kext.AppleSMCLMU        1.5.2d10
    com.apple.ATIRadeonX3000           6.3.6
    com.apple.driver.AppleIntelHDGraphics    6.3.6
    com.apple.driver.AppleIntelSNBGraphicsFB          6.3.6
    com.apple.driver.AppleUSBTCButtons        201.6
    com.apple.driver.AppleUSBTCKeyboard    201.6
    com.apple.driver.AppleIRController            303.8
    com.apple.iokit.SCSITaskUserClient            2.6.8
    com.apple.BootCache            31.1
    com.apple.AppleFSCompression.AppleFSCompressionTypeZlib  1.0.0d1
    com.apple.iokit.IOAHCIBlockStorage           1.6.4
    com.apple.driver.AppleFWOHCI      4.7.3
    com.apple.driver.AirPort.Brcm4331           433.11.5
    com.apple.driver.AppleSDXC           1.0.3
    com.apple.iokit.AppleBCM5701Ethernet   3.0.5b8
    com.apple.driver.AppleUSBHub      4.2.4
    com.apple.driver.AppleEFINVRAM  1.4.0
    com.apple.driver.AppleSmartBatteryManager      160.0.0
    com.apple.driver.AppleAHCIPort     2.1.7
    com.apple.driver.AppleACPIButtons           1.3.6
    com.apple.driver.AppleUSBEHCI     4.2.4
    com.apple.driver.AppleRTC  1.3.1
    com.apple.driver.AppleHPET           1.5
    com.apple.driver.AppleSMBIOS       1.7
    com.apple.driver.AppleACPIEC        1.3.6
    com.apple.driver.AppleAPIC            1.4
    com.apple.driver.AppleIntelCPUPowerManagementClient          142.6.0
    com.apple.security.sandbox 1
    com.apple.security.quarantine        0
    com.apple.nke.applicationfirewall   2.1.14
    com.apple.driver.AppleIntelCPUPowerManagement        142.6.0
    com.apple.iokit.IOSCSIBlockCommandsDevice       2.6.8
    com.apple.driver.AppleProfileReadCounterAction            67
    com.apple.driver.AppleProfileTimestampAction   67
    com.apple.driver.AppleProfileThreadInfoAction   67
    com.apple.driver.AppleProfileRegisterStateAction            67
    com.apple.driver.AppleProfileKEventAction          67
    com.apple.driver.AppleProfileCallstackAction        69
    com.apple.driver.DspFuncLib          2.0.5f14
    com.apple.driver.AppleSMBusController    1.0.10d0
    com.apple.iokit.IOUSBMassStorageClass     2.6.7
    com.apple.iokit.IOFireWireIP           2.0.3
    com.apple.iokit.IOSurface     74.2
    com.apple.iokit.IOBluetoothSerialManager            2.4.5f3
    com.apple.iokit.IOSerialFamily         10.0.3
    com.apple.iokit.CHUDKernLib          365
    com.apple.iokit.IOAudioFamily         1.8.3fc2
    com.apple.kext.OSvKernDSPLib      1.3
    com.apple.driver.AppleHDAController        2.0.5f14
    com.apple.iokit.IOHDAFamily           2.0.5f14
    com.apple.iokit.AppleProfileFamily 61
    com.apple.driver.IOPlatformPluginFamily 4.7.0a1
    com.apple.driver.AppleSMBusPCI   1.0.10d0
    com.apple.driver.AppleBacklightExpert     1.0.1
    com.apple.driver.AppleSMC 3.1.0d5
    com.apple.kext.ATI6000Controller 6.3.6
    com.apple.kext.ATISupport  6.3.6
    com.apple.iokit.IONDRVSupport      2.2.1
    com.apple.iokit.IOGraphicsFamily    2.2.1
    com.apple.driver.BroadcomUSBBluetoothHCIController  2.4.5f3
    com.apple.driver.AppleUSBBluetoothHCIController         2.4.5f3
    com.apple.iokit.IOBluetoothFamily  2.4.5f3
    com.apple.driver.AppleThunderboltDPInAdapter            1.3.2
    com.apple.driver.AppleThunderboltDPAdapterFamily    1.3.2
    com.apple.driver.AppleThunderboltPCIDownAdapter     1.1.6
    com.apple.driver.AppleUSBMultitouch       207.7
    com.apple.iokit.IOUSBHIDDriver     4.2.0
    com.apple.iokit.IOSCSIMultimediaCommandsDevice        2.6.8
    com.apple.iokit.IOBDStorageFamily 1.6
    com.apple.iokit.IODVDStorageFamily          1.6
    com.apple.iokit.IOCDStorageFamily 1.6.1
    com.apple.driver.AppleUSBMergeNub       4.2.4
    com.apple.driver.AppleUSBComposite        3.9.0
    com.apple.driver.XsanFilter 402.1
    com.apple.iokit.IOAHCISerialATAPI 1.2.6
    com.apple.iokit.IOSCSIArchitectureModelFamily   2.6.8
    com.apple.driver.AppleThunderboltNHI    1.2.6
    com.apple.iokit.IOThunderboltFamily         1.4.9
    com.apple.iokit.IOFireWireFamily    4.2.6
    com.apple.iokit.IO80211Family       320.1
    com.apple.iokit.IONetworkingFamily           1.10
    com.apple.iokit.IOUSBUserClient     4.2.4
    com.apple.iokit.IOAHCIFamily          2.0.6
    com.apple.driver.AppleEFIRuntime            1.4.0
    com.apple.iokit.IOHIDFamily            1.6.6
    com.apple.iokit.IOUSBFamily            4.2.4
    com.apple.iokit.IOSMBusFamily       1.1
    com.apple.kext.AppleMatch 1.0.0d1
    com.apple.security.TMSafetyNet     6
    com.apple.driver.DiskImages           289
    com.apple.iokit.IOStorageFamily      1.6.3
    com.apple.driver.AppleACPIPlatform         1.3.6
    com.apple.iokit.IOPCIFamily 2.6.5
    com.apple.iokit.IOACPIFamily          1.3.0
    Model: MacBookPro8,2, BootROM MBP81.0047.B26, 4 processors, Intel Core i7, 2.4 GHz, 4 GB, SMC 1.69f3
    Graphics: AMD Radeon HD 6770M, AMD Radeon HD 6770M, PCIe, 1024 MB
    Graphics: Intel HD Graphics 3000, Intel HD Graphics 3000, Built-In, 384 MB
    Memory Module: global_name
    AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0xD6), Broadcom BCM43xx 1.0 5.100.198.104.5)
    Bluetooth: Version 2.4.5f3, 2 service, 12 devices, 1 incoming serial ports
    Network Service: Ethernet, Ethernet, en0
    Serial ATA Device: Hitachi HTS547575A9E384, 698.64 GB
    Serial ATA Device: MATSHITADVD-R   UJ-8A8
    USB Device: FaceTime HD Camera (Built-in), 0x05ac  (Apple Inc.), 0x8509, 0xfa200000 / 3
    USB Device: Hub, 0x0424 (SMSC), 0x2513, 0xfa100000 / 2
    USB Device: My Passport 0746, 0x1058  (Western Digital Technologies, Inc.), 0x0746, 0xfa130000 / 6
    USB Device: Apple Internal Keyboard / Trackpad, 0x05ac  (Apple Inc.), 0x0252, 0xfa120000 / 5
    USB Device: BRCM2070 Hub, 0x0a5c  (Broadcom Corp.), 0x4500, 0xfa110000 / 4
    USB Device: Bluetooth USB Host Controller, 0x05ac  (Apple Inc.), 0x821a, 0xfa113000 / 7
    USB Device: Hub, 0x0424 (SMSC), 0x2513, 0xfd100000 / 2
    USB Device: Microsoft® Nano Transceiver v1.0, 0x045e  (Microsoft Corporation), 0x0773, 0xfd120000 / 4
    USB Device: IR Receiver, 0x05ac  (Apple Inc.), 0x8242, 0xfd110000 / 3
    Interval Since Last Panic Report:  227 sec
    Panics Since Last Report:          6
    Anonymous UUID: 2DD98ED2-47F9-406B-A38B-ED8B9424B7B5
    Tue May 29 13:03:07 2012
    Machine-check capabilities (cpu 7) 0x0000000000000c09:
    family: 6 model: 42 stepping: 7 microcode: 26
    Intel(R) Core(TM) i7-2760QM CPU @ 2.40GHz
    9 error-reporting banks
    threshold-based error status present
    extended corrected memory error handling present
    Machine-check status 0x0000000000000005:
    restart IP valid
    machine-check in progress
    MCA error-reporting registers:
    IA32_MC0_STATUS(0x401): 0x0000000000000000 invalid
    IA32_MC1_STATUS(0x405): 0x0980000000000000 invalid
    IA32_MC2_STATUS(0x409): 0x0000000000000000 invalid
    IA32_MC3_STATUS(0x40d): 0x0000000000000000 invalid
    IA32_MC4_STATUS(0x411): 0x0000000000000000 invalid
    IA32_MC5_STATUS(0x415): 0x0020000000000000 invalid
    IA32_MC6_STATUS(0x419): 0x0020000000000000 invalid
    IA32_MC7_STATUS(0x41d): 0x0020000000000000 invalid
    Package 0 logged:
    IA32_MC8_STATUS(0x421): 0x0020000000000000 invalid
    panic(cpu 1 caller 0x2aaf41): Machine Check at 0x01149a81, thread:0x85d4000, trapno:0x12, err:0x0,registers:
    CR0: 0x8001003b, CR2: 0x00779000, CR3: 0x00100000, CR4: 0x00040660
    EAX: 0x00000001, EBX: 0x01159368, ECX: 0x00000001, EDX: 0x01158ee0
    ESP: 0x577d3cf0, EBP: 0x577d3d48, ESI: 0x00000000, EDI: 0x085a8800
    EFL: 0x00000002, EIP: 0x01149a81
    Backtrace (CPU 1), Frame : Return Address (4 potential args on stack)
    0x5769ffb8 : 0x21b837 (0x5dd7fc 0x5769ffec 0x223ce1 0x0)
    0x576a0008 : 0x2aaf41 (0x59dfe4 0x59e0d1 0x1149a81 0x85d4000)
    0x576a00f8 : 0x2a29f2 (0x1 0xd3f7d389 0x850fd885 0x2b05)
    0x577d3d48 : 0x1139ee7 (0x575f50a8 0x1 0x85a8800 0x0)
    0x577d3e28 : 0x113b850 (0xffffffff 0x7fffffff 0x0 0x0)
    0x577d3f28 : 0x2ad0c5 (0xffffffff 0x7fffffff 0x0 0x575fe000)
    0x577d3f48 : 0x225bba (0x575fe49c 0x480f2eb5 0x428 0x575fe488)
    0x577d3fa8 : 0x22810b (0x85d4000 0x2280f4 0x0 0x575fe000)
    0x577d3fc8 : 0x2a179c (0x0 0xffffffff 0x10 0x89d8fc0)
          Kernel Extensions in backtrace (with dependencies):
    com.apple.driver.AppleIntelCPUPowerManagement(142.6.0)@0x1138000->0x115bfff
    BSD process name corresponding to current thread: kernel_task
    Mac OS version:
    10K549
    Kernel version:
    Darwin Kernel Version 10.8.0: Tue Jun  7 16:33:36 PDT 2011; root:xnu-1504.15.3~1/RELEASE_I386
    System model name: MacBookPro8,2 (Mac-94245A3940C91C80)
    System uptime in nanoseconds: 4571389570091
    unloaded kexts:
    com.apple.driver.AppleUSBUHCI     4.2.0 (addr 0x13cb000, size 0x65536) - last unloaded 292955085168
    loaded kexts:
    com.zeobit.kext.Firewall        2.0.1 - last loaded 205146398377
    com.sophos.kext.sav  7.3.0
    com.cisco.nke.ipsec    2.0.3
    com.checkpoint.kext.P4MacFilterScheme   1.0
    com.checkpoint.kext.FDECryptocore           1.0.0d1
    com.apple.filesystems.autofs            2.1.0
    com.apple.driver.AppleHWSensor   1.9.3d0
    com.apple.driver.AppleMikeyHIDDriver     1.2.0
    com.apple.driver.AudioAUUC           1.57
    com.apple.driver.AppleMikeyDriver           2.0.5f14
    com.apple.driver.AppleHDA 2.0.5f14
    com.apple.driver.AGPM        100.12.31
    com.apple.driver.AppleUpstreamUserClient          3.5.7
    com.apple.driver.AppleMCCSControl          1.0.20
    com.apple.kext.ATIFramebuffer      6.3.6
    com.apple.driver.AppleIntelHDGraphics    6.3.6
    com.apple.driver.SMCMotionSensor           3.0.1d2
    com.apple.Dont_Steal_Mac_OS_X      7.0.0
    com.apple.iokit.CHUDUtils    364
    com.apple.iokit.CHUDProf    366
    com.apple.driver.AudioIPCDriver    1.1.6
    com.apple.driver.ACPI_SMC_PlatformPlugin          4.7.0a1
    com.apple.driver.AppleLPC  1.5.1
    com.apple.driver.AppleGraphicsControl     2.10.6
    com.apple.kext.AppleSMCLMU        1.5.2d10
    com.apple.ATIRadeonX3000           6.3.6
    com.apple.driver.AppleIntelSNBGraphicsFB          6.3.6
    com.apple.driver.AppleUSBTCButtons        201.6
    com.apple.driver.AppleUSBTCKeyboard    201.6
    com.apple.driver.AppleIRController            303.8
    com.apple.iokit.SCSITaskUserClient            2.6.8
    com.apple.BootCache            31.1
    com.apple.AppleFSCompression.AppleFSCompressionTypeZlib  1.0.0d1
    com.apple.iokit.IOAHCIBlockStorage           1.6.4
    com.apple.driver.AppleUSBHub      4.2.4
    com.apple.driver.AppleFWOHCI      4.7.3
    com.apple.driver.AirPort.Brcm4331           433.11.5
    com.apple.driver.AppleSDXC           1.0.3
    com.apple.iokit.AppleBCM5701Ethernet   3.0.5b8
    com.apple.driver.AppleEFINVRAM  1.4.0
    com.apple.driver.AppleSmartBatteryManager      160.0.0
    com.apple.driver.AppleAHCIPort     2.1.7
    com.apple.driver.AppleUSBEHCI     4.2.4
    com.apple.driver.AppleACPIButtons           1.3.6
    com.apple.driver.AppleRTC  1.3.1
    com.apple.driver.AppleHPET           1.5
    com.apple.driver.AppleSMBIOS       1.7
    com.apple.driver.AppleACPIEC        1.3.6
    com.apple.driver.AppleAPIC            1.4
    com.apple.driver.AppleIntelCPUPowerManagementClient          142.6.0
    com.apple.security.sandbox 1
    com.apple.security.quarantine        0
    com.apple.nke.applicationfirewall   2.1.14
    com.apple.driver.AppleIntelCPUPowerManagement        142.6.0
    com.apple.iokit.IOSCSIBlockCommandsDevice       2.6.8
    com.apple.driver.AppleProfileReadCounterAction            67
    com.apple.driver.AppleProfileTimestampAction   67
    com.apple.driver.AppleProfileThreadInfoAction   67
    com.apple.driver.AppleProfileRegisterStateAction            67
    com.apple.driver.AppleProfileKEventAction          67
    com.apple.driver.AppleProfileCallstackAction        69
    com.apple.driver.DspFuncLib          2.0.5f14
    com.apple.driver.AppleSMBusController    1.0.10d0
    com.apple.iokit.IOFireWireIP           2.0.3
    com.apple.iokit.IOSurface     74.2
    com.apple.iokit.IOBluetoothSerialManager            2.4.5f3
    com.apple.iokit.IOSerialFamily         10.0.3
    com.apple.iokit.CHUDKernLib          365
    com.apple.iokit.IOAudioFamily         1.8.3fc2
    com.apple.kext.OSvKernDSPLib      1.3
    com.apple.driver.AppleHDAController        2.0.5f14
    com.apple.iokit.IOHDAFamily           2.0.5f14
    com.apple.iokit.AppleProfileFamily 61
    com.apple.driver.IOPlatformPluginFamily 4.7.0a1
    com.apple.driver.AppleSMBusPCI   1.0.10d0
    com.apple.driver.AppleBacklightExpert     1.0.1
    com.apple.driver.AppleSMC 3.1.0d5
    com.apple.iokit.IONDRVSupport      2.2.1
    com.apple.kext.ATI6000Controller 6.3.6
    com.apple.kext.ATISupport  6.3.6
    com.apple.iokit.IOGraphicsFamily    2.2.1
    com.apple.iokit.IOUSBMassStorageClass     2.6.7
    com.apple.driver.AppleThunderboltDPInAdapter            1.3.2
    com.apple.driver.AppleThunderboltDPAdapterFamily    1.3.2
    com.apple.driver.AppleThunderboltPCIDownAdapter     1.1.6
    com.apple.driver.BroadcomUSBBluetoothHCIController  2.4.5f3
    com.apple.driver.AppleUSBBluetoothHCIController         2.4.5f3
    com.apple.iokit.IOBluetoothFamily  2.4.5f3
    com.apple.driver.AppleUSBMultitouch       207.7
    com.apple.iokit.IOUSBHIDDriver     4.2.0
    com.apple.driver.AppleUSBMergeNub       4.2.4
    com.apple.driver.AppleUSBComposite        3.9.0
    com.apple.iokit.IOSCSIMultimediaCommandsDevice        2.6.8
    com.apple.iokit.IOBDStorageFamily 1.6
    com.apple.iokit.IODVDStorageFamily          1.6
    com.apple.iokit.IOCDStorageFamily 1.6.1
    com.apple.driver.XsanFilter 402.1
    com.apple.iokit.IOAHCISerialATAPI 1.2.6
    com.apple.iokit.IOSCSIArchitectureModelFamily   2.6.8
    com.apple.driver.AppleThunderboltNHI    1.2.6
    com.apple.iokit.IOThunderboltFamily         1.4.9
    com.apple.iokit.IOUSBUserClient     4.2.4
    com.apple.iokit.IOFireWireFamily    4.2.6
    com.apple.iokit.IO80211Family       320.1
    com.apple.iokit.IONetworkingFamily           1.10
    com.apple.iokit.IOAHCIFamily          2.0.6
    com.apple.iokit.IOUSBFamily            4.2.4
    com.apple.driver.AppleEFIRuntime            1.4.0
    com.apple.iokit.IOHIDFamily            1.6.6
    com.apple.iokit.IOSMBusFamily       1.1
    com.apple.kext.AppleMatch 1.0.0d1
    com.apple.security.TMSafetyNet     6
    com.apple.driver.DiskImages           289
    com.apple.iokit.IOStorageFamily      1.6.3
    com.apple.driver.AppleACPIPlatform         1.3.6
    com.apple.iokit.IOPCIFamily 2.6.5
    com.apple.iokit.IOACPIFamily          1.3.0
    Model: MacBookPro8,2, BootROM MBP81.0047.B26, 4 processors, Intel Core i7, 2.4 GHz, 4 GB, SMC 1.69f3
    Graphics: AMD Radeon HD 6770M, AMD Radeon HD 6770M, PCIe, 1024 MB
    Graphics: Intel HD Graphics 3000, Intel HD Graphics 3000, Built-In, 384 MB
    Memory Module: global_name
    AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0xD6), Broadcom BCM43xx 1.0 5.100.198.104.5)
    Bluetooth: Version 2.4.5f3, 2 service, 12 devices, 1 incoming serial ports
    Network Service: Ethernet, Ethernet, en0
    Serial ATA Device: Hitachi HTS547575A9E384, 698.64 GB
    Serial ATA Device: MATSHITADVD-R   UJ-8A8
    USB Device: FaceTime HD Camera (Built-in), 0x05ac  (Apple Inc.), 0x8509, 0xfa200000 / 3
    USB Device: Hub, 0x0424 (SMSC), 0x2513, 0xfa100000 / 2
    USB Device: My Passport 0746, 0x1058  (Western Digital Technologies, Inc.), 0x0746, 0xfa130000 / 6
    USB Device: Apple Internal Keyboard / Trackpad, 0x05ac  (Apple Inc.), 0x0252, 0xfa120000 / 5
    USB Device: BRCM2070 Hub, 0x0a5c  (Broadcom Corp.), 0x4500, 0xfa110000 / 4
    USB Device: Bluetooth USB Host Controller, 0x05ac  (Apple Inc.), 0x821a, 0xfa113000 / 9
    USB Device: Hub, 0x0424 (SMSC), 0x2513, 0xfd100000 / 2
    USB Device: Microsoft® Nano Transceiver v1.0, 0x045e  (Microsoft Corporation), 0x0773, 0xfd120000 / 4
    USB Device: IR Receiver, 0x05ac  (Apple Inc.), 0x8242, 0xfd110000 / 3

    I didn't even know that i had little Snitch etc!? This is my work Mac and Sophos, Chk Point etc are standard installs by my admin. I installed Mackeeper to help with these issues but unfortunately, it seems that its part of the problem.
    You don't have LS installed.  The immediate culprits are the third party installations that installed these kext's.
    com.zeobit.kext.Firewall 2.0.1
    com.sophos.kext.sav  7.3.0
    com.cisco.nke.ipsec    2.0.3
    com.checkpoint.kext.P4MacFilterScheme   1.0
    com.checkpoint.kext.FDECryptoco
    So MacKeeper is always the first to go (com.zeobit.kext.Firewall).
    Next sophos stuff.
    Then the checkpoint stuff.
    Finally the cisco stuff.
    Booting in safe mode will suppress all this stuff that's quick way to see if one of these is the culprit.

  • Need help with repeater

    I have need to display a column of image that the name is
    returned from a CFC as a array. I can populate the accoridain and
    appropriate panel just fine. What I am having a problem with is
    when I roll over the image I want to change the source of another
    image to use the same image name. I am including my code below. I
    appreciate any help.
    private function setLargeImage():void
    imgLargeVehicle.source = "/images/" +
    acShowroom.selectedChild.label + "/large_image/lg_" +
    lbImageName.text;
    <mx:Accordion x="111" y="176" width="190" height="370"
    id="acShowroom" creationComplete="initShowroom();"
    change="getShowroomModels();" fontFamily="Arial" fontSize="14"
    fontWeight="bold" color="#FFFFFF" backgroundAlpha="0.85"
    backgroundColor="#CCCCCC" borderThickness="2" themeColor="#515151"
    cornerRadius="0" fillAlphas="[0.5, 1.0]" fillColors="[#6C6C6C,
    #6C6C6C]" borderColor="#3B3B3B" borderStyle="outset">
    <mx:Canvas label="Ford" width="100%" height="100%"
    themeColor="#000000" id="acFord">
    <mx:Panel id="plFordVehicles" paddingBottom="1"
    paddingLeft="1" paddingRight="1" paddingTop="1">
    <mx:Repeater id="rptFordVehicles"
    dataProvider="{qryInventory.getDistinctShowroom.lastResult}">
    <mx:Label id="lbImageName"
    text="{rptFordVehicles.currentItem}" fontFamily="arial"
    color="black"/>
    <mx:Image id="imgThumb"
    source="/images/showroom/{acShowroom.selectedChild.label}/thumbs/{rptFordVehicles.current Item}"
    mouseOver="setLargeImage();"/>
    </mx:Repeater>
    </mx:Panel>

    Thanks Christopher but I found the answer a few minutes ago
    myself Here is what worked for me:
    private function setLargeImage(name:String):void
    imgLargeVehicle.source = "/images/showroom/" +
    acShowroom.selectedChild.label + "/large_image/lg_" + name;
    <mx:Repeater id="rptFordVehicles"
    dataProvider="{qryInventory.getDistinctShowroom.lastResult}">
    <mx:Image id="imgThumb"
    source="/images/showroom/{acShowroom.selectedChild.label}/thumbs/{rptFordVehicles.current Item}"
    name="{rptFordVehicles.currentItem}"
    mouseOver="setLargeImage(event.currentTarget.getRepeaterItem());"/>
    </mx:Repeater>

  • Help with repeating region server behavior

    Using instructions in David Powers' book, I've been able to connect to a PHP database and list records in a table using the repeating region server behavior.
    I now have a table like the following example:
    Header 1
    Header 2
    Album
    Image
    Birds
    Bald Eagle
    Birds
    Great Egret
    Birds
    Meadowlark
    Butterflies
    American Lady
    Butterflies
    Common Buckeye
    Butterflies
    Monarch
    Mammals
    Deer
    Mammals
    Flying Squirrel
    Mammals
    Raccoon
    etc.
    etc.
    Is there a way to make the table like the following?
    Header 1
    Header 2
    Album
    Image
    Birds
    Bald Eagle
    Great Egret
    Meadowlark
    Butterflies
    American Lady
    Common Buckeye
    Monarch
    Mammals
    Deer
    Flying Squirrel
    Raccoon
    etc.
    etc.
    Thank you for helping a novice with this.

    yubinax wrote:
    i downloaded a FREE RANDOM SERVER BEHAVIOR ON THIS SIET
    This is a user-to-user forum for the (discontinued) Dreamweaver extension 'ADDT' which doesn´t come with such a server behaviour. BTW, it´s hard to guess which extension you´re referring to exactly, and I suggest contacting the developer of that extension for help.
    Cheers,
    Günter

  • Help with repeating frame delay

    I have this movie in which basically a screen is supposed to come on, hold for 15 seconds, move to the next one, (a little bit of tween in between) hold for 15 seconds, move to the next one, etc. But the whole time there is also a button which enables the viewer to go to the next screen before the 15 seconds have elapsed.
    My initial solution for this was to just put in a lot of frames to make them last 15 seconds, but with many such instances repeating it becomes really hard for me to navigate the flash timeline.
    So I've found several scripts that would allow me to pause a frame, but they all have the same bug. For example, a frame action like this:
    stop();
    function wait() {
    play();
    clearInterval(myInterval);
    myInterval = setInterval(wait, 15000);
    It works fine the first time, and works fine if you don't touch the "play" button, but if you click it a few times, after a few times the screens no longer wait 15 seconds to move on, but start moving at random intervals.
    I found that script (and several similar ones which behave the same way) in some forum somewhere, but I noticed the posts were all very old. I haven't been able to find if newer action scripts and flash players support some better tricks to do this?
    Anyone know a workaround, some way to get all those frames to pause in their own time without their intervals piling up and messing each other up? Maybe some action to put into the "play" button? Or into the frame?
    Anything other than inserting endless amounts of identical frames into the timeline.
    Here's my flash file if you'd like to take a look. It's very basic, I admit I'm not very avid in flash. It's Flash8:
    https://www.yousendit.com/download/WTNMeEVRTXYzeUkwTVE9PQ
    and the swf:
    https://www.yousendit.com/download/WTNMeEVTTk04aU0wTVE9PQ
    I'll really appreciate every help. Even if i need newer flash, all advice welcome.

    I don't know if I did something wrong but I get this error when I do that:
    **Error** Scene=Scene 1, layer=navigation, frame=1:Line 1: Statement must appear within on handler
         autoAdvanceF();
    Total ActionScript Errors: 1      Reported Errors: 1
    I mean I only put
    autoAdvanceF();
    into the button action, nothing else...
    is something else supposed to go with it?
    I don't know action script, I just sort of paste stuff and sometimes it works.
    EDIT
    sorry I'm an idiot.
    on (release) {
        autoAdvanceF();
    ok got that now.
    but when I do that what you said, put that first code into the first frame action, and that second code into the button action, the movie doesn't play at all
    Message was edited by: tinathpot

  • Help with repeatable region

    HI I'm currently designing a site and am using master/detail
    pages linked to a database.
    The master detail page set function in dw8 automatically
    creates a repeatable region on the master page. I'm trying to add
    an image to that specific repeat region so that each result shows
    up with that image behind it (the image i'm using is a blank
    rectangle with a specific borderframe so that it appears that each
    result has this specific border)
    If i try adding as background image the image repeats itself
    but is out of line with the results! Any ideas how i can go about
    achieving what i'm trying to do, that is assuming I haven't totally
    bewildered you all in trying to explain it!!!!

    can i do that for each specific result? or will it not just
    border all results in that style
    the border i want is to match with button images etc... which
    have a glow effect edge to them

  • Help with repeat

    we name folders according to clients last name
    what happens when 3 different smith families come in the door
    I need to use the repeat clause so when a new project folder is created, it repeats until an unused name is accepted.
    I cant figure this one out but here is what I have so far that works, but only if the 2nd try is a name that is NOT being used.
    set thepath to "Macintosh HD:Users:Shawn:Desktop:"
    set thefolder to "Macintosh HD:Users:Shawn:Desktop:template"
    set foldercopy to "Macintosh HD:Users:Shawn:Desktop:template copy"
    set thealert to "The script has encountered an error"
    set themessage to "Folder with that name does NOT exist"
    set themessage2 to "name already taken, try another"
    set thealert2 to "Fatal Error!!!"
    tell application "Finder"
    --duplicate folder, display message if not folder not found
    try
    duplicate thefolder
    on error
    display alert thealert message themessage
    end try
    --ask for folder name
    display dialog "" default answer "name the project"
    set project_name to text returned of the result
    --try to name folder, display error if name already exists
    try
    set the name of folder foldercopy to project_name as text
    on error
    display alert thealert2 giving up after 1
    display dialog "That name already used" default answer "try another name"
    set project_name to text returned of the result
    end try
    set the name of folder foldercopy to project_name as text
    end tell

    Try using:
    set thepath to "Macintosh HD:Users:Shawn:Desktop:"
    set thefolder to "Macintosh HD:Users:Shawn:Desktop:template"
    set foldercopy to "Macintosh HD:Users:Shawn:Desktop:template copy"
    set thealert to "The script has encountered an error"
    set themessage to "Folder with that name does NOT exist"
    set themessage2 to "name already taken, try another"
    set thealert2 to "Fatal Error!!!"
    tell application "Finder"
    --duplicate folder, display message if not folder not found
    try
    duplicate thefolder
    on error
    display alert thealert message themessage
    end try
    --ask for folder name
    display dialog "" default answer "name the project"
    set project_name to text returned of the result
    --try to name folder, display error if name already exists
    repeat
    try
    set the name of folder foldercopy to project_name as text
    exit repeat
    on error
    display alert thealert2 giving up after 1
    display dialog "That name already used" default answer "try another name"
    set project_name to text returned of the result
    end try
    end repeat
    set the name of folder foldercopy to project_name as text
    end tell
    (25403)

  • Help with repeating text field data on subsequent pages

    I am very new to adobe live cycle designer. I developed a form and I would like some of the text fields on page 1 to fill automatically with the same information on pages 2 and 3 so the user does not have to be filling out the same information over and over.(The information on the other pages is going to be the same as the one on page 1.
    Is there a way to do this? THANKS!
    Matty

    Thank you so much for your quick response. IT WORKED and you have saved me a lot of time. Are there any books available in the market for those of us who want to get more proficient in the program? I just came from a very well known bookstore and they did not have any.
    THANK YOU AGAIN!

  • Help with Repeating actions InDesign CS5 animation/buttons

    I have an interactive catalog that I'm exporting out as a swf. I have one button on one of the catalog pages to where you click on it a movie plays and a "close" button is shown. When I click on the close button the dissappear animation is called on both the movie and the close button.  However, when I go to repeat the actions by clicking on the original button that is supposed to play the movie and show the close button, I can only hear the sound but can't see the movie or my close button. If I go to another page of the catalog and come back it performs properly. How do I work around/fix this? Any suggestions are greatly appreciated.

    SING.InDesignPlugin
    Delete this file from your InDesign plugins folder.

  • Help with repeating background image

    At
    http://www.hammerstones.net/music1.htm,
    i've inserted an iframe that seems to prevent the right edge
    background image from displaying. You'll see, it's along the right
    margin on all pages EXCEPT this one. All help is welcome to achieve
    this look.
    Dave

    CSS Menu:
    a { text-decoration: none }
    a:link {
        color: #FFF;
        background: #666;
    a:visited { color: #999 }
    a:hover, a:active, a:focus {
        background: #333;
        text-decoration: underline;
        border-bottom:4px solid gold;
    /**horizontal navbar**/
    nav ul, nav li {
        margin: 0;
        padding: 0;
        list-style: none;
        font-size:20px;
        font-weight:bold;
        text-align:center;
    nav li a {
        float: left;
        display:block;
        padding: 6px;
        line-height: 1.2em;
        width: 8em;
    HTML:
    <nav>
    <ul>
    <li><a href="#">Some link</a></li>
    <li><a href="#">Some link</a></li>
    <li><a href="#">Some link</a></li>
    </ul>
    </nav>
    What it looks like:
    Nancy O.

Maybe you are looking for

  • Macbook Pro won't boot up, recovery not working

    A few days ago my macbook pro crashed. it was being unresponsive for about 5 minutes so i turned it off and on again (ive done this a lot). except this time when i went to turn it back on i saw the grey folder with a question mark on it. i looked a l

  • IPhoto 6 display window

    Suddenly my iPhoto window opens with only one photo showing, no matter where I go. If I select "Library" or any other folder below, I see only one photo. How can I get back to where this was for years (since late 2004)? I just want all the photos to

  • How to trace the changes done through transaction R3AC3

    Hello SAPheads Is there any table are any transaction through which i can trace the changes done through r3ac1,  r3ac3 , r3ac5 ? Thank you Somasundaram Ganesh

  • Upgrade from 1.0 on PC to 1.31 on Mac Problems

    After delaying upgrading LR on my PC, knowing that I was going to a MacBook Pro, I delayed upgrading 1.0. My library of 15,000 images worked fine, albeit slow, due to the older PC. My images are stored on an external drive, while the older .lrdb resi

  • How best to *BATCH* process MP3s for sound improvement using X-Fi extreme Music.

    I have a shiny new X-Fi extreme music. Does anyone have ideas on the best way to *batch* process a large selection of (16 bit 44.1) MP3 files? A lot is made, in the X-Fi advertising, on the varied abilities to improve the sound of MP3 files. I have a