Is there a way to link from one application to another? Like Hyperlink but instead of cyberspace just internal. Application linking.

In "Pages" you can Hyper Link a word or phrase by going to Inspector Link highlight the word or pharse click on "Enable as a hyperlink" and then place a URL address. The highlighted word or phrase will now be blue and anytime I click on it I will be taken the the URL address.
What I want to do is that exacltly, but I want to able to link a word or a phrase to another internal Mac application.
Example from Pages to Logos Bible Software.

Feature not available.
Hyperlinks and bookmarks are used in documents that will be viewed onscreen, either as HTML files or as Pages documents. You can add hyperlinks to jump to another page or to open an email message or a webpage on the Internet. Use bookmarks to mark passages in the document that you want to refer to as you work.
This I found in the Pages User Guide, downloadable from your Pages Help menu, on pagge 110.

Similar Messages

  • Linking from one PDF to another: Is there a more efficient way?

    Some background first:
    We make a large catalog (400pages) in Indesign and it's updated every year. We are a wholesale distributor and our pricing changes so we also make a price list with price ref # that corresponded with #s printed in the main catalogue.  Last year we also made this catalog interactive so that a pdf of it could be browsed using links and bookmarks. This is not too difficult using Indesign and making any adjustments in the exported PDF. Here is the part that becomes tedious and is especially so this year:
    We also set up links in the main catalog that go to the price list pdf - opening the page with the item's price ref # and prices... Here's my biggest issue - I have not found any way to do this except making links one at a time in Acrobat Pro (and setting various specifications like focus and action and which page (in the price list) to open) Last year this wasn't too bad because we used only one price list. It still took some time to go through and set up 400-500 links individually.
    This year we've simplified our linking a little by putting only one link per page but that is still 400 links. And this year I have 6 different price lists (price tiers...) to link to the main catalogue pdf. (That's in the neighborhood of 1200-1500 double clicking the link(button) to open Button Properties, click Actions tab, click Add..."Go to page view" , set link to other pdf page, click edit, change Open in to "New Window" and set Zoom.  This isn't a big deal if you only have a few Next, Previous, Home kind of buttons....but it's huge when you have hundreds of links. Surely there's a better way?
    Is there anyway in Acrobat or Indesign to more efficiently create and edit hundreds of links from one pdf to another?
    If anything is unclear and my question doesn't make sense please ask. I will do my best to help you answer my questions.
    Thanks

    George, I looked at the article talking about the fdf files and it sounds interesting. I've gathered that I could manipulate the pdf links by making an fdf file and importing that into the PDF, correct?
    Now, I wondered - can I export an fdf from the current pdf and then change what is in there and import it back into the pdf.  I've tried this (Forms>More Form Options>Manage Form Data>Export Data) and then opened the fdf in a text editor but I see nothing related to the documents links... I assume this is because the links are 'form' data to begin with - but is there away to export something with link data like that described in the article link you provided?
    Thanks

  • How do I can link from one MXML to another in the same project?

    I planned to create a login page separated in my new Flex
    application. Maybe I am too attached to the WEB philosophy but I
    prefer to do it in that way. The login page will simply validate
    the login through a call to a CFC. While the CFC will also create
    the session variables I will need over the navigation of the user
    (once the login is validated), the variables (or more specifically
    the values of those variables) will serve as reference during the
    user's navigation. And those values are contains in the ColdFusion
    Session and can be accessed through CFCs.
    If the login is a success, I need to redirect the user to the
    appropriate page (in my case, the application is a help desk system
    so if the user is identified as a technician will go to the
    technician.mxml or if the user is identified as a sysadmin, will go
    to the sysadmin.mxml - simple as that). Now, I know it is possible
    to redirect using ExternalInterface.call function but is there
    anything more specific to Flex redirection from one MXML to
    another? Just like classes (where you can create dependency of a
    child classe to is parent)?
    Thank you

    I finally decided to use simply the method
    ExternalInterface.call to do this and it works fine! I passed
    parameters through the URL and I actually created CFM page that
    contains a copy of the HTML code generated by FlexBuilder (the CFM
    page give me the possibility to deal with the parameters).
    But I though that Flex can actually call another Flex and
    passing parameters directly without passing by the HTML page
    itself. A kind of memory scope but I guess I wish too much!!!
    ;-))

  • Copying a link from one page to another in safari

    Hi
    I am trying to copy a link from one one page to another, it will let me copy but not paste, any solutions?

    In Inspector go to Link and select Link To: One of My Pages. You will be able to select the blog page.

  • Transfer data from one database to another without identities but keep the relation b/w PK and Foreign key

    Hi,
    I need to transfer data from one database to another database (both are identical databases). 
    1. Not transferring identity columns (primary keys). the destination table might have the same key.
    2. keep the PK's and FK's relation b/w parent and child table
    3. I have 4 levels 
    Example: tableA (col1 int identity(1,1) , col2, col3)
    tableB (col1 int identity(1,1) ,
    col2 , col3) -- col2 has the foreign key relation with tableA.col1
    tableC (col1 int identity(1,1) ,
    col2, col3) -- col2  has the foreign key relation with tableB.col1
    tableD (col1 int identity(1,1) , col2, col3) -- col2  has the foreign key relation with tableC.col1
    please advise me.
    Thanks in advance

    Try the below:
    /********************************SAMPLE TARGET***************************************************************/
    Use MSDNSamples
    create table TableA(LevelValueId int identity(1,1) primary key, name varchar(100))
    Insert into TableA(name) Select 'R1'
    Insert into TableA(name) Select 'R2'
    create Table TableB(ChildId int identity(100,1),name varchar(100), LevelValueID int references TableA(LevelValueId))
    Insert into TableB(name,LevelValueID) Select 'Childname1',1
    /********************************SAMPLE TARGET***************************************************************/
    /********************************SAMPLE SOURCE***************************************************************/
    Use Sample
    create table TableA(LevelValueId int identity(1,1) primary key, name varchar(100))
    Insert into TableA(name) Select 'C1'
    Insert into TableA(name) Select 'C2'
    create Table TableB(ChildId int identity(100,1),name varchar(100), LevelValueID int references TableA(LevelValueId))
    Insert into TableB(name,LevelValueID) Select 'Kidname1',1
    /********************************SAMPLE SOURCE***************************************************************/
    USe MSDNSamples
    /********************************MIGRATION INTERMEDIATE TABLE***************************************************************/
    --Migration table
    Create table Mg_TableA(LevelValueId int, NewValueId int)
    /********************************MIGRATION INTERMEDIATE TABLE***************************************************************/
    /********************************ACTUAL MIGRATION FOR MASTER TABLE***************************************************************/
    MERGE INTO TableA
    USING sample.dbo.TableA AS tv
    ON 1 = 0
    WHEN NOT MATCHED THEN
    INSERT(name) Values(tv.name)
    Output tv.levelValueId ,inserted.LevelValueid INTO
    Mg_TableA;
    /********************************ACTUAL MIGRATION FOR MASTER TABLE***************************************************************/
    /********************************ACTUAL MIGRATION FOR CHILD TABLE***************************************************************/
    Insert into TableB (name,LevelValueID)
    Select A.name,B.NewValueId From sample.dbo.TableB A
    Inner join Mg_TableA B on A.LevelValueID = B.LevelValueId
    /********************************ACTUAL MIGRATION FOR CHILD TABLE***************************************************************/
    /********************************TEST THE VALUES***************************************************************/
    Select * From TableA
    Select * From Mg_TableA
    Select * From TableB
    /********************************TEST THE VALUES***************************************************************/
    Drop table TableB,Tablea,Mg_TableA
    Use Sample
    Drop Table TableB,Tablea

  • Do we need to merge in order to link from one project to another

    We are working on setting up a new webhelp system using RH 7.
    The application for which we are writing incorporates numerous
    large "modules," each of which we expect to have its own help
    project containing 100-200 topics (page-level, context-sensitive
    help).
    Each help project will reside in its own folder. All of the
    help project folders will, in turn, reside in one main "Online
    Help" folder.
    Is there a way to link from a topic in one project to a topic
    in another project *without* merging the projects? Our aim is to
    re-use information by creating common topics (such as "Using the
    XYZ Product Toolbars" or "Options for Saving Your Data"), storing
    them in *one* project only, and then linking to these common topics
    from other the other projects as needed.
    In HTML help you can do this. But I don't know about WebHelp.
    I was looking at the Snippets feature, but I'm not sure that
    accomplishes what we want. Our main concern is to maintain common
    topics in one place only and not have to worry about multiple
    copies of topics floating around.
    Thanks very much for any assistance with this.

    Snippets reside within a project so the nearest you would get
    is maintaining them in one project, importing them and reimporting
    whenever you make a change.
    To create links to topics in other projects without importing
    I think the only way to do it would be to manually enter the
    relative path as it will be between the two outputs. Will you
    always know that?
    I don't understand why you don't want to go to merged help as
    it looks like your scenario is just crying out for it?

  • Opening a link from one iframe into another

    Hello,
    I have a web template in which there are three iframes. Each Iframe has a different web template embedded in it. I want to open a link present in one iframe into another.
    Example:
    iframe 1 (id: left) contains a link google dot com (or a link to a different web template)
    when i click on the link, i want this page to open in iframe 2 (id: right)
    Can anyone help me on how this can be done? I'm working in WAD7.0 and hence iframes.
    Another question related to this is:
    Can we create resizable iframes? In the older version of WAD, HTML was used and this was possible through framesets.
    In NEW WAD 7.0, XHTML does not support framesets. So is there any other way to do it?
    Regards,
    Sameer

    Either file is corrupt, theres' a corresponding .idlk file in the same folder, or it isn't really an indesign file.
    How was the file transfered? What is the file extension?

  • How can I create an anchor link, from one table to another?

    I want to make an .html web page with two tables, side by side. In the left table I want to put a list of names. In the right table I want to have text anchored at the top of the right table (linked anchor to the names in the left table) so that when I click on a name from the list in the left table the text associated with that name will appear at the top of the table on the right? In the right table, I want to be able to scroll up and down to read the text in the right table. In the left table I want the list to remain near the top of the page while I'm scrolling up and down in the right table. I want the list on the left always in view and stationary while I'm scrolling through the text in the right column.
      I tried just anchoring text to the top of the right column (without linking the anchor to a different html file) but when I scrolled down in the right table, the whole page scrolled down so that I could no longer see the list of names in the left column.
      How can I achieve this effect? Do I need to anchor to another html file, or can I achieve the result without linking to a different html file?
    Thanks,
    George

    Iframes should be in there, but they only show up when you're in code view. But all it does anyways is place the frame tags where your cursor is. You'll also need to add some properties, such as width and what not. A quick google for iframe properties will provide plenty of examples. Like a regular frame, it displays a separate a html page which must be referenced in the properties. A named anchor as we know is part of the link which can be used onnthe same page, or open another page to a certain location. So it's just a matter of formatting the link  so it targets and includes the iframe as well as the other attributes. I'm pretty sure it's doable and not too difficult, but again, a quick google shold provide the answer.

  • Is it possible to link from one folio to another?

    My editor would like to link from an article in one folio to an article published in a previous month's folio. Is this do-able?

    How about this?
    http://contentviewer.adobe.com/s/DPS%20Tips/7f80a0ffed3a4ff08734bc905aac4a29/DPS%20Advance d%20Overlays/22_Linking.html
    Here i find solution for this question, but I did not try.

  • Fastest way to move from one itab to another?

    What is the fastest way to move one internal table to another internal table (assuming two tables of similar structure)?
    a) append lines of table1 to table2.
    b) loop at table1.
    Move: table1-field1 to table2-field1,
    table1-field2 to table2-field2.
    Append table2.
    Endloop.
    c) table2[] = table1[].
    d) loop at table1.
    Move-corresponding table1 to table2.
    Endloop.
    e) move table1 to table2.
    I think it is option a). Is it correct?

    Hi,
    Yes option a. is fastest : append lines of table1 to table2
    In particular, the quickest way to fill a table line by line is to append lines to a standard table, since a standard table cannot have a unique key and therefore appends the lines without having to check the existing lines in the table.
    APPEND LINES OF inttab1 TO inttab2.
    This statement appends the whole of ITAB1 to ITAB2. ITAB1 can be any type of table, but its line type must be convertible into the line type of ITAB2.
    This method of appending lines of one table to another is about 3 to 4 times faster than appending them line by line in a loop. After the APPEND statement, the system field SY-TABIX
    contains the index of the last line appended. When you append several lines to a sorted table, you must respect the unique key (if defined), and not violate the sort order. Otherwise, a runtime
    error will occur.
    Reference : SDN ABAP Book.
    thanx.

  • Transfer only selected data from one .pdf to another using hyperlink

    I have a form that has mutiple pages.  On one of the forms, I have created a hyperlink to open a different form.  My objective is to be able to click on the hyperlink and transfer some of the data from the original form to the hyperlink form.  Is that possible?  If so, can you send me an example?  Thanks.

    I have a form that has mutiple pages.  On one of the forms, I have created a hyperlink to open a different form.  My objective is to be able to click on the hyperlink and transfer some of the data from the original form to the hyperlink form.  Is that possible?  If so, can you send me an example?  Thanks.

  • I would like to find out if there is a profile configured  on my iphone 4 . .. Is there any way to tell from one of the shorter diagnostic reports ?reportimestamp: 1365974172049 crashReporterKey: "c557688ba7b608cf069641ea8f621e72d9e30358" isAnonymous: ts

    Here is one of the diagnostic reports timestamp: 1365974172049
    crashReporterKey: "c557688ba7b608cf069641ea8f621e72d9e30358"
    isAnonymous: true
    deviceConfigId: 239
    investigationId: 0
    model: "iPhone3,1"
    softwareBuild: "10B329"
    firmwareVersion: "iBoot-1537.9.55"
    basebandVersion: "04.12.05"
    buildtype: "User"
    metriclogs {
      triggerTime: 1365986011686
      triggerId: 524308
      profileId: 239035
      metricCCAirplaneMode {
        airplaneModeEnabled: false
        timestamp: 1365986011683
    I need to find out how to delete the profiles because someone keeps hacking all my accounts ...

    I believe you just are able to delete them from iTunes.
    Hope it will be helpful

  • What is the best way to transfer from one computer to another?

    In the next couple weeks, I'm going to be buying a MacBook Pro. I want to transfer my whole library (with all rolls, albums, slideshows, etc) intact. What is the best way to do this? I assume it's as easy as copying the whole iPhoto Library Folder, correct? Should I copy the iPhoto .plist files as well?
    Thanks

    Daniel:
    You're right about what to copy. Just the entire iPhoto Library folder into the Pictures folder on the new MBP. I'd also download and run BatChmod on the iPhoto Library folder with the settings shown here, substituting your account name for mine. You can either type in the path to the folder or just drag the folder into that field. This is just a little insurance that the ownership and permissions are set correctly after the transfer. INo need copy the preference file as one will be generated when you first open iPhoto on the MPB and the file paths in it will be unique to the current Mac. Best to start with a new one.
    Do you Twango?

  • Link from one application to another, without having to log-in the 2nd time

    I figured out how to link from one app to another.
    But I don't know how to avoid the 2nd log-in.
    Do I just delete the log-in page for the 2nd application?
    Thanks
    Marion

    Marion:
    If the 2 applications are in the same workspace you can follow the method described in this thread (3rd post)
    Re: Problem with login using single Authenicaton Scheme inTwo application
    varad

  • Copy an Image from one document to another

    Is there an easy way to copy a rectangle containing an image (not a link to an image) from one document to another?
    Thanks.
    Chris.

    I can now copy-paste text frames and linked graphics from one document to another using snippets, but embedded images still don't work.
    If I embed an image from a pdf file it works but not for jpeg images. When I open the new document (for which I placed the snippet) in InDesign, there is a frame (with a dark grey background and a diagonal cross) shown, but no contents. The place() method did not throw an exception. What am I doing wrong?
    Chris.

Maybe you are looking for

  • Time Capsule as external hard drive

    Hi -- Hope I'm not duplicating a thread here, but I couldn't find anything precisely addressing this question. I recently upgraded to Leopard and bought a Time Capsule to serve as wi-fi base station and backup drive. As I understand it, Time Machine'

  • Help! Class, interface, or enum expected, don't know where the error is

    hey all, I am doing a project for school but I keep getting a compiler error and I don't know why. Here is the code that keeps getting the error: import greenfoot.*; // (World, Actor, GreenfootImage, Greenfoot and MouseInfo) import java.util.*; * Gre

  • JDeveloper - problems with Tutorial for Java EE Developers

    Hi, I am trying to start learning Oracle J2EE technologies, and I am using the Oracle "Tutorial for Java EE Developers (10.1.3.1.0)" listed in the Oracle Application Server 10g (10.1.3) page: http://www.oracle.com/technology/tech/java/oc4j/1013/how_t

  • File index usage

    Hello Friends, After creating and index on a file how can I address this index in my ABAP program (ie select staement)? Thx in advance. Ali

  • Add bill-to party in billing due list

    hi, pls advice how to add bill-to party in billing due list thanks