Folder level Javascript disabled for a user

Hi Gurus,
I created a folder level JS, it works fine on all computer here exept on one. On one computer, the javascript's in the pdf are working but the function called in the folder level script is not executed. (when it works on all the others). The script is in the right folder and the pdf works on other computers. Do I have to enable something in the preferences of acrobat reader 9.1. I checked the settings for JS in edit/preference and they are the same as for the others.
Thanks for your help guys.

All the script does it to generate a mail with the mailto function. The Preferences-JavaScript are set as on my pc. So it must be something else. If I email the pdf to my pc, it works, so the pdf form is fine, the script is the same as on my pc.
--- En date de : Mer 2.9.09, try67 <[email protected]> a écrit :
De: try67 <[email protected]>
Objet: Folder level Javascript disabled for a user
À: "antony clark" <[email protected]>
Date: Mercredi 2 Septembre 2009, 13h35
That's why I recommended to make a
test script, to make sure folder-level
scripts are working on this machine.
There's no setting to specifically allow folder-level
scripts. If they are
properly placed and JS is enabled then they will launch.
However, if your script inserts menu items you should make
sure that this
option is checked under Preferences-JavaScript, the second
check-box from
the top. You should probably check all 4 boxes, just in
case.
>

Similar Messages

  • Need help with folder level javascript to automate "save button" on a fillable form

    I have been racking my brain for the past 6 hours trying to get a simple save button to work.
    Background: I am using Acrobat Pro 11 to create a save button on a fillable form. My intent is for the end users (my team of 3, whos computers I have access to) to be able to fill out the form, click save, and have the filename appended with date and other info and saved to a local folder on their machine.
    I am attempting to take the default form name i.e. Support Call Log.pdf and have three of the feilds within the form generate a new file name. --> Support Call Log_Brad_121_2015
    End users will fill out the form using adobe viwer X.
    Instead of putting the code that I have tried, modified, and tried again and again. I would like to ask for a fresh start and then see if I can locate my error after. I need to know what to put in my folder level script, line for line.
    I also need to know the correct syntax and format to establish a new file name with the extracted feild data, saved to the same exact file path as the original document.
    Any and all help will be greatly appreciated, I am about to go crazy!!!

    Didn't let me do it, invalid. So, here is what I have now changed my button code to:
    //get field value
    var fv1 = getField("Technician:").value;
    var fv2 = getField("Date Received:").value;
    var fv3 = getField("Unit Number:").value;
    // Split Path into an array so it is easy to work with
    var aMyPath = this.path.split("/");
    // Remove old file name
    aMyPath.pop();
    var NewFileName = "Support Call Log" + "_" + fv1 + "_" + fv2 + "_" + fv3 + ".pdf";
    NewFileName = NewFileName.replace(/[\s\!\?\<\>\'\"\*\/\\\=\?\^\`\{\}\|\~]+/g, "_");
    aMyPath.push(NewFileName);
    //save
    mySaveAs(this,aMyPath.join("/"));
    Im still getting the error dialogue box, and nothing shows in my javascript debugger window when I click the button. Seems to be something goofy with my Folder level script:
    var mySaveAs = app.trustedFunction(
         function(oDoc, cPath, cFlName)
              cPath = cPath.replace(/([^/})$/, "$1/");
              try{
                   oDoc.saveas(cPath + cFlName);
                   catch(e){
                                  app.alert("Error During Save");

  • Auto update stats disabled for a user Database in Sql server

    While trying to improve the performance of few queries, we found via execution plan that there were lot of Index/Clustered index seeks. Therefore:
    First thing we did, was to check our Re-indexing and update stats job which runs weekly for this user DB ( Around 400 GB in size and is used 24*5). The job was running fine.
    Later when we ran SP_Blitz, we came to know that auto-update-stats is disabled for this user DB. We expected this to be a possible cause and change it from false to TRUE(Auto update stats)
    Also, per SP_blitz there are user-created statistics for this DB. When ran the query to check how many, we saw around 7K user stats out there.
    So my question would be 1) setting the Auto update stats to TRUE would require a reboot or once changed i need to track the performance and 2) Should we consider dropping those user created stats or manually look into them one by one.
    How should we proceed on this, please suggest, thanks!

    There may be good reasons for having auto-stats off, but those cases are not very common. It makes a little more sense to turn if off on table level. An example of the latter is a relatively small table, say < 100000 rows where not many new rows are added,
    but the existing rows are being updated frequently. This will trigger autostats, but probably without much benefit.
    But if you have a system which is very busy during peak times, you may not want autostats take resources during those hours. But if you turn off autostats, you will need to make sure that stats are updated in some other fashion.
    Here is a query that you can use review when your statistics last were updated:
    SELECT o.name, s.name, stats_date(o.object_id, s.stats_id) AS lastupdated
    FROM   sys.objects o
    JOIN   sys.stats s ON s.object_id = o.object_id
    --WHERE  s.user_created = 1
    ORDER BY lastupdated
    7000 user-created statistics sounds a little excessive, but I guess they were added to compensate for the autostats that SQL Server were not permitted to create. I would not recommend dropping these statistics, as SQL Server would spend cycles on recreating
    them.
    You should not have to restart SQL Server for the Auto-update stats setting to take effect; it takes effect immediately.
    Erland Sommarskog, SQL Server MVP, [email protected]

  • Is there a way to respond to Doc/Open events from a folder level javascript?

    I'm wondering if there's a way to respond to Doc/Open events from a folder level javascript. If not, is there a way to programatically add a Document javascript to a PDF upon/after export from InDesign?
    Thanks-
    Jeremy

    Bernd,
    Thanks for your reply. I take what you write to mean that I can add a document-level javascript manually once the PDF is exported. But this is what I'm trying to avoid.
    Ideally, I want to respond to Doc/Open events from a folder level javascript, but I'm not sure if/how I can make an event listener with Acrobat JS. If I can't do that, then I'm looking for a way to programatically add a Document level javascript upon export from InDesign - not manually within Acrobat, once the PDF is created.
    Any thoughts?

  • Folder created in System form and disabled for some users.

    Hi,
    I have created a folder in Inventory data form and work well for every users who have professional licence with R/W permission for that form. If a user with CRM licence access the Inventory data form, he see my folder disabled.
    If I put these users in R/W, all is OK : everyone can access my folder. But, I won't let it like this... If I won't grant R/W access to everyone and get back to R only, I will loose that property.
    Q: How to make that folder activated for all users what ever the licence he has ?
    Thank you.
    Edited by: Kevin Bedard on Oct 29, 2008 4:37 PM

    HI,
    The crm user has only R rigths in the license. I think the form is only in view mode (check the form mode from debug)
    Even the form is in OK mode, not view mode:
    Try:
    1. get the form_activate event
    2. Enable the folder even it is disabled.
    Regards,
    J.

  • How to diable only one field enabled and other fields disabled for one user group?

    Hi,
    I have a form contains many fields. A group of users can add items using that form.
    As per the user requirement I have created a filtered view and that filtered view can be seen by some other sharepoint user group but as per their further requirement the new sharepoint user group is only allowed to update Remarks field. All other fields
    should be disabled for them.
    In my idea, I have to create multiple forms and in one of it except Remarks field all should be disabled but I am unable to assign multiple forms to a single list.
    Or how to make Remarks field enable to this user group and for other admin user group all fields could be enabled.
    Hope I have expressed my question correctly.
    Any solution would be appreciated.

    There is no Out of the Box way to set permissions on each column, primarily due to the performance impact. The following thread provides some options,
    http://social.technet.microsoft.com/Forums/sharepoint/en-US/c0794232-9bab-4cea-91d8-f311a793a863/how-to-set-column-wise-permission-in-sharepint-list-in-sharepoint-2010?forum=sharepointadminprevious
    Dimitri Ayrapetov (MCSE: SharePoint)

  • Folder level javascript.

    how can i use getNthPageWord methode from folder level script.

    function SaveXml() {
    myFun = app.trustedFunction( function()
        app.beginPriv();
    if(this != 'undefined')
        try
           for(i=0;i<70;i++)
              var arr= new Array();
              arr=this.getPageNthWord(2,i);
              console.println(arr);
        app.endPriv();
              catch(e){
              console.println("error");
    }else
         console.println("undefined");
              console.show();
    and i am calling savexml methode in cExec: property of addToolButton.but it is not working please tell where i am making mistake.

  • Can OneDrive for Business be disabled for certain users?

    Is it possible to disable OneDrive for Business for certain users? If so, how? Thanks.

    you can remove the OneDrive for Business client for the certain users from their computers so that they cannot use it.
    http://community.office365.com/en-us/f/156/t/192252.aspx
    http://www.askvg.com/what-is-skydrive-pro-option-and-how-to-remove-it-from-context-menu-after-installing-microsoft-office-2013/
    My Blog- http://www.sharepoint-journey.com|
    If a post answers your question, please click Mark As Answer on that post and Vote as Helpful

  • Purchase Order Personal settings push button disable for particular user

    Hi
    I want to disable the acess to personal settings push button in purshase order creation (ME21N )..for selected user is it possible
    could any one help me in this issue
    Regards
    GS

    Hi
    I think transaction variant will help you check with abaper
    f you want to hide unwanted screens and fields in any standard SAP program without changing it, the use of the Transaction Variant is the best solution.
    check following link you may get some idea
    [http://wiki.sdn.sap.com/wiki/display/Snippets/TransactionVariant-AStepbyStepGuidefor+Creation]
    [http://www.****************/Tutorials/ABAP/TransactionVariant/Create.htm]
    Regards
    Kailas Ugale

  • Field "delivery block" (VBAK-LIFSK) to be disabled for few users

    Want to disable field "DELIVERY BLOCK"( VBAK-LIFSK) in t-code VA01 & VA02  for few users while creation and changing Sale Order.
    How to do it?
    Arul Murugan

    Hi,
    1. This can be achived by screen varient. t Code SHD0.
    2. Through Authorization you can restrict user from removing the delivery block. but u can not restrict them to insert the delivery block.
    for resrict from release check in authorisation role.
    Object :  V_VBAK_AAT
    Activity : Deselect the "43" acivity.

  • How to Disable for all users the in Private Browsing, by a reg key or modify a file into mozilla folder, like all other browser can do.

    I have 100 pc to monitor web history, but the only browser that we cant find a way to block in Private Browsing is firefox, Is there a way to do it . without any addons ..cuz addon is prohibed

    Install Firefox ESR and i use the software incognitogone to lock the private browsing and add FireFox to appLocker .. done .

  • Duplicate User Folder, Application Folder, Library, etc, etc for same user

    I just ran Omnidisksweeper and my Volumes folder is the largest with my active drive in it with my Users folders (9.6 gb), Desktop, Library, Applications, System. usr,etc. Below it in the hierarchy is Users (14.gb) with Desktop, Library, Applications, System. usr,etc.  My computer is really hanging and I don't have my Snow Leopard start disk to rebuild. Even when I get it I don't know which User Folder to keep. I can find the 14.0 user folder  which is my home folder but I can't locate the 9.6 gig User folder. Any ideas.

    Well if rebecca doesn't show up in the accounts it must have come from some old update or somewhere.  In that case then, yes, you could just trash it.  But I suggest you do it this way in terminal (cut/paste):
    sudo rm -rf /Users/rebecca
    The sudo will cause a prompt for your admin password.  The rm will delete the folder and there is not turning back one you do this.  This is faster than throwing stuff in the trash and avoids permissions problems too.
    Just in case though I would suggest you backup your drive before attempting this.

  • ASDM Privilege Level default 15 for Radius users

    So this may be a bit of a dumb question...
    I stumbled upon an ASA today that is configured to authenticate against a Radius server for SSH and HTTPS connections. If I log in via SSH, I can't gain a privilege level of more than 1 (tried login command, etc).
    However, if I log in with ASDM, I always have privilege level 15.
    Command authorization is not enabled.
    Is this default behavior. If so, why? Do I need to enable command authorization to override this behavior?
    FYI, the system in question is running ASA 8.3(1)
    Thanks much

    aaa-server RADGR protocol radius
    aaa-server RADGR host 10.2.2.2
    timeout 4
    key cisco123
    aaa authentication enable console RADGR LOCAL
    After logging in, use the enable command with your user password.
    http://www.cisco.com/en/US/partner/docs/security/asa/asa83/configuration/guide/access_management.html#wp1145571

  • Logmein disabled for Managed user

    Hey!
    I am a managed user with time limit parental controls and I have this app called Logmein (Google it). It basically allows me to remotely access my computer from anywhere where I have WiFi. Anyway, some things seem to be going wrong. Firsly, of course, I can't connect like I can when I'm Admin. Here is a screen shot of the icon in the menubar.
    Notice how everything is blank, like turn off logmein, etc. And then here is the actual app.
    Notice again how turn off is greyed out. Finally, here is the online web app.
    EDIT: No picture b/c of some Apple upload limit but you get the idea. Cannot connect.
    Any ideas?
    Thanks alot!

    Hey!
    I am a managed user with time limit parental controls and I have this app called Logmein (Google it). It basically allows me to remotely access my computer from anywhere where I have WiFi. Anyway, some things seem to be going wrong. Firsly, of course, I can't connect like I can when I'm Admin. Here is a screen shot of the icon in the menubar.
    Notice how everything is blank, like turn off logmein, etc. And then here is the actual app.
    Notice again how turn off is greyed out. Finally, here is the online web app.
    EDIT: No picture b/c of some Apple upload limit but you get the idea. Cannot connect.
    Any ideas?
    Thanks alot!

  • PDF Form Javascript for getting User LoginName

    Please let me know PDF Form JavaScript for showing User Login Name (login id) in the Text Field (text1), when using Button (button1).

    As noted there has to be a special folder level script installed on each user's system. This script can be written to access individual properties of the identity object or only a specific property. One can also create a function to access the identity object or even create new properties.

Maybe you are looking for

  • How do i transfer an ibook from desktop to macbook pro

    I have a second hand mac book pro and need to transfer my ibook files from a desktop to the laptop. How do I do it?

  • Technical Upgrade from XI 3.0 to PI 7.1

    Hi, My client is going for Technical Upgrade from XI 3.0 to PI 7.1 not fresh installation. They are asking for How best we can achieve this. I have gone through Decision making document and upgrade document from SAP. Apart from which please provide m

  • Maxl Script running Issue in Essbase 11.1.2.2

    Hi All, We have a Maxl Script which takes Level 0 Backup of the Database. We have migrated the apps to the new server 11.1.2.2 and this script is not running in the new server but it works fine in the Old Server.We have the code like this in the scri

  • Transfering data between H.Planning applications

    Hi all, I would need some help with transfering (synchronizing?) data between two Hyperion Planning applications. The source application has less dimensions ( just 8) than the destination application (13 dimensions). And we know there is one of the s

  • Looking for non-specific hardware recommendations

    Let's start by saying I am an avid amateur photographer who uses Photoshop CS5 and Lightroom 4 on a Windows Laptop with the following specs: Windows 7 Home Premiium Intel i7 Q820 @ 1.73GHz 8G ram 750Gb hard drive 7200rpm ATI Mobility Radeon HD4670 Ba