How to insert a hyperlink to RETURN TO FRONT PAGE?

I just now played a photo slide show that I made last night. There is no way to exit that page to go back to the Table of Contents page/Site Menu.
How do I insert a hyperlink in all the pages so a visitor can return to the first page, or at least to the Table of Contents page/Site Menu.
Also, there was no navigation bar on the slide show. Instead, there were clickable thumbnails of the slide show. Is this as iWeb made it to be?
— Lorna in Southern California

Sorry to bother you, but i did find the answer to my question by going to the Help Menu, which I forgot all about in my concern. So to keep this from being a total waste of your time, here are the instructions for making a hyperlink to another page. Again, I apologize. -Lorna
Adding a text hyperlink
You can create a text hyperlink that opens a webpage or a new email message, or downloads a file.
To add a text hyperlink using the Link Inspector:
1. Select the text you want to turn into a hyperlink.
2. If the Link Inspector isn't open, click Inspector in the toolbar (or choose View > Show Inspector), and then click the Link Inspector button.
3. In the Link Inspector, select "Enable as a hyperlink," and then choose an option from the Link To pop-up menu:
• One of My Pages: Opens another page in any of your iWeb websites. Choose the page from the Page pop-up menu.
• An External Page: Opens any webpage for which you know thethe website address. Type the address in the URL field.
• A File: Downloads a file to the visitor's computer. (The file is part of your website; visitors won't have access to your computer.)
• An Email Message: Opens a new email message containing the email address and subject you specify.

Similar Messages

  • Can anyone advise me how to insert a hyperlink into a project I am using Captivate 5?

    Can anyone advise me how to insert a hyperlink into a project - I am using Captivate 5

    You can use an interactive object such as a click box placed over the top of a text caption, or a button, to link to the URL.  However, these will not strictly-speaking appear identical to hyperlinks.
    If you really want to replicate the rollover appearance of a true HTML text hyperlink, then you might consider the Hyperlink widget from Infosemantics:
    http://www.infosemantics.com.au/adobe-captivate-widgets/hyperlink-interactive/help
    Free trial versions for download hers:
    http://www.infosemantics.com.au/adobe-captivate-widgets/download-free-trial-widgets

  • How to insert a HYPERLINK in a template Editable Field?

    Question:  How to insert a HYPERLINK in a template Editable Field?
    Hi
    Does anyone know how to insert a HYPERLINK in a template Editable Field?
    I want the link to always display the word "Cities".
    But the URL will change with each child page.
    Here's what I've got so far . . .
    <!-- TemplateBeginEditable name="Cities" -->Cities<!-- TemplateEndEditable -->
    Thanks so much!

    NOTE: This is to go into the TEMPLATE
    Your best bet is to keep the hyperlink OUT of the editable Field and to make the HREF attribute of the link editable.
    This would go in the head of your document:
    <!-- TemplateParam name="href" type="URL" value="" -->
    This would go where you want the link to appear:
    <a href="@@(href)@@">cities</a>
    THE BETTER WAY: You can either paste these quotes into the appropriate places in your template or you can insert:
    <a href="#">cities</a>
    and click inside the opening <a> tag.
    Then go to Modify > Templates > Make Attribute Editable
    In the dialog box "Editable Tag Attributes" you should now see "Choose which attributes of this A tag should be editable."
    If HREF is not showing in the drop-down, do Add and put it there.
    Check the box to Make this attribute editable.
    Give a name for this editable attribute (if you have more than one on a page, you will want it to be understandable, like "cities" for your cities links).
    Make sure it is of Type URL
    If you want a default URL in place, put one in the Default field.
    Then push OK.
    To use it, on each page, do Modify > Template Properties... choose the property to edit, and put the new URL in the entry field.
    Press OK.
    Beth

  • How to insert a hyperlink into a Paragraph text

    hi everybody~
    for example:
    this encourages people to answer for points and helps you track answers.
    how can I insert a hyperlink in the word:"answer for points"?
    Louis.

    Hi Louis,
    Write the following code in your compositionReady event handler :
    var text_answer = "this encourages people to";
    text_answer += "<a target='_blank' href='http://www.<etc.>'>answer for points</a>";
    text_answer += "and helps you track answers.<br>";
    sym.$("<textElementName>").html( text_answer);
    // or if needed sym.getSymbol("<symbolInstanceName>").$("<textElementName>").html( text_answer);
    Gil

  • How to insert a hyperlink in mail content for workflow

    Experts,
    I want to insert a hyperlink in mail content when i use sendmail type step in workflow.
    How to do it?
    Thanks you very much!

    Hi, Venkat
      Thanks you for your help!
      I try to use '<a href=''https://login.yahoo.com/config/login_verify2?&.src=ym''>Yahoo mail</a>' in the mail, but
      my outlook display the mail content is '<a href=''https://login.yahoo.com/config/login_verify2?&.src=ym''>Yahoo mail</a>',
      is not a hyperlink.
    Ken.Li

  • How to insert a hyperlink in ABAP documentation

    In SE38 you can create your own online documentation. I want to insert a hyperlink in this documentation so that when the user clicks the 'I' icon, he can click directly on the hyperlink in the documentation.
    In my research I found that when you are editing the documentation, you must choose Insert -> Link. Once I click that, I get a popup asking for the following fields:
    Document Class:
    "Field based on what Document Class is chosen":
    Name in Document:
    Does anyone know what I need to fill in those fields?
    Thank you,
    Brenda

    Hi Brenda,
    I'm glad to know it works, up to this limit. In my system, this limit is 60 characters (SAP_BASIS 7.0 SP 13).
    I think we can't go beyond this limit, but there's a workaround, used by KENO (URL to SAP library) document class for example.
    You link your document class to a function module exit, by entering the function module prefix in TDCLD-DOKEDICL field. Entering a value XXXX means that SAP will call function modules XXXX_OBJECT_TITLE and XXXX_OBJECT_SHOW. I recommend to use KENO as a template.
    For example, you can enter the following code in XXXX_OBJECT_SHOW :
      data l_url(65535).
      case dokname.
        when 'A1'.
          l_url = 'http://help.sap.com/saphelp_nw70/helpdata/en/07/bf5bfa83404c6a9ed9858bcb0d46d1/frameset.htm'.
      endcase.
      if l_url is not initial.
        call function 'CALL_BROWSER'
          exporting
            url                    = l_url
          exceptions
            frontend_not_supported = 1
            frontend_error         = 2
            prog_not_found         = 3
            no_batch               = 4
            unspecified_error      = 5
            others                 = 6.
        if sy-subrc <> 0.
    * MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    *         WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
        endif.
      endif.
    Then, in your document, you enter :
    <DS:XXXX.A1>click me</>
    Clicking it will display the SAP library
    Of course, instead of hardcoding the values in the function module ("A1"), you will use other means to get the URL from Solution Manager, using a key of 60 characters maximum. This would be another question if you don't know how to get it.
    Best regards,
    Sandra

  • How to insert system date in Session of the page

    Greetings,
    I am stuck at one thing and need guidline.
    I created date parameter "From Date" - "to Date" . Item Type Date Picker.
    - Set Default Value : Sysdate;
    - Default Value Type : PL/SQL Expression.
    When i run the page it shows current date , but when i see session state report of that page there Item Value is Empty and Status is also Empty.
    The result in impact is that i created linked on data that displays, That link doesnt Work because of Item Value is Empty and Status is also Empty.
    Kindly guide how i inserted value in Item Value and in status.
    Pls

    Hi,
    >
    I am stuck at one thing and need guidline.
    I created date parameter "From Date" - "to Date" . Item Type Date Picker.
    - Set Default Value : Sysdate;
    - Default Value Type : PL/SQL Expression.
    When i run the page it shows current date , but when i see session state report of that page there Item Value is Empty and Status is also Empty.
    The result in impact is that i created linked on data that displays, That link doesnt Work because of Item Value is Empty and Status is also Empty.
    Kindly guide how i inserted value in Item Value and in status.
    >
    When you set the value of an item in the source, the value is set in the HTML DOM not the session state.
    To set value in session state use Computation or Process.
    Cheers,

  • How do I prevent users from returning to previous pages in a PDF with fill-in-forms?

    I am creating a presentation in Adobe Acrobat Pro and there is a test at the end. I do not want users returning to previous pages to find answers. How do I do this?

    It can be done with a script, but it's not really a good way of doing it... The user can always close the file, re-open it and see the answers. They can also disable JavaScript and then do whatever they want. I suggest you think of another way of setting this up.

  • Anyone using Mr Site Pro website software on their iMac, if so how di insert the copyright symbol into my home page?

    I am trying to insert the copyright symbol into the home page of my website, I am using Mr Site Pro software, on windows it is 0169 but this does'nt work on the imac, can anyone help?

    Or you can try option (alt or ⌥) + G to type ©.
    For future reference, enable the keyboard viewer;
    System Preferences > Language and Text > Input Sources tab. Top of the left column, tick (check) "Keyboard and Character Viewer", Bottom of window next to search field, tick "Show input menu in menu bar"
    System Preferences > Keyboard > Keyboard tab; tick "show keyboard and character viewers in menu bar"
    All the standard diacritical marks and common symbols can be accessed directly from the standard keyboard. ü is produced by pressing alt (option) + U, release them and type U. Similarly é is alt+e, followed by e.
    If you open Keyboard Viewer and press the alt (option) key, the location of the marks will be revealed. Note that five of them are highlighted in orange; these are the ones which can be used with multiple  letters (acute, umlaut, gràve, circumflex and tilde)
    Shift+Alt will show more.
    These are the results of holding down option and shift+option for a standard UK keyboard (US is similar, but a few keystrokes are reversed)
    ¡€#¢∞§¶•ªº–≠
    ⁄™‹›fifl‡°·‚—±
    œ∑´®†¥¨^øπ“‘
    Œ„‰ÂÊÁËÈØ∏”’
    åß∂ƒ©˙∆˚¬…æ«
    ÅÍÎÏÌÓÔÒÚÆ»
    `Ω≈ç√∫~µ≤≥÷
    ŸÛÙÇ◊ıˆ˜¯˘¿

  • How to insert into 2 tables from the same page (with one button  link)

    Hi,
    I have the following 2 tables....
    Employees
    emp_id number not null
    name varchar2(30) not null
    email varchar2(50)
    hire_date date
    dept_id number
    PK = emp_id
    FK = dept_id
    Notes
    note_id number not null
    added_on date not null
    added_by varchar2(30) not null
    note varchar2(4000)
    emp_id number not null
    PK = note_id
    FK = emp_id
    I want to do an insert into both tables via the application and also via the same page (with one button link). I have made a form to add an employee with an add button - adding an employee is no problem.
    Now, on the same page, I have added a html text area in another region, where the user can write a note. But how do I get the note to insert into the Notes table when the user clicks the add button?
    In other words, when the user clicks 'add', the employee information should be inserted into the Employees table and the note should be inserted into the Notes table.
    How do I go about doing this?
    Thanks.

    Hi,
    These are my After Submit Processes...
    After Submit
    30     Process Row of NOTES     Automatic Row Processing (DML)     Unconditional
    30     Process Row of EMPLOYEES     Automatic Row Processing (DML)     Unconditional
    40     reset page     Clear Cache for all Items on Pages (PageID,PageID,PageID)     Unconditional
    40     reset page     Clear Cache for all Items on Pages (PageID,PageID,PageID)     Unconditional
    40     reset page     Clear Cache for all Items on Pages (PageID,PageID,PageID)     Unconditional
    40     reset page     Clear Cache for all Items on Pages (PageID,PageID,PageID)     Unconditional
    50     Insert into Tables     PL/SQL anonymous block     Conditional
    My pl/sql code is the same as posted earlier.
    Upon inserting data into the forms and clicking the add button, I get this error...
    ORA-06550: line 1, column 102: PL/SQL: ORA-00904: "NOTES": invalid identifier ORA-06550: line 1, column 7: PL/SQL: SQL Statement ignored
         Error      Unable to process row of table EMPLOYEES.
    Is there something wrong with the pl/sql code or is it something else?

  • How to set window.status when returning to a page with back button/list?

    It is easy enough to set window.status to application-oriented information when loading a page: do it in a function which is the onload handler for the page's body element. But, when returning to this window from another window with the second window's back button, or selecting the first window from the second window's back list, window.status gets set to browser-oriented information, usually the string "Done". Is there any means by which I can set window.status to application-oriented information when returning to the window via another window's back button/list? What would be really great is if there is an event handler like this:
    window.onreturnviaback = onreturn_via_backhandler;
    Any ideas?

    How about:
    - (void)viewWillAppear:(BOOL)animated
    I use that a lot.

  • How to populate DataGird with data returned from php page?

    Hi, I'm new in Flex, I try to populate DataGrid with data from PHP, My code is
    <mx:HTTPService 
    id="personRequest" result="getPerson(event)" url=http://localhost/searchPerson.php useProxy="false" method="POST" showBusyCursor="true" resultFormat="e4x">
    </ mx:HTTPService>
    <mx:DataGrid 
    id="searchResult" dataProvider="{???what to paste here???}" y="30">
    </mx:DataGrid>
    private  
    function getPerson(evt:ResultEvent):void { var res:XMLList = evt.result..dane as XMLList;searchResults =
    new XMLListCollection(res); 
    output from PHP
    <person>
    <dane>
    <name>ABC</name>
    <street>XLXXLX</street>
    </dane>
    <dane>
    <name>DEF</name>
    <street>YAYAYAY</street>
    </dane>
    </person>
    If I set the dataProvider as "searchResults" it doesn't work. I probably have to set as dataprovider any ArrayCollection , but I don't know how to convert my XMLListCollection to it.
    Could anyone help me populate Datagrid with
    name | streer
    ABC, XLXXLX
    DEF, YAYAYAY
    Best Regards,
    Mariusz

    Thanks for your reply, but I'm afraid it doesn't work :-( Could you browse my code and check what I'm doing wrong???
    full mxml code:
    <?xml version="1.0" encoding="utf-8"?><mx:Application 
    xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute" applicationComplete="personRequest.send()">
    <mx:Script><![CDATA[
         import mx.rpc.events.ResultEvent; 
         [Bindable]
         public var searchResultsXML:XML;  
         private  function getPerson(evt:ResultEvent):void 
          {          searchResultsXML = (evt.result
    as XML);
              trace(searchResultsXML);     }
    ]]></mx:Script>  
    <mx:HTTPService 
    id="personRequest" result="getPerson(event)" url=http://localhost/searchPerson.php useProxy="false"
    method="POST" showBusyCursor="true" resultFormat="e4x"></mx:HTTPService>
    <mx:DataGrid  id="searchResult" dataProvider="{searchResultsXML.dane}"></mx:DataGrid>
     </mx:Application> 
    trace statement returns:
    <person>
    <dane>
    <id>1</id>
    <nazwisko>Topczewski</nazwisko>
    <imie>Mariusz</imie>
    <imie2/>
    <miejscowosc>Bia?ystok</miejscowosc>
    <ulica>Nowogródzka</ulica>
    <dom>7B</dom>
    <lokal>25</lokal>
    </dane>
    <dane>
    <id>1</id>
    <nazwisko>Topczewski</nazwisko>
    <imie>Mariusz</imie>
    <imie2/>
    <miejscowosc>Bia?ystok</miejscowosc>
    <ulica>Sybiraków</ulica>
    <dom>15</dom>
    <lokal>27</lokal>
    </dane>
    </person>

  • How to insert Edge animate in current web html page

    Just downloaded Edge Animate and trying to include animation.html in current website.html page using Adobe Edge Code preview but am not sure how to go about it not being a hard core programmer.... am i being too ambitious?

    Thanks here is the code :
    Animation code : in subdiretory off Root directory : AdobeEdge/Bannerad.html
    <!DOCTYPE html>
    <html>
    <head>
              <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
              <meta http-equiv="X-UA-Compatible" content="IE=Edge,chrome=IE8"/>
              <title>Untitled</title>
    <!--Adobe Edge Runtime-->
        <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/chrome-frame/1/CFInstall.min.js"></script>
        <script type="text/javascript" charset="utf-8" src="Bannerad_edgePreload.js"></script>
        <style>
            .edgeLoad-EDGE-160548878 { visibility:hidden; }
        </style>
    <!--Adobe Edge Runtime End-->
    </head>
    <body style="margin:0;padding:0;">
              <div id="Stage" class="EDGE-160548878">
              </div>
    </body>
    </html>
    And segement of Accomodation.html page in root directory :
    <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
      <head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
        <meta name="Generator" content="iWeb 2.0.4" />
        <meta name="iWeb-Build" content="local-build-20130308" />
        <meta name="viewport" content="width=700" />
        <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
              <meta http-equiv="X-UA-Compatible" content="IE=Edge,chrome=IE8"/>
              <title>Untitled</title>
        <title>Accomodation</title>
        <link rel="stylesheet" type="text/css" media="screen,print" href="Accomodation_files/Accomodation.css" />
        <!--[if IE]><link rel='stylesheet' type='text/css' media='screen,print' href='Accomodation_files/AccomodationIE.css'/><![endif]--><style type="text/css">
    /*<![CDATA[*/
              @import "Scripts/Widgets/HTMLRegion/Paste.css";
    /*]]>*/
    </style>
        <!--Adobe Edge Runtime-->
        <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/chrome-frame/1/CFInstall.min.js"></script>
        <script type="text/javascript" charset="utf-8" src="AdobeEdge/Bannerad_edgePreload.js"></script>
        <style>
            .edgeLoad-EDGE-160548878 { visibility:hidden; }
        </style>
    <!--Adobe Edge Runtime End--> 
        <script type="text/javascript" src="Scripts/iWebSite.js"></script>
        <script type="text/javascript" src="Scripts/Widgets/SharedResources/WidgetCommon.js"></script>
        <script type="text/javascript" src="Scripts/Widgets/Navbar/navbar.js"></script>
        <script type="text/javascript" src="Scripts/iWebImage.js"></script>
        <script type="text/javascript" src="Scripts/Widgets/HTMLRegion/Paste.js"></script>
        <script type="text/javascript" src="Accomodation_files/Accomodation.js"></script>
      </head>
      <body style="background: #000000; margin: 0pt; " onload="onPageLoad();" onunload="onPageUnload();">
        <div style="text-align: center; ">
          <div style="margin-bottom: 0px; margin-left: auto; margin-right: auto; margin-top: 0px; overflow: hidden; position: relative; word-wrap: break-word;  background: #fffde8; text-align: left; width: 700px; " id="body_content">
            <div style="margin-left: 0px; position: relative; width: 700px; z-index: 0; " id="nav_layer">
              <div style="height: 0px; line-height: 0px; " class="bumper"> </div>
              <div id="id1" style="height: 258px; left: 17px; position: absolute; top: 13px; width: 665px; z-index: 1; " class="style_SkipStroke">
                <div class="text-content graphic_shape_layout_style_default_External_665_258" style="padding: 0px; ">
                  <div class="graphic_shape_layout_style_default"></div>
                </div> <p style="margin:0;padding:0;">
                         <div id="Stage" class="EDGE-160548878">
                             </div>
    ....................  etc.
    thanks.

  • Inserting a hyperlink in Safari on iPad2

    How to insert a hyperlink in the body of a message in a Safari email on an iPad2?

    [iPad User Manual|http://manuals.info.apple.com/enUS/ipad_2_userguide.pdf|when you click this blue text, and amazing thing happens! a pdf starts to load]
    Page 21

  • How to add a hyperlink in the text caption?

    Hi,
    I am using Captivate 5. Anybody knows how to insert a hyperlink in a text caption? For example, the texts in the text caption are "See Adobe Captivate Forum for details." How to create a hyperlink for "Adobe Captivate Forum" which leads to the forum website?
    Thanks,
    Helen

    There is no tru hyperlink object in Captivate as such.
    You can use a button or a click box to provide users with an interactive object that when clicked will call a URL or document.
    However, this doesn't really give you a mouse rollover effect the way users are accustomed to seeing in normal web hyperlinks.
    If you really want to add a piece of on screen hyperlinked text (with rollover effect) to a Captivate project, the closest you'll come to it is this widget: http://www.infosemantics.com.au/hyperlink

Maybe you are looking for

  • Version 10.1.8 SLOW and locks up Windows Explorer when attempting to select multiple files to open.

    User contacted L1 Tech Support when browsing server & attempting to simply select multiple adobe pdf's.  Passed to Support level 2. Level 2 deemed was not server as they could recreate the issue on any machine running 10.1.8 by copying in question pd

  • [SOLVED] Cannot write with root authorization too

    Hello, It's some time that I noticed I can't write in the Windows partition called sda2. Trying with sudo dolphin or sudo mv there aren't changes. Why? Thanks for attention, Grant. Last edited by Grant (2013-01-15 12:17:31)

  • Devaluation of an asset

    Hi, We want to devaluate an asset which is wrongly given as life for 10 years . we want to make resudual value as zero. As the asset should be depreciated only for 2 years. So we want to make resudual value as zero. May i know how can we make this Me

  • Problem with abap code in lsmw.its urgent

    Hello guys iam migrating open ar line items using lsmwand i need to create reconciliation key automatically so iam using below code which is working fine in abap editor but i inserted in the lsmw abap code block at step 5 mapping fields iam getting e

  • Problems printing over network

    i have a macbook pro and a macbook air running os x 10.5.8 that i usually print with over my wifi network to a kyocera mita fs-1010 that is connected by usb to a powerbook G4 running 10.3.9. the past few weeks there have been problems. at first when