Auto exit Acrobat Reader on the last page

I don't know if it's possible, but I try to auto exit Acrobat Reader when the last page of the PDF file is reached (after a short delay). That's what I did:

  • On the last page, added a couple of the Page open actions:
    • First action is to execute a JavaScript script with this code to delay of 10 seconds:

app.fs.timeDelay = 10;

app.fs.useTimer = true;

app.fs.usePageTiming = true;

    • Second action is Execute a menu item:

File-> exit

Unfortunately the file-> exit action seems to be deleted (I use Acrobat Professional 9 Professional on Windows 7 x 64.

Is there a way to do this?

Thank you.

You can close the current file, but you cannot close the application itself by using a script.

Tags: Acrobat

Similar Questions

  • Acrobat Reader on the iPad does not display text

    Hello.

    I don't know what happened. I use the latest version of the Acrobat Reader application for iPad.

    Since last week, all of a sudden all the texts disappear pages. I can see the background images, and sometimes the text reappears for awhile, but will disappear immediately.

    I am able to select the text (that is, it recognizes that there in fact text here) and even use functions such as 'set', but not see.

    I thought it was a police problem, but the same things happen in the documents that I have worked with several times.

    I also found several times, it will display the text a little blurred, and instead focus it (as he did in the past when this happened), he disappears.

    Is this a problem with the last update of the player?

    Thank you very much for the help.

    Hi nimrodyanai,

    We just released Acrobat Reader for iOS version 15.4 on 23 January 2016.

    This version includes the special snag you have met.

    Would you please try it and let us know if it works for you?

    If you have problems with Acrobat Reader on the Apple App Store update, please take a look at the following page for advice: http://adobe.com/go/updatehelp

    Thank you!

  • Open to the last page displayed in AR DC

    Recently, I downloaded Acrobat Reader DC on my computer, but I used to close a PDF in AR X and be able to reopen in the last page I look at one.

    Unfortunately, this is not the case here. I tried to go in 'Préférences' and under 'Documents', audited "restoring last settings when reopening documents" and nothing has changed altogether.

    Can I reinstall?

    Thank you

    A.

    Hi shizuko193,

    Yes restore display settings last... options should work. Just try to reinstall DC.

    DC using uninstall cleanup tool: Download Adobe Reader and Acrobat tool - Adobe Labs

    Download DC here: Adobe - Adobe Acrobat Reader DC Distribution

    Thank you

    Abhishek

  • Can I print the last page of a PDF document using the command line?

    Hello

    I'm in a situation where I constantly have to deal with several documents in PDF format, and I need to print the last page in each of them and ONLY the last page. The total number of pages vary for each file, so the page to the last page number will also vary.

    I really prefer to not do it manually, to open each file in the visible window of Adobe Reader, and then print.

    Question:

    Is it possible with Adobe Reader (perhaps with the help of another Adobe product) to print only the last page of a PDF document using some sort of command line without having to open the PDF file in the Adobe Reader window visible?

    I use Windows.

    Thanks in advance,

    Kind regards

    Emil

    Hey, I've just set up a measure of inquiry by accident. That's really bad thinking. Here's what to do.

    When the "Create new Action" checkbox is shown...

    Choose Start with: a file open in Acrobat

    DO NOT CLICK on add a step statement

    Open tools more

    Click once on run JavaScript

    A blue line to run JavaScript must appear on the right side.

    Click on the small box under Options inside the blue line

    A JavaScript editor should appear; Enter the program, and then click Ok

    To save in: select do not save the changes.

    Click Save

    Give a name; you don't need to enter a description (although it won't hurt if you do).

  • I have Firefox 9.0.1 and everytime I restart it, it automatically goes to the last page visited. I have a homepage set to attend. Why it does this and how can I fix this problem?

    I close Firefox... any time later reopen it and it goes to the last page visited. Even though I have a homepage set.

    Make sure Firefox is closed correctly to avoid log may be overwritten.

    Use ' Firefox/file > output "(Mac: ' Firefox > quit smoking";) Linux: "file > exit ') to close Firefox if you're doing that by clicking on the X close in the title bar.

  • Acrobat Reader DC > tools > organize Pages

    The company I work for bought Adobe Creative suit CC (2015) and I can't use the tools in Acrobat Reader ms (as Pages to organize it), why is this? He throws me on a web link to buy it, but we already bought it! With respect to other programs (such as Ps, AI,...), they work fine.

    Install and use Adobe Acrobat DC. Acrobat Reader can not organize pages.

  • required solution: how to put some text on account of the position of the last page in the form?

    Hi friends,
    I need your suggestions of urgency the problem described below. Long story somehow. Appreciate your interest & suggestions.
    ==============Clip==============
    I have a requirement of form design some text content to appear only on a fixed position of the last page.
    The form will be multi-page.

    Here's the way I tried

    (1) on the master page:
    Add text object lblEnding (w = 176mm, h = 45mm)
    Wrap lblEnding in subform (frmEnding)
    Do frmEnding on on-call position (x = 20 mm, y = 200 mm, l = 176 mm);


    (2) on bodypage:
    Add text object lblBlank; (without border & transparent). He used to occuping the area of the page to the bodypage flow
    Wrap lblBlank in the frmBlank subform, sank, from top to bottom.

    (3) Note: The last mandatory content of the form template is a subform, called frmInfoBlock.

    OK, so for my part script here.
    ---------------------------------------------------
    (1) on the master page:

    For configuration frmEnding only appear on the last page
    To control the presence of frmEnding based on pageCount()
    use of scripts on frmEnding
    //
    FormDeliveryNoteNotification.. mstMasterPg1.frmEnding::ready:layout #pageSet [0] - (JavaScript, client)
    If (xfa.layout.page (this)! = xfa.layout.pageCount ()) this.presence = "hidden";

    (2) on Bodypage:
    To control the presence of frmBlank based on its position (property 'y')
    use of scripts on frmBlank
    //
    FormDeliveryNoteNotification.bdyPage1.frmBlank::ready:form - (JavaScript, client)
    var y1 = this.y;
    var y2 = frmInfoBlock.y;
    H2 var = frmInfoBlock.h;

    var yNum1 = parseInt (y1);
    var hNum2 = parseInt (h2);
    var yNum2 = parseInt (y2);

    This.Presence = "visible";
    If (yNum1 < = "200")
    {
    If (yNum2 + hNum2 < "200")
    This.Presence = 'hidden ';
    }

    ---------------------------------------------------

    Later, I found that it worked as expected.
    With regard to the property 'y '.
    > > > >
    Specifies the y of the anchor point of a container compared to the upper left corner of the parent
    container of when placed with square layout.
    Container whose content has flowed do not use contact information.
    > > > >

    As subforms Inc. frmBlank & frmInfoBlock that all are flowed, variable above scripts, always have value as below (according to my result of debugging)
    Y1 = 0 in
    Y2 = 0 in
    H2 = 0 in

    As a result, yNum1 Inc., yNum2, hNum2 are always 0.

    As a result:

    frmBlank will be always hidden

    If only 1 page, bodypage County can be superimposed with the page master frmEnding.

    ==============Clap==============
    Hope I described things clearly. : PEI

    Can you give your suggestions as another suggestion.

    -VickyX

    Hi Vicky,

    See if this helps you: https://acrobat.com/#d=Qjw-* ATV-gNdWjP * rlx2HA

    Find the line that serves as a marker for coordinates. The script is located in the spacer subform.

    Good luck

    Niall

  • Add a field to the last page of a document file only

    Hello

    Currently, I have a script which will add signature fields and the text on the first page of a document.

    The script is required to specify the "last page" of the document and not the page number, because each file can vary depending on the number of pages.

    The script is running in the batch on several files that are not open (usually 50 at a time).

    If someone can advise please how to change the script, I'll be very grateful.

    Create the field dynamically Date for signature of the employee field


    var f = this.addField ("Todaydate", "text", 0,
    [60, 54, 135, 75]) ;

    f.userName = "today's Date";
    f.Value = 'auto update';
    f.ReadOnly = true;
    f.fillColor = color.ltGray;

    Create the signature dynamically for employee field


    var f = this.addField ("mySignature", "signature", 0,
    [120, 85, 330, 105]) ;

    f.setAction ("OnFocus", "var f = this.getField('Todaydate'); ("f.Value = util.printd (a/mm/yyyy", new Date() ");") ;

    Change the third parameter of this.addField from 0 to this.numPages - 1

  • How to insert a page in a section, but NOT like the last page?

    How to insert a page in a section, but NOT like the last page?

    and how to integrate fonts in a pdf export?

    How does choose a 5.5 x 8.5 book format?

    Adding pages to get to the end.  You can, however, keep typing to the point you need to add a page. Once the page seems to make corrections.

  • The default home page is not loaded at startup. The last page visited is in place. Default V32.0.3 in the options is set correctly.

    Tools-> Options-> general-> Firefox starts-> show my homepage--> homepage--> http://www.bing.com

    It comes down to the last page visited.

    You to include information about your system, it shows that you have a user.js file. This is a file of optional parameters with Firefox checks when it starts and is used to override the settings from your previous session. Sometimes, the command to restore the previous session is in this file. You can it track down and remove it by following the steps described in this article: How to fix preferences that will not save.

    A little luck?

  • When I close Firefox and then open it again, the last page I had opened remains open when my new page loading. Didn't help not clear my history and cookies.

    When I close Firefox, windows that were open when I closed Firefox are still open, when I click on a link to open a new window. I cleared my history and cookies and even uninstalled and reinstalled Firefox but that did not work. I had this problem since upgrading to version 29. This isn't the only problem I have had with version 29. Anyone else had problems with version 29?

    I ended up going in the settings to erase history and define it for clear history when Firefox closes and you select to erase history and kitchen and browsing history, the closing of Firefox. Now the links work very well and the last page I was watching until I closed Firefox is gone when it opens again. Problem solved!

  • When I open my browser, it doesn't fit to the homepage, but the last page I was on in my previous internet session. Whats going here?

    OK, so I opened my Firefox browser, but when he opens up he won't go to the home page. He goes to the last page, I realized in my last internet session. My home page is http://www.usautoparts.NET/BMW/Hydrogen/Schwarzenegger.htm but let says I'm on www.facebook.com and then I close the window. If I reopen firefox it will go to the facebook page and not the home page. This happens all the time and sometimes even after that I restarted the computer. He always goes to the last page I visited. As this page for example where I posted a question. Once I close firefox, and then open it again, it will come on this page and not the home page. If it's supposed to happen? He began that happened a few weeks back. I reinstalled it and it still happens. Thank you.

    Hi eaglerabbit,

    It is a pretty easy fix. Just go to Tools > Options > general and change the preference that Firefox should make at startup. You have probably set to load tabs and pages of your previous session.

    If this does not work, you should look at article Knowledge Base How to repair preferences that will not save.

    Hope this helps!

  • When you type an email etc. Satellite A300 - 16 c jumps to the last page

    Hello

    Can someone help?

    I have an a300 - 16 c.
    This problem is in my head.
    When you type an email etc. the computer jump back to the last page.
    It takes forever to do, I can do?

    Cheers in advance

    catch71

    First, what operating system are you using?

    What the page you mean exactly and have you checked if you didn't push the extra buttons accidentally?

  • How can I get Safari to open in my homepage instead of the last page, I looked?

    Hi everyone, how can I get Safari to open in my home page or a page chosen instead of the last page I was looking at all the time? I keep trying to change this in Safari preferences, but I'm obviously something wrong? It doesn't matter what changes I make in the Safari preferences no matter what I do everytime I open Safari it opens just the last page I was looking at all the time?

    See you soon.

    Normally, you just go to Safari - attendance - general and set up your homepage.

    However, if she does not work for you, try the following steps.

    Go to the Safari menu (at the top right of your screen next to the Apple icon), choose 'Quit Safari'

    Press the "Shift" key and while holding this button on your unique keyboard, click the icon of Safari on your Dock.

    Open Safari - Preferences - Privacy - data to remove any Web site.

    Open the menu to go with the Option (Alt) key - library - key locate Safari folder and place it on your desktop. Restart your Mac, open Safari and delete the file from your desktop.

  • HP Ps 309 a ADF (automatic document feeder) is good until the last page (copy, fax, scan) food

    ADF (automatic document feeder) is good until the last page (copy, fax, scan) food.

    The last page will scan, copy or fax.  But the charger will not expel the last page completely out of the feeder.  The last page will be halfway on the bottom of the feeder.  I searched this site and a few others and can't locate an answer.  I have seen the centre solution and also files with no joy help...  Help please.

    Try the reset in 'step 4' of this document:

    Reset

Maybe you are looking for

  • HP TouchSmart 300 connection issues

    Hi, I have a HP TouchSmart 300 with Windows 7 Edition Home Premium that I bought in 2008. Yesterday morning it was working completely fine. The end of the night when I turned it on again, it took a while to start and join the log on screen. I was thi

  • Bootcamp on my mac with win 10, after reboot, nothing happened?

    Help me please, I have following the statement as it appears on several tutorial on youtube, apple support forum, etc. I download windows 10 x 64 ISO on windows web then I plug the sdhc with my card reader into the usb drive Open the bootcamp assista

  • IR hotsync problem: "because the port is in use by another application."

    I finally got my system operation.  Sony Clie TJ - 25 pda, Palm Desktop 4.1, Windows 7 64 bit.  Very delicate balance.  I failed to install the new software released by aceeca.  I finally got it by infrared hotsync.  Several times. Now, today, I get

  • game freezes on the refused window__missing on reinstall__access file

    Nobody here seems to FIRST, had answers to their questions. We look elsewhere for the answers? Another forum or address? I had a computer that reqularly crashed each month for two years. I think it was a "joke" of a psycho stalker hacker who thought

  • Updates unwanted Windows will pass anyway

    I do NOT download the updates of windows, because they are evil, crash my system, make old software I like obsolete. I him did NOT since mid-October. I can view of actual updates installed in the "installed updates" Still... If I search just: "Update