Trusted Function Privelged File Folder

This Adobe publication
http://helpx.adobe.com/acrobat/kb/user-javascript-changes-10-1.html
says place the Trusted Function .js file in (for MS Windows 7 & Acrobat X Pro):
Users\(username)\AppData\Roaming\Adobe\Acrobat\Privileged\10.0\JavaScripts.
(disregard spacing issue in JavaScr and ipts. Webpage error no space in file folders.)
or applicably
C:\Users\JohnSmith\AppData\Roaming\Adobe\Acrobat\Privileged\10.0\JavaScripts
(disregard spacing issue in JavaScr and ipts. Webpage error no space in file folders.)
That's all good and clear except I don't have that "Privileged" file. Any suggestions? Should I just create the
"Privileged" folder inside of the "Acrobat Folder"?

The file is on a server, I assume the path is correct since the same script works on my computer (script is saving the reader file by a name from a certain field on the pdf to a specified server location) and the script file (myspecialtaskfucntion.js) was just attached in a email to a co-worker and then loaded into the location on their computer at:
C:\Users\JohnSmith\AppData\Roaming\Adobe\Acrobat\Privileged\10.0\JavaScripts
I'll try a manual save, unprotected mode and report back. Thanks for your time.
Update:
I don't believe I can put Acrobat X or Acrobat X Pro into unprotected mode. Perhaps this mode is only for Adobe Reader X ? The computer I'm having trouble with is MS Windows 7 with Acrobat X (aka Acrobat X Standard). There is no option for placing the Acrobat Application into "Unprotected Mode" that I can find.
The manual save is possible on the co-workers computer after the console appears with the previous message I posted above.
"RaiseError: ....................................... or in a different folder."

Similar Messages

  • Trusted function not reffered in PDF file - Adobe reader.

    Am failry new to Adobe scripting.
    I am trying to generate a jasper report of PDF file format from an online web application
    MY intension is to automatically save the generated report into my user's hard drive location say /C/Sample/sample.pdf
    I have created the trusted function and made it copied to the folder C:\Program Files\Adobe\Reader 11.0\Reader\Javascripts
    Trusted function code mySaveAs.js
    var mySaveAs = app.trustedFunction( function(oDoc,cFile)
    app.beginPriv();
    // Ensure path has trailing "/" cPath = cPath.replace(/([^\/])$/, "$1/");
    try{
      oDoc.saveAs(cFile);
    }catch(e){
      app.alert("Error During Save");
    app.endPriv();
    And am invoking the script from the Jasper api which will be a part of the PDF script like below
    exporter.setParameter(JRPdfExporterParameter.PDF_JAVASCRIPT,
         " if(typeof(mySaveAs) == 'function') { " +
         " mySaveAs(this,'/C/Sample/sample.pdf');"+
         " } else { " +
         " app.alert('Missing Save Function\n Please contact forms administrator')" +
    its just Equivalent of
    if(typeof(mySaveAs) == 'function') {
          mySaveAs(this,'/C/Sample/sample.pdf');
    } else { 
      app.alert('Missing Save Function\n Please contact forms administrator')}
    but am not able to get the file saved in my client machine.
    Kindly suggest me a better approach or any where if am missing something.
    Am failry new to Adobe scripting.

    Am currently using Adobe reader 11 I am not getting any alert .
    But the same saveAs() works well in XP even with out making it as a trusted function, We have just placed the script inside the PDF itself. But its not working in Windows 7.
    Below code works fine in Win XP
    try
         this.saveAs('/C/Sample/sample.pdf'');
        catch(e)
        { app.alert(e);}

  • Function module to check if a given file/folder path is valid or not?

    Hi,
    I am using function modules GUI_DOWNLOAD and GUI_UPLOAD.
    Is there any function module to check if a given file/folder path is valid or not?
    Thanks.

    Hi Kumar ,
    REPORT  zdir_test.
    TYPE-POOLS: abap.
    DATA: v_dir TYPE string.
    DATA: v_bol TYPE abap_bool.
    v_dir = 'c:\sap\'.
    CALL METHOD cl_gui_frontend_services=>directory_exist
      EXPORTING
        directory            = v_dir
      RECEIVING
        result               = v_bol
      EXCEPTIONS
        cntl_error           = 1
        error_no_gui         = 2
        wrong_parameter      = 3
        not_supported_by_gui = 4
        OTHERS               = 5.IF NOT v_bol IS INITIAL.
      WRITE:/ 'Directory exists.'.
    ELSE.
      WRITE:/ 'Directory does not exist.'.
    ENDIF.
    Regards,
    Sachin M M

  • Doc Save As and Trusted Function

    I have been reading over the forum and the adobe help files regarding this. I think I am close but since I need to get my IT department to assist in placing the js files where they have to go, I thought I might ask the forum if I am on the right track
    I still have to make sure the field values will not include an illegal characters. They wont be empty as the forms will be coming directly from our system -prefilled
    Currently these forms automatically email (although staff still have to hit the actual send button) when staff go to print the document.  The people who get these forms are just finding it a bit hard to keep up with the emails and have asked to just have the files save to a folder so they can look at when they have time
    This is what I have for my trust propagator function.  I assume this is the only js file I will need as it incoporates the trusted function?
    mySaveAs = app.trustPropagatorFunction(function(doc,path)
      app.beginPriv();
       doc.saveAs(path);
      app.endPriv(); })
    myTrustedSpecialTaskFunc = app.trustedFunction(function(doc,path)
      // Privileged and/or non-privileged code above
      app.beginPriv();
       mySaveAs(doc,path);
      app.endPriv();
      // Privileged and/or non-privileged code below });
    I got this code from the Adobe Help
    then I want to have this code in the Document Did Print area
    var name = this.getField("FormValues.accountNames_0").value
    var folio =this.getField("FormValues.folioNumber_0").value
    myTrustedSpecialTaskFunc(this, "/w/Public/AccountOpening/" + name + " " + folio,pdf);
    I have to read where to put the js file as I have seen some comments on the forum that where you place the js file has changed for those with Adobe X and Windows 7
    Would anyone be be able to let me know if I am on the right path before I get IT involved.  I suppose I could test the code on my own laptop to see if it would allow me to save the form.....
    Thank you

    Read this: The Acrobat Ninja: Acrobat 10.1.1 JavaScript changes
    You have to manually create the folders that aren't present, and they must be named correctly.
    It's a good idea to use the valueAsString property instead of the value property to get the field values, since you're using the results as strings. It probably won't make a difference here, but it's a good habit to get into. You also have a typo in that last line of code. It should be:
    myTrustedSpecialTaskFunc(this, "/w/Public/AccountOpening/" + name + " " + folio + ".pdf");
    It would be a good idea to make sure those field value aren't blank if there's a chance that they could be.
    Also, consider using a try/catch block for the doc.saveAs call, and look at the return value so you can give the users a more helpful error message than what the default will be if something goes wrong.
    If you need help with any of this, post again.

  • Save As Trusted Function: Part II

    Continuing my previous thread:  http://forums.adobe.com/thread/509314?tstart=0
    I'm now working on another form requiring this same type of function, but there's a new wrinkle.
    How can I substitute fields if one of the fields to be used is blank or is a certain selection of a drop down ...
    i.e.      If fieldA = "other" use fieldB in place of fieldA in save as title.
    Thanks for any help / suggestions!

    I'm running into a problem here.
    The js file from my first thread works fine for that form.
    However, I've created a second folder js file for this form.  When the click event "event.target.myTrustFunct(event.target);" fires it attempts to use the first js file and thus does not work seeing as content and field names are different.
    How can I distiguish between what js file I'm trying to pull from for each trusted function?
    Any help is appreciated.
    Thanks.

  • Trusted function help

    Hi all,
    I need to clarify if i am looking in the right place!
    I have a form with templates, when the first page is signed there is a button to create a second page from a template (with a new signature).
    I get this error:
    NotAllowedError: Security settings prevent access to this property or method.
    Template.spawn:17:AcroForm:P0.Background.Tab:Annot1:MouseUp:Action1
    I believe this is a trusted function issue, so I tried to write the following to accomodate in my code:
    function test()
            var t = this.templates;
    var j = this.pageNum;
        var T = t[0];
        var S = t[1];
        var R = t[3];
        var Q = t[2];
    // Checks other field value before selecting correct template
    if (this.getField("P"+j+".Background.Dropdown4").value == "Other"){
    T.spawn({nPage: numPages, bRename: true, bOverlay: false});
    Q.spawn({nPage: numPages - 1, bRename: true, bOverlay: true});
    app.alert("A new page has been added")
    }else if (this.getField("P"+j+".Background.Dropdown4").value == "option 1"){
    T.spawn({nPage: numPages, bRename: true, bOverlay: false});
    S.spawn({nPage: numPages - 1, bRename: true, bOverlay: true});
    app.alert("A new page has been added")
    }else if (this.getField("P"+j+".Background.Dropdown4").value == "option 2"){
    T.spawn({nPage: numPages, bRename: true, bOverlay: false});
    R.spawn({nPage: numPages - 1, bRename: true, bOverlay: true});
    app.alert("A new page has been added")
    }else if (this.getField("P"+j+".Background.Dropdown4").value == "Select..."){
    app.alert("Please make selection, from Category");
        app.trustedFunction(test);
    I have this as a document level javascript but im not usre if this is correct, i want to avoid creating a js folder to hold the script as i have many users.
    Because Acrobat X now uses this trusted function i need to update quite a few forms, so your help would be much appreciated.

    Signing a signature field does not consitute editing the file.
    Adding new pages to a file does.
    Think about a real-life situation: You sign a 20-page contract.
    Then someone adds their signature next to yours. That's not a problem because it doesn't affect what you signed, just says that another person is a part of the contract.
    However, imagine that after you've signed the contract someone adds a 5-page appendix to it and pretends you signed that as well... You wouldn't be too happy about it, right? That appendix should not be added unless you sign it as well.
    Well, digital signatures have that function built-in into them. You can't edit the file without invalidating the signature(s) in it.

  • Trusted Function

    I have written a trusted function and whenever it runs (from a button click on a form) I get the following error in the JavaScript Debugger:
    ReferenceError: doc is not defined
    4:Folder-Level:App:trusted.js
    My trusted function is:
    trustedExport = app.trustedFunction(function (nName)
    app.beginPriv();
    doc.exportAsText(nName);
    app.endPriv();
    I am running the form on Acrobat 7.0 and the .js file is in C:\Program Files\Adobe\Acrobat 7.0\Acrobat\Javascripts.
    Can anyone help?
    Regards
    Andy

    the doc object is contained in the event.target property, so just use event.target.exportAsText(nName) instead. "doc" by itself is not an object in XFA

  • Intermittent : The term 'get-date' is not recognized as the name of a cmdlet, function, script file, or operable program.

    I have developed a batch harness whereby all scheduled tasks (W2012) invoke a common powershell script that acts as a wrapper to all our housekeeping jobs.
    The first step in the wrapper is to create a Transcript file using following code
    if ($Host.name -ne "Windows PowerShell ISE Host") # Transcript does not work within ISE
    $timestamp = (get-date -format "yyyy-MM-dd-HH-mm-ss.fff")
    $path = "c:\corp\$timestamp" + "_$pid.txt"
    Start-Transcript -path $path -append
    As expected the folder contains files with timestamp & pid in name
    08/08/2013  11:00 AM            14,388 2013-08-08-11-00-01.158_1620.txt
    08/08/2013  11:00 AM            12,506 2013-08-08-11-00-01.485_936.txt
    08/08/2013  11:00 AM            12,994 2013-08-08-11-00-01.735_9328.txt
    08/08/2013  11:00 AM            12,024 2013-08-08-11-00-01.766_8624.txt
    08/08/2013  11:00 AM            13,902 2013-08-08-11-00-01.860_1756.txt
    08/08/2013  11:01 AM            15,142 2013-08-08-11-01-31.392_10120.txt
    08/08/2013  05:00 AM            14,982 _1692.txt
    However note the last file, it has a zero length date time value in the name
    The error recorded by PowerShell is
    get-date : The term 'get-date' is not recognized as the name of a cmdlet, function, script file, or operable program.
    Check the spelling of the name, or if a path was included, verify that the path is correct and try again.
    At C:\Corp\Powershell\DMPRun-ScheduledTask.ps1:171 char:18
    +    $timestamp = (get-date -format "yyyy-MM-dd-HH-mm-ss.fff")
    +                  ~~~~~~~~
        + CategoryInfo          : ObjectNotFound: (get-date:String) [], CommandNotFoundException
        + FullyQualifiedErrorId : CommandNotFoundException
    IE get-date has failed and returned a zero length field as the timestamp
    Can anyone think of a good reason why get-date would fail intermittently?
    Do I have to code defensively for base Powershell functions?

    I implemented David's suggestion and now I intermittently get
    import-module : Access to the path 'PowerShell_CommandAnalysis_Lock' is denied.
    At D:\temp\loop_jc2_2013_11_25_08_55_02.ps1:15 char:1
    + import-module Microsoft.Powershell.Utility
    + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
        + CategoryInfo          : NotSpecified: (:) [Import-Module], UnauthorizedA
       ccessException
        + FullyQualifiedErrorId : System.UnauthorizedAccessException,Microsoft.Pow
       erShell.Commands.ImportModuleCommand
    I added a trap chain (My Powershell skills do not yet include recursive trap coding, any suggestions welcome)
    trap {
        trap {
            "Trap1"
            "Exception: " + $_
            "Error: " + $Error[0]
            "Message: " + $_.Exception.Message
            "InnerException: " + $_.Exception.InnerException
            "StackTrace: " + $_.Exception.StackTrace
            "FailedItem: " + $_.Exception.ItemName
            import-module Microsoft.Powershell.Management
            import-module Microsoft.Powershell.Security
            import-module Microsoft.Powershell.Utility
        "Trap2"
        "Exception: " + $_
        "Error: " + $Error[0]
        "Message: " + $_.Exception.Message
        "InnerException: " + $_.Exception.InnerException
        "StackTrace: " + $_.Exception.StackTrace
        "FailedItem: " + $_.Exception.ItemName
        import-module Microsoft.Powershell.Management
        import-module Microsoft.Powershell.Security
        import-module Microsoft.Powershell.Utility
    import-module Microsoft.Powershell.Management
    import-module Microsoft.Powershell.Security
    import-module Microsoft.Powershell.Utility
    trap {
        "Trap3"
        "Exception: " + $_
        "Error: " + $Error[0]
        "Message: " + $_.Exception.Message
        "InnerException: " + $_.Exception.InnerException
        "StackTrace: " + $_.Exception.StackTrace
        "FailedItem: " + $_.Exception.ItemName
        exit 1
    get-date
    Now I intermittently get ..
    Trap2
    Exception: Access to the path 'PowerShell_CommandAnalysis_Lock' is denied.
    Error: Access to the path 'PowerShell_CommandAnalysis_Lock' is denied.
    Message: Access to the path 'PowerShell_CommandAnalysis_Lock' is denied.
    InnerException:
    StackTrace:    at System.IO.__Error.WinIOError(Int32 errorCode, String maybeFullPath)
       at System.Threading.Mutex.MutexTryCodeHelper.MutexTryCode(Object userData)
       at System.Runtime.CompilerServices.RuntimeHelpers.ExecuteCodeWithGuaranteedCleanup(TryCode code, CleanupCode backoutCode, Object userData)
       at System.Threading.Mutex.CreateMutexWithGuaranteedCleanup(Boolean initiallyOwned, String name, Boolean& createdNew, SECURITY_ATTRIBUTES secAttrs)
       at System.Threading.Mutex..ctor(Boolean initiallyOwned, String name, Boolean& createdNew, MutexSecurity mutexSecurity)
       at System.Threading.Mutex..ctor(Boolean initiallyOwned, String name, Boolean& createdNew)
       at System.Management.Automation.AnalysisCache.CacheExportedCommands(PSModuleInfo module, Boolean force, ExecutionContext context)
       at Microsoft.PowerShell.Commands.ModuleCmdletBase.LoadUsingModulePath(PSModuleInfo parentModule, Boolean found, IEnumerable`1 modulePath, String name, SessionState ss, ImportModuleOptions options, ManifestProcessingFlags manifestProcessingFlags,
    PSModuleInfo& module)
       at Microsoft.PowerShell.Commands.ImportModuleCommand.ImportModule_LocallyViaName(ImportModuleOptions importModuleOptions, String name)
       at Microsoft.PowerShell.Commands.ImportModuleCommand.ProcessRecord()
       at System.Management.Automation.CommandProcessor.ProcessRecord()
    FailedItem:
    import-module : Access to the path 'PowerShell_CommandAnalysis_Lock' is denied.
    At D:\temp\loop_jc2_2013_11_25_09_19_52.ps1:26 char:1
    + import-module Microsoft.Powershell.Security
    + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
        + CategoryInfo          : NotSpecified: (:) [Import-Module], UnauthorizedA
       ccessException
        + FullyQualifiedErrorId : System.UnauthorizedAccessException,Microsoft.Pow
       erShell.Commands.ImportModuleCommand

  • From Forms 5.0 I want to copy a file/folder from one location to another.

    Hi,
    I have a question and I really appreciate your help.
    My Question is
    I would like to copy a file/folder from one location to another.
    (For ex: From my Hard disk to a Network folder).
    I want to do this from Oracle Forms 5.0 and my operating system is Windows 2000/NT Workstation.
    At present my users are doing this by using drag and drop windows functionality,
    But now they want to do this by using a GUI screen.
    I would greatly appreciate if somebody can answer my question.
    Thank you very much and have a nice day.
    Thanks & Regards
    Sanjeev.

    Hi Shay,
    Am able to copy the files/folders by doing the follwing.
    Declare
    My_Command Varchar2(1000);
    Begin
    MY_COMMAND := 'XCOPY /E ' ||:FROM_LOC ||' '|| :TO_LOC ;
    HOST(MY_COMMAND);
    End;
    But my problem is am not able to trap the errors.
    Do you have any idea?
    Thanks

  • How to get an Adobe trusted function javascript to save a pdf form even if fields are empty?

    I have a form I have created in Livecycle designer which I want to save to a specific location using a combination of specific fields in the form. I have been able to do this by writing a trusted function and putting it in the adobe javascript file and then putting some code on a save button in the form. However, it may be that some of the fields (vfirstname and vsecondname) may be blank and i still want the form to save. Ideally i want to write an if statement to substitute those fields for other fields if they are blank but cant get the code to  work.
    Working code in trusted function file
    // SaveAs Function1 var mySaveDoc = app.trustedFunction(function(doc) { app.beginPriv(); var vDate1 = event.target.xfa.resolveNode("form1.page1.Table1.Row1.leftsideofform.Timeanddate.Dateofca ll").rawValue.toString(); var vfirstname = event.target.xfa.resolveNode(" form1.page1.Table1.Row1.rightsideofform.Prospectiveclient.ClientFirstname").rawValue.toSt ring(); var vsecondname = event.target.xfa.resolveNode("form1.page1.Table1.Row1.rightsideofform.Prospectiveclient.C lientsurname").rawValue.toString(); var myPath = "/MGLCC01-SV/MGPdata/Mihomecare/testce/" + vDate1 +"_" + vfirstname + "-" + vsecondname + ".pdf"; // saveAs is the only privileged code that needs to be enclosed doc.saveAs({cPath: myPath, bCopy: true, bPromptToOverwrite: true}); app.endPriv(); }); 
    Working code on save button in form
    form1.#pageSet[0].Newenquirymasterpage.Button1::mouseUp - (JavaScript, client) var txt = form1.execValidate(); //This script will validate all required fields event.target.mySaveDoc(event.target) xfa.host.messageBox("Document has been saved to shared drive", "File Saved", 3, 1); 
    IF code for trusted function file that I cant get to work
    // SaveAs Function1 var mySaveDoc = app.trustedFunction(function(doc) { app.beginPriv(); var vDate1 = event.target.xfa.resolveNode("form1.page1.Table1.Row1.leftsideofform.Timeanddate.Dateofca ll").rawValue.toString(); if (event.target.xfa.resolveNode("form1.page1.Table1.Row1.rightsideofform.Prospectiveclient. ClientFirstname").rawValue == " ")      {          var vfirstname = event.target.xfa.resolveNode("form1.page1.Table1.Row1.rightsideofform.Enquirer.EnquFirstn ame").rawValue.toString();      }      else      {          var vfirstname = event.target.xfa.resolveNode("form1.page1.Table1.Row1.rightsideofform.Prospectiveclient.C lientFirstname").rawValue.toString();      }     if (event.target.xfa.resolveNode("form1.page1.Table1.Row1.rightsideofform.Prospectiveclient. Clientsurname").rawValue == " ")      {          var vsecondname = event.target.xfa.resolveNode("form1.page1.Table1.Row1.rightsideofform.Enquirer.Enqsurname ").rawValue.toString();      }      else      {          var vsecondname = event.target.xfa.resolveNode("form1.page1.Table1.Row1.rightsideofform.Prospectiveclient.C lientsurname").rawValue.toString();      } var myPath = "/MGLCC01-SV/MGPdata/Mihomecare/testce/" + vDate1 +"_" + vfirstname + "-" + vsecondname + ".pdf"; // saveAs is the only privileged code that needs to be enclosed doc.saveAs({cPath: myPath, bCopy: true, bPromptToOverwrite: true}); app.endPriv(); }); 
    Can anyone suggest why the If code above doesn't work? or how i could get the form to submit even if the fields are blank?

    It can also work if you certify the document and each user chooses to trust it to execute privileged JavaScript, which may be feasible in this setting. The method you'd use is doc.saveAs: http://livedocs.adobe.com/acrobat_sdk/9.1/Acrobat9_1_HTMLHelp/JS_API_AcroJS.88.524.html
    Also, read the following tutorial: http://acrobatusers.com/tutorials/how-save-pdf-acrobat-javascript

  • Cannot get into mac. I get a white screen and flashing file folder with question mark inside. What can I do?

    2012/13 MacBook Pro froze up, so I did a hard shut down. Now, when I try to start up, it makes 3 unusual beeps, then I get a white screen. After a couple minutes, a flashing file folder with a question mark appears and remains. What is wrong and what can I do to fix it.

    Three beeps usually means a RAM or RAM slots problem. The Question Mark means there is no bootable system found.
    A flashing question mark or globe appears when you start your Mac
    Question (?) Mark, Blinking Folder, or Gray Screen at Startup
    These are related but not identical issues. Their causes are outlined in Intel-based Mac- Startup sequence and error codes, symbols. Solutions may be found in:
    A flashing question mark or globe appears when you start your Mac
    Mac OS X- Gray screen appears during startup
    In most cases the problems may be caused by one or more of these:
    a. Problem with the computer's PRAM - See Resetting your Mac's PRAM and NVRAM.
    b. Boot drive's directory has been corrupted - Repair with Disk Utility.
    c. Critical system files are damaged or deleted - Reinstall OS X.
    d. The disk drive is physically non-functional - Replace the hard drive.
    Note that the information I have provided is what Apple recommends, If other users suggest different solutions than found here, then be sure what they recommend does not impact on your warranty, if any, or ability to get continuing Apple service.
    Please don't start removing drives or changing cables unless you know what you are doing and have exhausted other non-invasive alternatives outlined here. If you perform any work yourself that is unapproved by Apple, then you will void any warranty you may have and lose all further Apple Support.
    Repair the Hard Drive and Permissions
    Boot from your Snow Leopard Installer disc. After the installer loads select your language and click on the Continue button. When the menu bar appears select Disk Utility from the Utilities menu. After DU loads select your hard drive entry (mfgr.'s ID and drive size) from the the left side list.  In the DU status area you will see an entry for the S.M.A.R.T. status of the hard drive.  If it does not say "Verified" then the hard drive is failing or failed. (SMART status is not reported on external Firewire or USB drives.) If the drive is "Verified" then select your OS X volume from the list on the left (sub-entry below the drive entry,) click on the First Aid tab, then click on the Repair Disk button. If DU reports any errors that have been fixed, then re-run Repair Disk until no errors are reported. If no errors are reported click on the Repair Permissions button. Wait until the operation completes, then quit DU and return to the installer.
    If DU reports errors it cannot fix, then you will need Disk Warrior and/or Tech Tool Pro to repair the drive. If you don't have either of them or if neither of them can fix the drive, then you will need to reformat the drive and reinstall OS X.
    The main difference if you are using Lion or Mountain Lion is that you must first boot from the Recovery HD. Simply boot from the Recovery HD to perform the above.
    Reinstall Snow Leopard Without Erasing The drive
    1. Repair the Hard Drive and Permissions
    Boot from your Snow Leopard Installer disc. After the installer loads select your language and click on the Continue button. When the menu bar appears select Disk Utility from the Utilities menu. After DU loads select your hard drive entry (mfgr.'s ID and drive size) from the the left side list.  In the DU status area you will see an entry for the S.M.A.R.T. status of the hard drive.  If it does not say "Verified" then the hard drive is failing or failed. (SMART status is not reported on external Firewire or USB drives.) If the drive is "Verified" then select your OS X volume from the list on the left (sub-entry below the drive entry,) click on the First Aid tab, then click on the Repair Disk button. If DU reports any errors that have been fixed, then re-run Repair Disk until no errors are reported. If no errors are reported click on the Repair Permissions button. Wait until the operation completes, then quit DU and return to the installer.
    If DU reports errors it cannot fix, then you will need Disk Warrior and/or Tech Tool Pro to repair the drive. If you don't have either of them or if neither of them can fix the drive, then you will need to reformat the drive and reinstall OS X.
    2. Reinstall Snow Leopard
    If the drive is OK then quit DU and return to the installer.  Proceed with reinstalling OS X.  Note that the Snow Leopard installer will not erase your drive or disturb your files.  After installing a fresh copy of OS X the installer will move your Home folder, third-party applications, support items, and network preferences into the newly installed system.
    Download and install Mac OS X 10.6.8 Update Combo v1.1.
    Reinstalling Lion/Mountain Lion Without Erasing The Drive
    Boot to the Recovery HD: Restart the computer and after the chime press and hold down the COMMAND and R keys until the menu screen appears. Alternatively, restart the computer and after the chime press and hold down the OPTION key until the boot manager screen appears. Select the Recovery HD and click on the downward pointing arrow button.
    Repair the Hard Drive and Permissions: Upon startup select Disk Utility from the main menu. Repair the Hard Drive and Permissions as follows.
    When the recovery menu appears select Disk Utility. After DU loads select your hard drive entry (mfgr.'s ID and drive size) from the the left side list.  In the DU status area you will see an entry for the S.M.A.R.T. status of the hard drive.  If it does not say "Verified" then the hard drive is failing or failed. (SMART status is not reported on external Firewire or USB drives.) If the drive is "Verified" then select your OS X volume from the list on the left (sub-entry below the drive entry,) click on the First Aid tab, then click on the Repair Disk button. If DU reports any errors that have been fixed, then re-run Repair Disk until no errors are reported. If no errors are reported click on the Repair Permissions button. Wait until the operation completes, then quit DU and return to the main menu.
    Reinstall Lion/Mountain Lion: Select Reinstall Lion/Mountain Lion and click on the Continue button.
    Note: You will need an active Internet connection. I suggest using Ethernet if possible because it is three times faster than wireless.

  • When creating PDF I get message "This file was saved to the Temporary Internet  Files Folder"

    about 80% of the time when I am creating a PDF Document using the Print to Adobe function I get the following message:
    "For your computers security, this file was saved to the Temporary Internet Files folder"
    "Do you want to open this folder?"
    It doesn't matter if I say yes I want to open the folder or not I can never locate the file.
    I am using Vista Ultimate 32. for an operating system.
    I have the following programs installed too:
    Office 2007 Enterprise
    Office 2007 Project Professional
    Office Visio Professional 2007
    As a antivirus I am using Trend Micro Internet Security Pro 2008
    Diskeeper 2008 Pro
    Nero 8
    Quicken Home and Business 2008
    WinRar
    I am using Microsoft Internet explorer V 7.0.6001.18000
    Thank you for your help. I have looked everywhere and I'm lost.

    You can get the same results (as turning protected mode off) by:
    (presuming you have an icon for Internet Explorer on your desktop or taskbar) -- right click the icon and pick "Run as administrator"
    I've got the same problem printing to pdf (Acrobat v8; problem's only in IE7) on a Dell Optiplex/Vista Business desktop machine (though not my T61/Vista Ultimate Thinkpad laptop) and the above resolves the issue for my desktop machine. Certainly not a fix but perhaps a clue to Adobe developers, on the [slim?] chance they read these posts.

  • Problem with trusted function

    Hi,
    My problem is I've created a form with a button to save it under a different filename.
    So from what I've read I'd to create a script with a trusted function, so far so good, in Adobe Acrobat XI anything works fine, I can save the form without any trouble.
    I've put the script inside: (Windows 7)
    C:\Program Files\Adobe\Acrobat 11.0\Acrobat\Javascripts
    The script itself had the follwing content (found here on the forum, just modified it so that an invoice number is added to the filename which is generated after form printing):
    var ProcessDocument4 = app.trustedFunction(function(cPath, InvoiceNb) { app.beginPriv();  // Build path root from current documen  // Split off the ".pdf" at the end (this is just one way it can be done)  var aPth = this.path.split(".");  aPth.pop();  var cPathRoot = aPth.join("."); // Now run the extraction loop  for ( var i = 0; i < this.numPages; i++ ) this.extractPages({nStart: i, cPath: util.printf("%s_%s.pdf", cPathRoot, InvoiceNb)}) ;  app.endPriv(); });
    Form on Button click:
    ProcessDocument4(aPth+"/", InvoiceNumber);
    Now the problem:
    What do I 've to do, to make the script work in Reader X on Windows 7?
    When I click the button there, I've got an error message telling me thats not allowed to save a copy of a filled form instead I've to ptint it out.
    So I thought I've to place the trusted function script for Reader X too, so I did and placed i here:
    C:\Program Files\Adobe\Reader 10.0\Reader\Javascripts
    Which didn't solved the problem.
    Then I was reading about that I've to save the PDF with additional rights for reader, so I did, no error but it still doesn't save the form.
    Now I'm a bit clueless how to make it work in both programs.

    Well, your answer is not really helpful though, its kind of: you can't drive a car without tires but your not explaining the op why...
    I've had a similiar problem last I've tested the function the op wrote and it works! The problem is located not because of the function, its the protected mode which causing problems.
    If you disable it, it works like a champ.
    So the question would be, at least for me: "how to rewrite the function so that even if protected mode is on, it still works"
    For the op, to disable protected mode in Windows 7 the fastes way I've could think of was the registry under (according to your reader version!):
    HKEY_CURENT_USER\Software\Adobe\Acrobat Reader\10.0\Privileged
    Change the Value from 1 to 0 and try again.

  • Release 4: File Folder icon missing in SQL Worksheet

    The file folder icon is now missing in the SQL Worksheet. Using File->Open just opens the file in the editor. There is no way to run the SQL file. Clicking on Run in menu across the top causes the "The target bogus.sql cannot be started because it is not a runnable target." error message.
    The help for "Using the SQL Worksheet" shows the file folder icon on the screen shot.
    How does one open a SQL file and run it in Release 4?
    Mike

    The File Open (or Open button on the main toolbar) works better in some respects - it opens in a SQL Worksheet (although not associated with a database connection), name s the tab with the filename, indicates a changed file by switching to italics in the tab name and requests confirmation on close if the file is modified.
    However, the default directory is the <SQL Developer directory>/jdev and the file type defaults to all.
    The Right-Click in SQL Worksheet opens the file from a default of C:\Documents and Settings\<username> (for me at least) with a file type of *.sql. The tab name is not renamed when opening the file (stays as the connection name) and there is no close confirmation if the file is modified.
    The File Open makes it harder to lose stuff, but is a bit more work to use. As redoing lost work is more effort than switching file types and potentially more directory navigation on opening, I think the File Open option is better than the Right-click, but I would prefer something with the File Open functionality from within an existing SQL Worksheet.

  • Keyboard not working (sometimes) when attempting to change file/folder name

    Every now and then, my keyboard doesn't seem to work when I'm trying to change the name of file or folder. I can't isolate any particular context when this occurs. When it happens, the keyboard works fine in other applications.
    Any ideas on why this happens?

    Here's a description of what happens. Let's say I want to change the name of a file or folder on my desktop. I click the item, then the name, and the name becomes editable. Every now and then, even though the file/folder name is in the edit mode (highlighted or cursor inserted), when I try to type nothing happens (the name doesn't change). When this occurs, the keyboard functions properly in all other ways.
    Again, I can't isolate the circumstances leading up to this. Any ideas?

Maybe you are looking for

  • Generics and Auto-boxing not working together

    Why does the following code produce a compile error: "Type mismatch: cannot convert from char to Character." public class X<Character> {      private Character c;      private Integer i;      public X() {           c = 'a';           i = 12; }Note th

  • I keep getting request for login with message "epublish.ardil.pt:80". I have no idea what it is.

    Hi guys i have this problem where i keep getting a message poping up on my ipod touch   saying " epublish.ardil.pt:80" and asking me for a pass and i have absolutely no idea what its all about. Any help figuring out this problem would be greatly appr

  • Playbook has stopped working unable to get support

    Hi  My 16GB wifi playbook was "Turn-Off"'d with 80% charge yesterday night. It didn't respond to the power button this morning. No LED no screen back-light. After some time my phone established a bluetooth connection with it but still no display. On

  • Is CS5.5 compatible with Snow Leopard?

    Hi I have an iMac OSX Version 10.5.8. I want to upgrade to Snow Leopard. I am currently running Dreamweaver CS5.5 11.5. If I upgrade my system, will my Dreamweaver still run right?

  • Regenerate Archive Data Object! Error

    Hi All, I have installed SAP NW Mobile EHP 7.1 Version. i am trying to upload NWMCLIENT02_0.sca using sdoe_upload_archive tcode, but it is giving an error Regenerate Archive Data Object!.  anybody pls help me to solve how to upload . Thanks in advanc