Hyperlinks to excel in specific documents within the portfolio.

Hi, I would like you to click on a link to excel that would open a specific document within the portfolio. Is this possible? Currently, we use a code that is 'filename.pdf #page = X' in the hyperlink in excel. ThanksHyoer

Hi pas7a

No, it is not possible, you can link to a file specific pdf to excel, but you cannot link Excel to PDF in a pdf portfolio.

Kind regards

Rahul

Tags: Acrobat

Similar Questions

  • List of documents within the container with pages/tabs in order to avoid a long page & Archives

    I need to create a document library in descending (from most recent to oldest) for the customer's Web site. Similar to a blog that the message the most recent appears at the top, but without all the photos - it will be just links to documents. I would like to be able to see ten of these documents on a single page and have an archive of older documents with a sorting function without having to duplicate or retyping content. I can't find a widget that allows this functionality.

    Can you suggest a 3rd party widget or a workaround?

    Here are some examples that are similar to what I'm trying to achieve. Any help would be greatly appreciated!

    The Chamber of Commerce of Grand"events

    Town of Grand Island, Nebraska: City Council meetings

    I have no suggestions, but all the widgets associated with Muse are listed on this page. You can filter by their type and chooose widgets one that best fits your needs.

    Adobe Muse Widget Directory

  • How to get an overview of a document within the framework in my application

    Hello

    I have an ADF project that integrates with Cloud Computing service for the oracle document

    I can download, download, create folder, delete the folder and file list version using my ADF application.

    My problem is one which is how can I preview the document on cloud of in my adf page. I don't want to download the file, I want to see it.

    I tried to accomplish this task, but I faced this error

    but this error occurs

    java.lang.RuntimeException: failed: HTTP error code: 400

    State Info: Bad Request


    What follows is the source of the page

      <af:panelStretchLayout id="psl1" binding="#{backingBeanScope.backing_WEBINF_fragments_previewDoc.psl1}"
                               dimensionsFrom="parent" topHeight="250px" endWidth="50px">
            <f:facet name="center">
                <af:panelBox text="Preview Area" id="pb4"
                             binding="#{backingBeanScope.backing_WEBINF_fragments_previewDoc.pb4}" type="stretch"
                             styleClass="AFStretchWidth">
                    <f:facet name="toolbar"/>
                    <af:inlineFrame id="if1" source="#{cloud.frameSource}" partialTriggers="b1"/>
                  
                   
                </af:panelBox>
            </f:facet>
            <f:facet name="top">
        <af:panelBox text="Preview Uploaded File By File ID" id="pb2">
                        <f:facet name="toolbar"/>
                            <af:inputText label="Enter File Id" id="it1"                                     
                                          value="#{cloud.fileId}" placeholder="Copy and paste the file id here"/>
                            <af:button text="Preview" id="b1"                                 
                                       action="#{cloud.viewFileAction}"/>
                       
                    </af:panelBox>
                </af:panelGroupLayout>
    

    When the user click on the Preview button, the document should be included as part of the line

    It is the method that returns the string url of the document. To be honest, as this method is not mine, I took this post How to integrate oracle doucument cloud service at my request

    And I add a few modifications to this

    public String getFileUrl() {
    
    
            //Read properties file to get host, port, contextroot, username, password
            try {
                m_protocol = SamplesUtils.readConfigFileValue("protocol", m_cfgFilePath);
                m_host = SamplesUtils.readConfigFileValue("host", m_cfgFilePath);
                m_username = SamplesUtils.readConfigFileValue("username", m_cfgFilePath);
                m_password = SamplesUtils.readConfigFileValue("password", m_cfgFilePath);
                m_contextroot = SamplesUtils.readConfigFileValue("contextroot", m_cfgFilePath);
            } catch (Exception e) {
                e.printStackTrace();
                System.out.println(e.getMessage());
                return;
            }
    
    
            try {
                Client client = SamplesUtils.getClient();
                String resourceStr = m_protocol + "://" + m_host + "/" + m_contextroot;
                System.out.println("Calling GET on " + resourceStr + m_restresource);
                WebResource webResource = client.resource(resourceStr + m_restresource);
                String authString = m_username + ":" + m_password;
    
    
                try {
                    authString = DatatypeConverter.printBase64Binary(authString.getBytes("UTF-8"));
                } catch (UnsupportedEncodingException e) {
                    e.printStackTrace();
                }
    
    
                ClientResponse response =
                    webResource.header("Authorization", "Basic " + authString).post(ClientResponse.class);         
              
                if (response.getStatus() != 200) {
                    throw new RuntimeException("Failed : HTTP error code: " + response.getStatus() + "\nStatus Info: " +
                                               response.getStatusInfo());
                }         
                Item item = response.getEntity(Item.class);
    
    
                //To print out all folder and item info, just call toString on the Object. A little verbose, however.
                System.out.println(item);
    
    
                //Print out individual top level variables of FolderItems object
                System.out.println("*************************************************************************");
                System.out.println("Name: " + item.getName());
                System.out.println("Owned by: " + item.getOwnedBy().getDisplayName());
                System.out.println("Created by: " + item.getCreatedBy().getDisplayName());
                System.out.println("Modified time: " + item.getModifiedTime());
                System.out.println("Id: " + item.getId());
                System.out.println("Parent Id: " + item.getParentID());
                System.out.println("ErrorCode: " + item.getErrorCode());
                System.out.println("Size in bytes: " + item.getSize());
                System.out.println("Version: " + item.getVersion());
                System.out.println("*************************************************************************");
    
    
    
    
            } catch (Exception e) {
                e.printStackTrace();
            }
      return resourceStr+"applinks/file/"+item.getId()
        }
    

    You have a bad request. You are not passing in the attributes assignerUser and role on the URL that is required to create Applink. You pass to one these two parameters in like a load of JSON or URL params.

    JsonPayload String = "{\"assignedUser\":\. "" + m_assignedUser + "\",\"role\":\ " » » + m_role + « \ »} » ;

    Or on the URL:

    /API/1.1/applinks/file/DCA4BBA0908AE2F497832BC2T0000DEFAULT00000000?assignedUser=someusername&role=Downloader

    Example below shows passing as a string in JSON format.  I also atrtached the POJO AppLink.java I use entitled it the answer, so the values are accessed.

    
    /* ********************************************************************************************************************
     * Sample class to create an AppLink using POST against document cloud using the Jersey API.
     * Tested on JDeveloper 12c, with libraries JAX-RS Jersey (Bundled) and JAX-RS Jackson (Bundled) attached to project. JDK 1.7.
     *
     * Compile jar list includes:
     * javac -classpath C:\JDeveloper\mywork\JerseyRestClient\Project1\classes;C:\jdev12\oracle_common\modules\asm-3.1.jar;C:\jdev12\oracle_common\modules\jersey-core-1.18.jar;C:\jdev12\oracle_common\modules\jersey-server-1.18.jar;C:\jdev12\oracle_common\modules\jersey-servlet-1.18.jar;C:\jdev12\oracle_common\modules\jersey-json-1.18.jar;C:\jdev12\oracle_common\modules\jersey-client-1.18.jar;D:\JerseySamples\modules\jersey-multipart-1.12.jar C:\JDeveloper\mywork\JerseyRestClient\Project1\src\project1\DCJerseyClientTestGet.java
     *
     * Update the config.properties file for the POST request to run the desired Documents Cloud service.
     * Update the m_assignedUser to any user id. User can be a provisioned user id, or a non-provisioned ad-hoc value.
     * Update the role to be viewer, downloader, or contributor
     *********************************************************************************************************************/
    
    package documents.cloud.restsamples;
    
    import com.sun.jersey.api.client.Client;
    import com.sun.jersey.api.client.ClientResponse;
    import com.sun.jersey.api.client.WebResource;
    
    import documents.cloud.pojos.AppLink;
    
    import java.io.UnsupportedEncodingException;
    
    import javax.xml.bind.DatatypeConverter;
    
    public class CreateFileAppLink {
        // Configuration values. May need to change m_cfgFilePath to point to properties file if at a different location.
        static public String m_cfgFilePath = "src/documents/cloud/restsamples/config.properties";
        static public String m_protocol, m_host, m_username, m_password, m_contextroot = null;
        //Rest resource needs a valid GUID for the file to copy
        static public String m_restresource = "/api/1.1/applinks/file/DCA4BBA0908AE2F497832BC2T0000DEFAULT00000000";
        //Payload parameters needed for POST
        static public String m_assignedUser = "MyTestUser";
        static public String m_role = "viewer";
    
        @SuppressWarnings("oracle.jdeveloper.java.semantic-warning")
        public static void main(String[] args) {
    
            //Read properties file to get host, port, contextroot, username, password
            try {
                m_protocol = SamplesUtils.readConfigFileValue("protocol", m_cfgFilePath);
                m_host = SamplesUtils.readConfigFileValue("host", m_cfgFilePath);
                m_username = SamplesUtils.readConfigFileValue("username", m_cfgFilePath);
                m_password = SamplesUtils.readConfigFileValue("password", m_cfgFilePath);
                m_contextroot = SamplesUtils.readConfigFileValue("contextroot", m_cfgFilePath);
            } catch (Exception e) {
                e.printStackTrace();
                System.out.println(e.getMessage());
                return;
            }
    
            try {
                //POST needs a json payload with parameters for new applink
                String jsonPayload = "{\"assignedUser\":\"" + m_assignedUser + "\",\"role\":\"" + m_role + "\"}";
                //Call static method to get client object for calling rest
                Client client = SamplesUtils.getClient();
                String resourceStr = m_protocol + "://" + m_host + "/" + m_contextroot;
                System.out.println("Calling POST on " + resourceStr + m_restresource + " with payload " + jsonPayload);
                WebResource webResource = client.resource(resourceStr + m_restresource);
                String authString = m_username + ":" + m_password;
    
                try {
                    authString = DatatypeConverter.printBase64Binary(authString.getBytes("UTF-8"));
                } catch (UnsupportedEncodingException e) {
                    e.printStackTrace();
                }
    
                ClientResponse response =
                    webResource.header("Authorization", "Basic " + authString).header("Content-Type",
                                                                                      "application/json").post(ClientResponse.class,
                                                                                                               jsonPayload);
    
                //Check for success, otherwise exit.
                if (response.getStatus() != 200) {
                    throw new RuntimeException("Failed : HTTP error code: " + response.getStatus() + "\nStatus Info: " +
                                               response.getStatusInfo());
                }
    
                //If pure json response is needed, use String.class to get the response.
                //String output = response.getEntity(String.class);
                //System.out.println(output);
    
                //Declare object that JSON string will be mapped into, then get the response into that object
                AppLink al = response.getEntity(AppLink.class);
    
                //To print out all applink info, just call toString on the Object.
                System.out.println(al);
    
                //Print out individual top level variables of file applink object
                System.out.println("*************************************************************************");
                System.out.println("URL: " + al.getAppLinkUrl());
                System.out.println("Access Token: " + al.getAccessToken());
                System.out.println("AppLink ID: " + al.getAppLinkID());
                System.out.println("Refresh Token: " + al.getRefreshToken());
                System.out.println("Error Code: " + al.getErrorCode());
                System.out.println("ID: " + al.getId());
                System.out.println("*************************************************************************");
    
            } catch (Exception e) {
                e.printStackTrace();
            }
        }
    }
    
  • Is it possible to reproduce a whole document within the app?

    I'm creating a model for a website that will have common elements on the home page and the gallery page. So I can create the home page and then duplicate it to a new document and make the necessary changes?

    PAula Jo

    Hi Paula,

    Yes. You can duplicate a model project absolutely. When you are in the view of the gallery. If you're on an iPad, at the top of every project there is a navigation bar; Tap the icon to duplicate (two places with a +). Who's going to duplicate your project. If you're on an iPhone, in this same bar of nav, instead of a series of icons, you will see an icon «...» ». Tap that. One of your options will be to duplicate the project. (Be super careful to not touch remove.)

    Let me know if this isn't answering your question.

    Sue.

  • How can I create hypertext links leading directly to a specific page within my digital publication?

    Hello!

    I'm really pleased with the DPS and have published workbooks on this society.

    For our pre orders, we would use the publication and the link to our (Excel-based) pre order sheet links directly to specific pages within the workbook.

    Thus, for example, I produced (A) listed in the spreadsheet and I want to offer our customers click on a hypertext link to go directly to our workbook pages digitally published with all the background beta.

    Help, please!

    Cheers!

    Insert and manage cross-references in InDesign

  • Design Muse &amp; change within the catalyst company

    Hello world

    Apologies from the start for beginners question however, I struggled to find a topic that describes perfectly the relationship between BC and Adobe Muse. I created the site of Muse and satisfied with the appearance of the site, I just realized that when published in British Colombia, I give myself a few restrictions tightened, for example I can't create pages or modules in the admin of BC... the options just aren't there, I can see web forms, I created however. Do I have reason to think that you are not allowed to completely change the content?  Adobe wants you to make the updates within the Muse and then download the site every time. However, when you want to get forms, client and job connections most advanced features I'll need to make specific changes within the BC and among the markup, i.e. which means "enabling editing options.

    Therefore, it means you need to design sites of Muse, pull them in British Colombia and work above, simply from BC? I don't see how you can maintain a link between the Muse and British Colombia because Muse is a software design and British Colombia is a CMS... they do different things.

    The question is, I have set up a range of forms, a secure connection, develop more content in British Colombia and then I want to do a major design change which means ebb in Muse and overwrite everything that has just been setup... y at - there something I'm missing or is this how it works?

    I would appreciate any help on this matter,

    Thank you very much

    Sam

    Hi Sam, you can go into the settings and enable editing.

    The reason for which it is set up to be restrictive is good because they programs like muse create sites, yes they make nice but they are not really functional Web sites. But you'll find this clunkyness tries to use BC as a CMS and creation of the site through Muse. Just as many more securezones, eCommerce, blog... and more will just become increasingly problematic to say the least.

  • How can I disable the fields highlighted as a frame within a specific document?

    I need to disable the fields highlighted on a specific document, regardless of point highlight fields 'users' setting. The fields are being filled with information obtained from a page of entry on my site (not the pdf itself). After a user presses submit, this pdf appears, but the fields are: a) has highlighted b) variable. Bonus points if you can tell me how the fields so that they cannot be changed. Using the 'security' feature and lock by password do not work if I chose to not editable fields because I do not think that the site can enter the information about the pdf. Thank you very much.

    Have you tried to set the fields read-only?

  • Looking for a specific phrase within a document.

    I use Windows 8, I used to be able to search for a specific phrase within a document by using the file Explorer.  This no longer works.  I'm looking for an expression as ZONE-14-D search returns anything that has all the combinations of these letters.  Is there something I'm missing in the search parameters?

    In this case I will try to rebuild the index it uses to search for.  First of all, to run this diagnostic Auto search.

    (1) open Control Panel by typing Windows + X

    (2) type "disorder" in the search box and go to the troubleshooting section that appears

    3) go to system, then click on find and fix problems with Windows Search

  • definition of text within the specific Web div object

    Hello!  I am trying to find a way to take the text of a text caption and assign it to a specific div inside a Web object.

    I tested it with a site regular html with embedded iframe and it works fine, but with Captivate, I can't get the text to a web object.

    The WebObject is named CC_box and inside, there is a div tag with an id of 'text' - this is where the text should go.  The text caption containing the text is named CC_source_1 for the first slide, then CC_source_2 for the next, etc.

    Here is my code:

    var slideNumber = window.cpAPIInterface.getCurrentSlideIndex ();                                Gets the number of the current slide

    var ccText = document.getElementById("CC_source_"_+_slideNumber).textContent;     Retrieves the text of a legend of text on a page in progress - works fine

    $("#CC_box).contents ().find("#text").html (ccText);                                                          This line of code works perfectly in HTML, but not in Captivate

    What is a good way to access this div within the web object of Captivate?

    Thank you!

    Thank you, I'll try that!

    in the meantime I kept trying different things here and found that if I go 'deeper' and call iframe directly as opposed to a container div, everything works, so in this case the following worked:

    $("#myFrame_CC_boxc").contents ().find("#text").html (ccText);

    Interestingly, Captivate attached a 'c' at the end of the name of the div, so even if I named the CC_box of Web object, we call it actually CC_boxc if you look in the DOM Explorer

  • Linking to specific pages within several other PDF documents

    My pdf source has ~ 700 references and I need to create a link to each reference (target format PDF).  There are hundreds of files PDF target and the source document refers to different pages in each of the target PDF files.  PDF target files must contain the entire document and not just the cited pages.  What I do is create a link and selecting open a file.  What I'm able to do, is give a page number to this link so that a page instead of page 1.  I understand that you can set the initial view with file properties, but that will not work as I would then have to create a PDF for each link, and there are far too many references to do.  Here is a sample of 'Reference to p. 2, 4' 6, and in this example, I want a separate link for each reference that will go to page 2, and page 4 page 6 (again once I need the entire document for the purposes of these links and not these specific pages of reading).

    Please visit: http://blogs.adobe.com/tcs/2011/01/tcs-specific/linking-to-a-page-within-a-pdf-and-more.ht ml

  • How to create an anchor to the working link in an EXCEL document with the report generation tool?

    I use the last report generation toolkit and add links on the first worksheet pointing to the other worksheets in the same document.

    I use the VI "Append hypertext link anchor to report." The links are created, but do not work when you click on them.

    Question now is: how a link to a cell in a different spreadsheet should look like?

    It can't be that complicated but I tried all the variations did not work and I have found no information on this issue. So any help is appreciated!

    Thank you and best regards,

    Ingo

    Go down to NI_ReportGenerationToolkit.lvib:Excel_Insert_Link.vi on hyperlinks invoke node you need to wire the node sub-address to the location of the cell to bind to.

  • Graphic moving Excel to a specific location in the Active sheet

    Hello

    I want to move an Excel chart that is already created, to a specific cell in the worksheet. I am able to move the chart with Shapes.IncrementLeft and these commands, but I want to pass the array to a specified cell. I created a macro to copy / paste the chart to a cell of some. The code is below:

    ActiveSheet.ChartObjects ("table 1"). Activate
    ActiveChart.ChartArea.Select
    ActiveWindow.Visible = False
    ActiveWindow.WindowState = xlNormal
    ActiveWindow.WindowState = xlMaximized
    Range ("A14"). Select
    ActiveSheet.ChartObjects ("table 2"). Activate
    ActiveChart.Paste

    However, I have 2 problems with this in Labview.

    The order of 'ActiveSheet.ChartObjects ("table 1"). Activate', I can't implement what I see not the option activate under ChartObjects.

    The 2nd issue is that I get an error with the command "ActiveWindow.WindowState is xlNormal." I have attached a .jpg file of the code I use in Labview. Any help appreciated.

    Rgds,

    lms17


  • After the procedure of recovery finished, but can not get excel or word documents.

    Just completed a recovery of the system recovery disks and copied the files of backup data on the hard drive.  He created a shortcut to a system recovery, but I cannot or do not know how to recover excel or word documents.  Is it possible to recover?  I have a backup diskfor than some files I created in November of excel, but it does include all the documents.

    Hi white,.

    If I understand correctly, you can browse the documents located on the old user account.  If this is true, try to copy the files for the user account wished.   If so, take a look at this document if you have problems with the permissions of the folder.

    Dena
    Microsoft Answers Support Engineer
    Visit our Microsoft answers feedback Forum and let us know what you think.

  • Can we open document from the hyperlink QML?

    Can we open document from the hyperlink qml?

    Label

    {

    "text:"Click here!

    "

    }

    I know that this problem has been resolved, but won't this is the solution.

    People, please stop using onTouch event on controls to manage the events of tap.

    To manage the tap, you must use gestureHandlers instead of onTouch

    gestureHandlers: [
                    TapHandler {
                        onTapped: {
                            // THIS CONTROL IS TAPPED AND NOT SIMPLY "TOUCHED". DO SOMETHING HERE
                        }
                    }
                ]
    

    If you treat your event on signal Notecard, you will eventually provide a poor user experience!

  • Are you limited the number of subfolders that can be added to a current folder within the document library?

    Original title: new folders

    Are you limited the number of subfolders that can be added to a current folder within the document library? I tried to add folders using the new folder tab and it will create not one. I hope I make this clear enough question. I'm not computer savy.  Thanks for your help.

    If you cannot create a new folder anywhere, this could apply.
     
     
    Do, or you have installed Chrome? It appears that an update of Chrome, (mid April 2013), is responsible for the loss of the option new folder. Even if Chrome has not been installed, here are two patches.
     

    How to remove and restore the default context Menu items 'New' in Windows 7 and Windows 8
    http://www.SevenForums.com/tutorials/28677-new-context-menu-remove-restore-default-menu-items.html
     
     
    If for any reason, the zip file doesn't work for you, check out the 'response' by Linda Yan in this thread.
    http://social.technet.Microsoft.com/forums/en-us/w7itprogeneral/thread/97de8a2a-12f2-4381-A409-a78f4ae551cf/#99395761-56de-4a76-8C2A-eab498ad735a
     
     
    Tip: When you save the text in Notepad, the default file format is .txt. Replace all files.

     

Maybe you are looking for