Signature: nsTArray::Clear()

I just thought the worst of my problems were over with the last update to FF 3.6.8. It was working fine so far since the update, but now just crashed on me after my first game online today. Details:
ID: 8847b0c8-6803-44ce-911c-450ad2100729
Signature: nsTArray::Clear(
If it makes any difference, I was on facebook playing bejeweled blitz. After the last crashes, I had turned all extensions off, and they are still off. Thank you for your help.
== Crash ID(s) ==
ID: 8847b0c8-6803-44ce-911c-450ad2100729 Signature: nsTArray::Clear()

Ok, I had 2 tabs open, one this site and the other my facebook site. Closed FB tab, refreshed this tab. Computer went to blue screen that read: "Windows has detected a problem and closed to protect your computer... Beginning dump of physical memory." I shut down computer via power button, and rebooted. No crash report box came up after reboot, so I don't have any further info for you on that one.

Similar Messages

  • Make signatures more clear

    Hi Board Mods,
    It would be nice if users signatures were a little more obviously separated from their forum posts.  Currently it's hard to tell what's part of the post and what's part of the signature unless you read multiple posts from the same person.

    Hi MikeSobe,
    You should be able to do that by following this procedure:
    Reply to a message like this one.
    In the text editor, type your signature line and then customize it by font style and color.
    Open the HTML tab.  Click Ctrl a to select all, then Ctrl c to copy.
    Paste the HTML code into notepad.
    Delete your reply comments in the text editor and do not post - hit Cancel.
    Then go to "My Settings" > "Personal Information" and paste the HTML code into the signature box.
    Scroll to the bottom and click "Save".
    Let me know if that works for you.

  • Able to clear signatures in a certified document in Acrobat 9.0

    Hi
    While testing Acrobat 9.0 feasibility for migrating my application from Acrobat 7.0, I stumbled upon a security issue that the signatures can be cleared in a certified document (Only Form Fill in and digital signatures are allowed) by right clicking and selecting Clear
    Signature. After clearing the signature, the document status still remains valid i.e. it doesn't gets invalid even if the signature is cleared. Below are the steps to reproduce the same.
    1. Certify a document having couple of signature fields by selecting Certify with Visible Signature and
    i "Form fill-in and digital signatures"
    as the Permitted Actions after Certifying.
    2. Close and re-open the document.
    3. Sign a signature field.
    4. Close and re-open the document. Right click on the signed signature field and select Clear Signature.
    5. Save the document, close and re-open the same. The signature is cleared
    and the document status is valid.
    This behavior is different from Acrobat 7.0 where
    A) User is unable to clear a signature in a certified document
    B) Even if he somehows clears the signature, the document certification becomes invalid.
    Also, if you right click on the certifying signature in Step 4 above, it also can get cleared.
    This behavior of clearing the signatures in a certified document nullifies the purpose of a certified document to prevent users from changing a document. Also, the option of locking the signature during the certification process is missing in Acrobat 9.
    Please let me know whether this is a bug or expected behavior.

    Below is the example of difference in behavior of Acrobat 7 and 9.
    In case of Acrobat 7, there was no option to clear a signature field in a "certified" document i.e. if I sign and right click on a signature field inside a certified document Acrobat 7.0, the Clear Signature option is not present.
    However, if I sign the same signature field in the same PDF in Acrobat 9 and right click, Clear Signature option is available and am able to Clear the signature.

  • Adobe Acrobat Version 9.0 & X are not showing "Clear Signature Field" with Custom e-sign plug-in

    Hi...
    We have created Custom PDF signature plug-in using Adobe X SDK.
    Earlier we had the same Custom PDF signature plug-in with Adobe 7.0 SDK and it used to show "Clear Signature Field" in context menu of digital signature placed on PDF.
    After upgrading the Custom signature plug-in to Adobe X SDK (complied again with SDK X, earlier it used to be 5.0 SDK) to support Acrobat 9, X and XI for digital signature, the "Clear Signature Field" option is appearing in context menu of digital signature box. Even the "Clear Signature Field" option is not shown for the user who has signed the document.
    "Clear Signature" option is available for Adobe Default Security signature.
    We have not changed anything in our plug-in code apart from recompiling it with Adobe X SDK.
    This is a critical issue for us.
    Here is the screen-shot from signed PDF having Adobe Default signature as well as our Custom plug-in signature.
    Here it clearly shows that "Clear Signature" option is not present in signature placed by Custom plug-in.
    Please let us know if anyone else has faced this type of issue earlier and has a resolution.
    Thanks In Advance...
    Waseem

    I am still not getting the Clear signature option for the user who has signed the PDF using Custom PDF Signature plug-in but the same is available for Acrobat Default security signature.
    Custom plug-in is compliled with Adobe X SDK and we have not made any code change to hide the Clear Signature option.
    I found a related posts where Clear Signature option is not shown:
    http://forums.adobe.com/message/5092195

  • Adobe Acrobat 9 Pro - Action when signature cleared

    Is there a way to trigger an action when a signature is cleared?  I am trying to hide or show other objects (buttons, text) based on the existence of a signature. If not is there a form level "refresh" that I can create a javascript that will do this? 
    Thank you

    The Digital Signature field has a Signed tab (under Properties) where you
    can specify a script that will be executed when the document is signed.

  • A way to clear digital signatures with presence = "hidden"

    LCD 9, Dynamic forms using digital signatures, Reader 9x
    I discovered this by accident, so wondering if this is a design feature or a bug.
    I have a dynamic form and have sub-forms throughout it.  I create a flowed subform for my digital signature that has fields to collect information and then place a fixed subform inside that that actually contains the signature field.
    Page1 (flowed)
    - SignatureBlocks (subform - flowed)
                    - Field1 (textfield)
                    - Field2 (textfield)
                    -InitSig (subform - flowed)
                                    -Field3 (textfield)
                                    -Field 4(textfield)
                                                    -FixedSub (subform - fixed)
                                                                    -DigitalSig (signature field)
                    -ReviseSect1 (checkbox)
                    -CALCchkRevise (checkbox – calculated read only)
    DigitalSig locks down various fields in the form.
    My problem has always been that when the form goes to the next person for review there was no option to push the form back a state and allow the prior user to change info that was locked by DigitalSig.  Until I discovered this:
    If I place a checkbox (ReviseSect1) outside of “InitSig” subform and then run a calculation checkbox (CALCchkRevise) that sets the PRESENCE to “hidden” for InitSig if ReviseSect1 == 1, then toggle ReviseSect1 back to 0 my digital signature is cleared and thus all fields that were locked are now un-locked!
    CAR-1601-FM01.Section1.SignatureBlocks.CALCchkRevise::calculate - (JavaScript, client)
    if(ReviseSect1.rawValue == 1)
        SignatureBlocks.InitSig.presence = "hidden";
    else
        SignatureBlocks.InitSig.presence = "visible";
    Is this a design feature or a bug?  I like it as I now can have a reviewer toggle the ReviseSect1 checkbox which erases the digital signature and thus opens all those locked fields back up for editing.  Before I push this throughout my form (which has many signatures and review cycles) I want to be sure this is not a fluke that will go away when Adobe pushes its 1,037th update for the week for Reader.  If you hide a subform that contains a digital signature then un-hide it is it the design feature of hidden/visible to clear the signature?  Or is this a bug that will be patched?

    A better way is to set two codes on the ReviseSect1 checkbox.  CLICK sets the subform invisible and also sets the value of the checkbox to 0 (so that the user does not come back to un-click it and wipe out the signature again).  Then put a MOUSE EXIT code that sets the subform to visible.  In that way the user clicks the box and the signature subform hides, erasing the signature and un-locking the fields.  As soon as they mouse out of the checkbox the subform with the signature becomes visible again.  Nice.

  • How do you unlock fields when clearing the signature using the SignatureServcie?

    I have a workflow built using Process Management and is available through Workspace.  A claimant completes their expense report, digitally signs the form and submits it to their approver.  The form is setup to lock a set of fields after signature.  The approver then has the option to approve or disapprove the form.  When they disapprove the workflow clears the digital signature using Clear Signature Field operation in the SignatureService and routes it back to the claimant.  When the form is opened by the claimant the digital signature has been cleared as expected, but the fields are still locked.  Is there an autoamted way to unlock them?  Is this a service configuration issue or is there another service operation we need to call after clearing the signature? 
    We did try using Javascript to set the readonly property on the field with no luck. Any thoughts?
    We are developing on ES3 and will be upgrading to ES4 in the next week.

    You need to link the image.  See the example for the Canada flag below.
    <img src="http://forums.ni.com/ni/attachments/ni/130/6908/1/Canada-small.PNG" border=0>
    Replace with the image you like.  This goes into the signature box within the profile tab of the personal settings.
    RayR

  • Once a PDF is digitally signed, how to I disable the "Clear signature" option?  I cannot allow appli

    I need to set up digital signatures for a number of documents, but once signed, the signatures must be permenant.  Currently the owner has the option (right clicking on the signature), to "clear signature" - how do I disable this?
    Thanks in advance!

    The point is that this is trivial to achieve for anyone, even if the file is locked after signing.
    They just need to keep a copy of the unsigned file, delete the signed one, and replace it with the unsigned file. So such protection means nothing.
    Repudiating signatures is a very bad thing, but it can only have real meaning if someone or some process knew about the signing. Otherwise, it's like someone signing a piece of paper, and destroying their signed copy without showing it to anyone; it's as if it never happened, and nothing was gained.  If on the other hand a person has received the signed file, or a process has securely archived it, then removing a signature has no repudiating effect on the copy.
    It can be hard to convert paper-based to electronic-based workflows where files can be freely duplicated, shared etc.
    Clearly, though, if a person can sign a file, then others can act on that signature, and then the signer can still edit the original signed file, there is a big problem, not just of repudiation but of auditability.

  • ? using multiple approval signatures, each locking the fields with collections

    Having fun with LiveCycle to make a "signoff" sheet that will allow a customer to request a "new product" with a PDF form. Once that information is added to our EDR (Eng Design Request) form, I want the form to be forwarded to multiple departments, where each department manager adds their name, date, comments, and then signs the document and forwards it to the next manager. I have it set up with "locking" a "collection fields" with each signature, and that is cool to lock their comments to thier signature, such that someone else can't change their comments without first "clearing" their signature field... just what I wanted, cool,, taking it a step further, I wanted to have the original product data protected such that once signed by one, or more managers (Eng, Sales, President), that the data was locked unless all signatures were cleared. I tried this first by including the product definition fields in every signature's "collection of fields" (set to lock after signing). Thought that would be the ticket, pretty pumped to try it, but once I clear one signature, example the "Eng manager signature" I can go in and mess with the specs and then re-sign the document, and the other signatures are still there, thought I have to clear them, not good,,, 2nd try, I then tried to lock the preceeding "signature field" itself with the next signature (added "sig0" to "sig1" collection) and that worked once, but fell apart on the third approval, as clear one signature openned things right up, when it shouldn't have. Anyway, has anyone found a way to have an approval signoff sheet where once signed the data fields are locked unless all the signature(s) are cleared. I think the programming is not handing multiple locks on the sme field properly, ie all locks on that field must be removed for that field to become editable,, There may be a better way to tackle this..
    PS, I have really learned to be cautious when saving the form out of LiveCyle, then renaming it and save out or "Pro" with read permisions enabled, then see if "Reader" can open it,,, if U R not carefull you get and error that the "document has changed and reader can't save, contact the author,,," that was scary as I had to surf through lots of old revs to find one that would work again, something salvagable without going back to MSWord,,,
    Thanks for your help...

    I think I found a way to get it to do what I want,,,
    1) Use the first signature collection lock to lock only the fields that that person is signing-off on.
    2) The next manager then signs off and locks only his comments and text boxes, as well as the signature of the preceeding manager. This way text fields are only locked by one signature collection and thus to edit anything you have to clear that manager's signature to edit the related text boxes, then to re-sign that section you must clear the other (higher level) signatures to open up the signature field for resigning,,, I think this is providing the protection I want,,, Yea,,, let's get this form back into our stupid ISO system ;)

  • Digital Signatures signed by Gemsign are not getting retained if we save and open the pdf

    Please let me know what to do to make the digital signatures signed by Gemsign signature to be in visible mode if we save, close and reopen the pdf deisgned using Adobe Licecycle designer ES3 version.

    Are production and development systems are on different versions?
    Can you explain more about the workflow? What do you mean by not retained ? Is signature getting cleared?
    --Santosh

  • Digital Signatures signed by Gemsign are not getting retained on flattened document in production

    Hi,
    Anyone please help me in solving the below issue.
    Digital Signature are not getting retained in the flattened version of Production which is designed by Adobe livecycle designer ES3 version. But if we use the same xdp file in development the Digital Signatures are getting retained on the flattened version. The Digital SIgnature are signed by Gemsign signature pad.

    Are production and development systems are on different versions?
    Can you explain more about the workflow? What do you mean by not retained ? Is signature getting cleared?
    --Santosh

  • Mail signature problems

    How come when I purchase the 5, my mail signature now has a line in front of it, as if its been forwarded? It never did that in any of the other operating systems... How can I fix that?
    I don't want to have to type my signature every time, but it looks unprofessional with the line in front of each line...

    I do know the line you're talking about.
    My signature on my iPhone 5 does not have this line.
    So my recommendation is that you go to Settings > Mail, Contacts, Calendars > Signature and clear out whatever you have there and enter it again.

  • Issue with Signature fields

    Dear All,
    I have 3 signature fields on a form that I have just completed. Each of this signature locks each section of the form, but whenever one of this signatures are signed, it shows a message that reads, "Atleast one of the signatures is invalid". I then unchecked the locked all fields check boxes of all 3 variables fields  that controlled the fields that need to be locked, and the invalid signatures disappeared, however, the three sections need to be locked when each signature is clicked on. And it works fine, but for this message.
    Does anyone knows why it is happening? And what's the solution. I need help.
    Thanks
    Tammy

    Hi guys,
    Actually I found a way to do it...
    You can create a button with the reset form action and then select all the signature fields only.
    Otherwise what I did was was added the same action in the signature field, but on the Mouse Down function. What happens is, the author can clear the signature and the other signatures will still be there, BUT when he clicks to resign, then the other signatures get cleared and the document gets saved with only the author signature.
    It's not exactly how I wanted it to work but it does the job none the less.
    1. Funny how this has been overlooked.
    2. Funny how all these members with so many points haven't figured out how to do this

  • MAM 3.0 Signature Capture

    Hi,
    We have implemented MAM 3.0, however when we use the signature capture functionality, the applet gets loaded and we can capture the signature , but when we hit the save button , nothing happens, when we hit the clear button the captured signature is cleared.
    Can anyone help me with locating the problem
    Warm Regards,
    Priya Ghosh

    Hi Priya,
    Because you are running signature capture(applet) in Laptop Client, system will not allow applet to access the system resources. You need to set the policies for accessing the system resources by using the policy tool available under \j2sdk1.4.2_08\bin
    Just Click on the executable policytool.exe , now you will get a pop up window to set the permissions....
    Click on Add Policy Entry /then Add permission tabs
    now select All permissions and click ok followed by done.
    now save the file -
    >>
    note: with the name .java.policy at the C:/documents and settings/ all users(or either any specific user that you are using)
    Hope this help you.
    Chinna

  • Signature attack ???

    The wireless network use 2100 controller run 4.2.205.0 and 1242G APs.
    In 2100 controller's trap log :
    103 Thu Sep 16 14:49:19 2010 IDS Signature attack cleared. Signature Type: Standard, Name: Auth flood, Description: Authentication Request flood, Track: per-Mac, Detecting AP Name: AP9caf.ca01.c890, Radio Type: 802.11b/g, Preced: 5, Channel: 11
    104 Thu Sep 16 14:49:05 2010 IDS Signature attack cleared. Signature Type: Standard, Name: Deauth flood, Description: Deauthentication flood, Track: per-Mac, Detecting AP Name: AP9caf.ca01.c870, Radio Type: 802.11b/g, Preced: 9, Channel: 1
    105 Thu Sep 16 14:48:15 2010 IDS Signature attack cleared. Signature Type: Standard, Name: Auth flood, Description: Authentication Request flood, Track: per-signature, Detecting AP Name: AP9caf.ca01.c890, Radio Type: 802.11b/g, Preced: 5, Channel: 11
    109 Thu Sep 16 14:31:49 2010 IDS Signature attack detected. Signature Type: Standard, Name: Auth flood, Description: Authentication Request flood, Track: per-signature, Detecting AP Name: AP9caf.ca01.c890, Radio Type: 802.11b/g, Preced: 5, Hits: 50, Channel: 11, srcMac: 00:1C:BF:7D:49:3F 
    110 Thu Sep 16 14:31:23 2010 IDS Signature attack detected. Signature Type: Standard, Name: Auth flood, Description: Authentication Request flood, Track: per-Mac, Detecting AP Name: AP9caf.ca01.c890, Radio Type: 802.11b/g, Preced: 5, Hits: 30, Channel: 11, srcMac: 00:1C:BF:7D:49:3F
    Does someone really want to attack my wireless network?
    Thanks!

    Could be.  Your AP is detecting an Intel Wireless NIC flooding de-authenticate messages.  Your best bet is to track this machine down or contain it.

Maybe you are looking for

  • My macbook pro makes every 3 seconds a ticking sound

    Hello everybody i've bought my macbook pro 3 months ago and he is making all the time a ticking sound. sometimes it's quiet but sometimes it's also very loud. it comes from the left side of my mac and i think it's a fan. could somebody help me please

  • SGA_MAX_SIZE and swap

    Hello, When I read Doc 778777.1, I found it said: "On most OSs(except solaris) if you specify SGA_MAX_SIZE, then the complete size of SGA_MAX_SIZE is reserved from Swap at instance startup, not from physical RAM." I want to konw why SGA_MAX_SIZE is r

  • Web Dynpro LDAP

    Hi I want to access data from LDAP in a web dynpro application . Where can i find documentation on how to create an LDAP connector and access LDAP. Thanks and Regards Bhanu

  • Upconvertion from labview 5.1 to 2012 (Composed RAR File)

    Could anyone please upconvert this softwares from Labview 5.1 to a version which can be opened on Labview 2012? Here I had to create a composed ZIP file with 3 parts to be able to upload within the upload size limit. The forum doesn't accept RAR at a

  • List archive log pagewise in asm

    How to view archived log pagewise in asm? In RAC , do I need to delete archived log thread from second node or after RMAN backup if I use following comand would delete? delete force noprompt archivelog all completed before 'sysdate-15'; Want to keep