How do I assign an action to view a specific page in Acrobat XI?

I want to create a button that, when clicked, will take the user to a specific page in the same document. I do NOT want a text box to pop up asking what page to go to, I want it to automatically go to page 4 with no other input from the user.
HELP!!!
Thanks!

If you want to be able to set a more exact location on the page (not just a page number) you can use the built-in "Go to a page view" action. After you add the command, just scroll to the location you want to link to and then click the Set Link button in the floating window.

Similar Messages

  • How can I assign a action to a button of the many scripts in the script file.

    How can I assign one action of many actions in a script file.
    I have many actions in a script file and I want to run one of them by clicking a button on the panel. However, loading the script I can not isolate the action that interests me.

    Hello,
    Try System Preferences>Energy Saver>Options tab, uncheck Allow power button to sleep computer.
    Some possible other options...
    Control-Eject
    The dialog box "Are you sure you want to shut down your computer now?" appears with options to Restart, Sleep, Cancel or Shut Down. After the dialog appears, press the R key to Restart, press the S key to Sleep, press the Esc key to Cancel, or press the Return key to Shut Down.
    Control-Command-Eject
    Quits all applications (after giving you a chance to save changes to open documents) and restarts the computer.
    Control-Option-Command-Eject
    Quits all applications (after giving you a chance to save changes to open documents) and shuts the computer down.
    Command-Option-Eject
    Puts the computer to sleep.
    Shift-Control-Eject
    Puts all displays to sleep.
    Power button (if the computer is not responding)
    Press and hold the power button on the computer for six seconds to shut down the computer.
    http://support.apple.com/kb/ht2448

  • How do I assign an action to a user at runtime in GP?

    Hi All,
    Can anyone give me an insight to how I can assign an action role to a user at runtime? My GP has around 7 actions. One of the actions determines a portal user via a RFC. The user id (portal id) returned by this RFC is whom I want to assign to the following action in the block. How can I achieve this?
    Thanks in advance,
    TM.

    Interesting disucssion..:) yeah You are correct you assign user to Role. But you also assign role to action by consolidating the action in one role in role consolidation of process.
    You can not assign the processor of action to action. Lets make it simple, I will try to explain the trick in simple terms.
                      Action    Input           output                                       Role              
    [                        A       -                 UserId ( UniqueID )                   Inititator ][UserRoleAssignment) B      UserList-UserIdentifier                        ProcessorB   ]
                        [      C       X                   X                             ProcessorB   ]        
    Now what happens in Action B is user which is input get assgined to Role ProcessorB ( becuase it is of that kind of callable object). Since once the user is (user-U) assigned to ProcessorB any of the subsequent step which needs to be performed by ProcessorB can be performed by  the same user user-U.
    Now I have explicity assigned the Action C to be in the same Role ProcessorB so it will be performed by user-X
    One more thing the userID which you have output is uniqueID not the logonID it has to be like USER.PRIVATE_DATASOURCE.un:00000006.
    And the ProcessorB needs to be defined as RuntimeDefined.
    Hope it make sense.

  • How do you make a Spry menu view on all pages but only have to change it one place?

    How do you make a Spry menu view on all pages but only have to change it one place? Someone told me maybe I could create a Library item. Any help will be appreciated.

    If your pages all have the same basic design, using a DW Template would be a way to do it...
    http://help.adobe.com/en_US/dreamweaver/cs/using/WScbb6b82af5544594822510a94ae8d65-7abea.h tml

  • URGEN: How to programmatically assign bind variables in View Object

    Hi,
    I have a method action in my pagedef
    <methodAction id="SetBindAttributeValueToQuotationsView"
                      InstanceName="QuotationsEBAppModuleDataControl.dataProvider"
                      DataControl="QuotationsEBAppModuleDataControl"
                      MethodName="SetBindAttributeValueToQuotationsView"
                      RequiresUpdateModel="true"
                      Action="999" IsViewObjectMethod="false">
          <NamedData NDName="quotTransNo"
                     NDValue="${bindings.SetBindAttributeValueToQuotationsView_quotTransNo}"
                     NDType="java.lang.Integer" NDOption="2"/>
        </methodAction>Im going to assign values to the bind variables and use the method action in my pagedef.
    Thanks.

    hi
    u check ur view name & page def binds value,
    both of them should be same
    thanks

  • How can we assign an action triggered by an event to a Background job?

    Hi All,
            At the moment we are having an on click action event "EXECUTE"  [GSACTIONS/ActionOV ->eh_onexecute] , on click of this event , it is triggering a BADI which has a rewritten method "IF_EX_EXEC_METHODCALL_PPF~EXECUTE" in which we have our custom code. This BADI is being called by an action configured in "ACTION PROFILES".
            Now , we need to find is a way to implement this in the background.
    1) I was trying to use RSPPFPROCESS report,Is there any way this could get triggered automatically when the on click action(execute) is clicked.
    2)The other thing i tried is to copy the code to an executable report program , open a job for it,scheduling it in background and closing the job in the method .But the method has a return parameter "RP_STATUS" which has to get the value from the report. The problem is unless the scheduled job is done the rp_status cannot be returned and as this is in background the rp_status is by default becoming 0 which means failed.
          Any suggestions on how could i implement the above scenario.
    Thanks in advance,
    Mithun

    Hi Tapash ,
    Actually my requirement was not to submit the form to controller .
    I got the solution for that . I have registered a JavaScript function to the MessageText in PR as
    pageContext.putJavaScriptFunction("callMethod","function callMethod() { var first=document.getElementById('First').value; ");
    OAMessageTextInputBean GoalTextBean2=(OAMessageTextInputBean)webBean.findChildRecursive("Second");
    GoalTextBean2.setOnBlur("callMethod()");
    Regards ,
    Srikanth

  • How do you invoke an Action prior to an initial page?

    Is there a mechanism in JSF that allows action code to run prior to the first page?
    Basically I want to do some processing in the context of JSF before displaying the initial application page.
    In Struts I was able to do this by defining an action-mappings action that referenced an action class, and from that action I could forward to another action-mappings action that was a JSP.

    This seems rather complicated and is not straight-forward. I need something similar: Before the first Render Response phase of a view I'd like my application to process any parameters that were passed via a non-faces GET request and set up my application and the JSF components appropriately. In other words, instead of the initial Restore View -> Render Response I'd like to have the full sequence of Restore View -> Apply Values -> Process Validations -> Update Model Values -> Invoke Application -> Render Response.
    For example, depending on the request parameters I'd like to forward the request to one or the other JSF view. And I cannot do that in the Render Response phase because doing it The Faces Way is only possible in the Invoke Application phase - which is not invoked upon a view's initial use.

  • How do i assign new portal desktop to the specific user or group?

    Hi all
    I created new portal desktop, and i want to assign it to the specific user or group.
    Can anybody help me regarding this.
    Help appreciated
    Thx
    PRadeep

    Hi Pradeep.,
    1. add a new 'IF' rule.
    2. Edit it in the edit section (above the 'IF's part) to 'user' (in the dropdownlistbox) = <userid> (free text).
    3. Press 'Apply'.
    4. Edit the 'Then' section of the new IF to show the new portal desktop. You can add the full desktop's id by right clicking on it in the 'browse content' section if the screen (where you opened the Display Rule from) and choosing 'add portal desktop to expression'.
    5. Press 'Apply'.
    6. Move your 'IF' up. Display rules are evaluated from top to bottom until the first one that applies.
    Hope that helps,
    Yoav.

  • How can I tell if I'm viewing a secure page in Safari (8.0.2)?

    My safari browser does not display the lock to make sure i am on a secure site.

    From the Safari menu bar, select
              Safari ▹ Preferences... ▹ Extensions
    Turn all extensions OFF and test. If the problem is resolved, turn extensions back ON and then disable them one or a few at a time until you find the culprit.

  • How to hyperlink from a pdf file to a specific page in a second pdf file

    I would like to setup a set of pdf documents, on the hard disk of a PC or Mac, that can be open in acrobat pro and have hyperlinks that jump to, and open in a new window, in acrobat pro, to a given page of a second document in the set.
    It seems to me to be something that everyone would want to do and should be simple enough.
    But I seem to be missing something.
    I had partial success a few years ago using what I recall are the following general points:
    Create files in word,
    Use absolute address
    Use / not \,
    Converting the spaces in the address to %20
    Set the hyperlink base to “file:///T:/PdfDocumentsFolder/”
    Add location with  #page=3 to end of file name, 
    Convert to pdf with acrobat pdfmaker
    Open pdf with web browser into reader.(could not get it to work on mac with OS 9) by Checking Edit-Preferences-Internet-Web Browser Options-Display PDF in browser
    This will allow the pdf to open to a given page, but only in the acrobat reader under MS IE, Not in Acrobat pro and not on a mac even in the reader.
    Now I have a large (500) PDF documents with a very large number of comments and a key user switched to a Mac and can not automatically go to the page and would lose or have to transfer comments that have been made on the pdfs.
    I have looked at and tried a number of things that have not worked:
    Change all the links by hand:
    Tools-Advanced Editing-Link
    Action-Open file
    I can not see where when Inserting a link by hand one can place the page number
    Action-Open weblink
    Close, This can open a file,
    If Edit-Preferences-Internet-Web Browser Options-Display PDF is checked it will jump to a page
    But if it is not checked it will open in acrobat pro and not to the page
    Does not seem to work on a mac
    Looked at acrobat javascript
    Don’t seem to see any method that would allow a page number
    Under open document
    Open under a URL
    app.launchURL("Document.pdf", true);
    seems to error if a #page=2 is add to file name
    Looked at security
    Don’t seem to see that there is anything in the preferences that can be set to enable the jump to page action
    Looked at privileged and non-privileged and did not see how that would help
    Looked at adding disclosed=true;
    function Disclose()
    this.disclosed = true;
    Looked at Portfolios to see if some kind of group of documents would allow the jumps but could not find a solution.
    I have not looked at bookmarks to see if I bookmarked every page “Pagexxx” and then jump to the bookmark would get around the problem.
    So I am not getting the right combination and could use some help
    Thanks
    John
    Current Systems in use:
    Windows XP
    Acrobat 9 pro version 9.4.4
    Or
    Mac OS 10 Lion version 10.7.4
    Acrobat 9 pro version 9.5.1
    (note I have limited understanding of Mac’s)
    P.S.
    In a similar vain within the word source documents I was able to get a hyperlinks to make the same kind of jump to a page using a VBA macro with the following call:
    Shell "C:\Program Files\Adobe\Acrobat 9.0\Acrobat\Acrobat.exe  /A page=" & iPageNum & "&Zoom=125=OpenActions """ & sHyperlinkBase & sHyperlinkAddress & """", vbNormalFocus
    After parsing the hyperlink and to get file name and  the page number
    So I know acrobat pro can be called as an application to jump to a page

    Thanks for that information.
    I did not see that the “go to view link” could change documents. I thought it was only within a document.
    I manually added two “go to view links” and that seems to work on both mac and pc computers.
    That brings up two questions.
    For old files can a acrobat java script batch file be setup to read the hyperlinks in a pdf document  and replace them with a “go to view link” style?
    Can one place a “go to view link” style in a word document and then have the adobe convert to acrobat process it into the pdf format with the rest of the document? (or set up the converter to make word hyperlinks change to pdf “go to view links”?

  • How can i refresh an SSL certificate for a specific page?

    i am trying to access my electronic training jacket on Navy Knowledge Online to check the status of my security clearance. the ETJ page requires an SSL certificate. when i initially loaded the page the message window popped up prompting me to add the security exception and get the certificate. i got the certificate and continued to load the page but it came up with HTTP error 403.7 saying that i didn't have the certificate i needed. for some reason NKO isn't recognizing the certificate i got so i need to clear that certificate and get a new one that hopefully the server will recognize. how can i do this?

    You can try to remove that certificate here:
    Edit > Preferences > Advanced > Encryption: Certificates > View Certificates

  • How to automatically login to apex and run a specific page / application

    Hi all.
    I'd like to know if there is a way of automatically login to apex and run a specific page / application. I mean, invoke browser and pass the necessary information to login (not public user) and run a specific application( ina secure way if possible).
    Thanks in advance ...!

    Hi,
    Well, as a very crude test you can set your authentication scheme to be Application Express Authenticationand define some users in Apex. Then create a before header login process on the login page (101) to automatically logon containing:
    apex_authentication.login(
        p_username => :P101_USERNAME,
        p_password => :P101_PASSWORD );
    :P101_PASSWORD := NULL;conditional on P101_PASSWORD is not null.
    Then you can login by specifying your username and password in the URL e.g.
    f?p=YOURAPP:LOGIN:::::P101_USERNAME,P101_PASSWORD:username,password
    Rod West

  • BDT - Assign a new Tab to a specific Role

    Hi,
    how can i assign a new Tab to a specific Role for example BUP001.
    BR
    TomSd

    I believe normally this is configured by Basis during installation. And in most of the scenarios, it is same as you described. i.e. its asks Package/Transport in R/3 but in BW it stores default in $TMP. Well you can always do this - create object in R/3 - assign package and transport and then later delete object from transport and transport, if you dont want to send that object to further systems.
    Abhijit

  • Icon on ALV..How to assign an action to it ?

    Hi
    I have got a LinkToAction icon in the column of an ALV table. How to assign an action to it..
      DATA: lr_icon_action    TYPE REF TO cl_salv_wd_uie_link_to_action.
      CREATE OBJECT lr_icon_action.
      lr_icon_action->set_image_source( 'ICON_INFORMATION' ).
      lr_col->set_cell_editor( lr_icon_action ).
    How to assign an action to this icon ??
    Regards
    Sukanya

    SOLVED:
    I found a solution for me:
    I forgot all the previous code and with a class implementing ActionListener like this:
    class ClickImagen implements ActionListener
    public void processAction(ActionEvent actionEvent)
    <do something>
    And assigning a ClickImage's object to my component's ActionListener turns all ok:
    miImagen.addActionListener(new ClickImagen());

  • Use WebDynpro : How to Assign a Action to Image

    Hi
    i am trying to create a ICON kind of stuff using webdynpro
    all i need is i have image , is there any way i can assign a action to the Image.
    For Example
    if you look over the
    http://<sever name>:<port no>/index.html  ---> SAP NetWeaver Administrator --- Here we find a icon as Administrator
    iam  trying to do sth similar to this.
    can any one help me on this .. its Urgent
    Thanks
    Ramesh

    Fine
    how abt using LinktoAction UI , and assign a Image to its sourcetype,
    i tried this , its working,
    But the problem is , while assinging a Action to this Link , the action will be displayed below the image. during runtime...
    is there any way to remove or make it invisible so that we see only the Image.
    Thanks
    Ramesh

Maybe you are looking for

  • How can i bind something to caps lock in AwesomeWM?

    Recently i've aquired new notebook which doesn't have caps_lock, num_lock and scroll_lock LEDs, so i decided to put keyboard layout indicator to system tray. Currently i am using Xorg config to set XkbLayout and XkbOptions (like so http://paste.pocoo

  • Can I make a new itunes account for my daughters ipod but not clear out my itunes

    We only have one computer now and I want my daughter to be able to use and upload to her computer without affecting my itunes music, what do I need to do? and can this be done?

  • Embedding swf in web page

    I think others have addressed a similar situation and resolved by embedding the .flv file into the webpage, using "insert Flash Video" feature of Dreamweaver. However, I want to insert my .swf because it includes actionscript and includes an FLVPlayb

  • Bookmark Icon won't go away on homescreen

    I had an iPod Touch I was using for the past couple of years and then recently upgraded to an iPhone 3GS. I had a Digg bookmark icon that I deleted long ago. On my iPhone during every sync it always comes back. On the iPhone I always delete it but th

  • Accessing SMB/Windows Shares on OS X

    I have an invisible windows share called public$, which I allow anyone to (read-only) access on my network. But to be able to access it on a mac I had to give it a password. Are there anyways around this password problem? On windows machines I am abl