Anchor links with Bookmark

Hi,
Need to know how SharePoint allows us to define bookmarks on List values automatically. e.g. Field with value "Return to top" will take cursor to the field defined on the header part. This similar to the # Anchor links defined on any webpage.
I can create them manually but I have some 3K documents in the list and wanted to know if this can be achieved programmatically.

Hi Vince,
By looking at the page code it seems that you have placed all the text frames on the page with the anchor links on it.
I will suggest that you make sections by creating a parent rectangle for each navigation item, then place the text and the anchor link in that rectangle. Anchor link goes to the top of the rectangle, but remains in the bounds of the rectangle.
This is happening because of how the text is rendered by the browser which is a little different than what you see in the design mode. On the live site the text height is a little bigger than in the design view, which explains the gradual shifts in the anchor positioning.
- Abhishek Maurya

Similar Messages

  • How to create a link with an anchor outside of the edge animation ?

    Hello
    I want to know if it's possible to create a link with an anchor that is placed outside of the edge animation , on the same page ?
    Tanks

    Is it... very likely..., javascript is javascript...Has anyone yet? Maybe i haven't looked.
    You only need 3 files... not including "Edge Includes" and "External Art Assets"
    NAME_edge.js
    NAME_edgeActions.js
    NAME_edgePreload.js
    The advantage of Edge being that u have the "power" to do whatever you like, but as with new things it takes awhile to figure it all out.

  • Active state not working in scrolling site (with anchor links)

    I'm design a scrolling site with anchor links and an horizontal menu on the top.
    when i publish the site and click on the menu buttons the site scrolling to the place of the anchor but the active state in the menu is not working.
    now... when i leave the main page (were the scrolling site is) and then return back to it all active states are working perfectly
    anyone have this bug? or any one know how to fix it ?

    Hmmm...I've just been playing around, and I think I got the Active State to work correctly.  I think my problem was not understand what Active State means.
    To answer your question, I was changing the Font Color and Box Fill Color of the Active State.
    I did not understand that Active State means the look of the Menu Item when the PAGE is active.  I thought it meant the look of the Menu item when the cursor is scrolling down the Menu (i.e. when the MENU is Active, not the page).
    Look at this page for an example of what I'm trying to achieve...
    http://www.pgavdestinations.com
    When you hover over the "Work" menu item, and move the cursor down the menu, the state of "Work" remains changed until you move the cursor off of that menu column. It does NOT return back to it's Normal state until you are off of that menu column.
    Is there a way to achieve this with the menu states in Muse?
    Thanks for the replies!
    Dave.

  • I have a document made up of separate PDF files which reside in a folder and are linked to each other via hyperlinks. Each pdf file is set to open with bookmarks displayed, however if I link from one PDF file to another and use the "Previous View" button

    I have a document made up of separate PDF files which reside in a folder and are linked to each other via hyperlinks. Each pdf file is set to open with bookmarks displayed, however if I link from one PDF file to another and use the "Previous View" button to navigate back to my starting point the bookmarks are replaced by "page thumbnails". Is there anyway to stop this from happening?

    Hi Pusman,
    While setting up the links, if you choose to open the file in a new window then you won't face this issue, then you can simply switch to the previous file and bookmark view will remain as it is.
    Does that helps with your query?
    Regards,
    Rahul

  • Issue with Anchor Links in Composition Widget

    Hoping for some help regarding anchor links. I was successful in nesting a Slideshow widget within a Composition widget. The Composition widget contains six panels, each of which contains one Slideshow. Thankfully, that all works as it’s supposed to.
    What I want is to direct users (from another page on my site) to a specific Slideshow within the Composition widget (i.e., for example, to the slideshow on the third panel of the Composition). The anchor link does work in that it directs users to the page with the Slideshow/Composition combo. However, it displays the first panel in the Composition and not the third. I’ve tried inserting the anchor link on top of the actual picture in the Slideshow, and also within one of its text labels. Still the same result.
    My question … can an anchor link be used to direct someone to a specific panel within the Composition widget? Perhaps I can export my site to HTML, open the .html file in Dreamweaver and … I don’t know, move or rename the anchor somehow? Is anyone else having this issue?

    This is a bit late in the day looking at the date of your post, but I asked the same question recently and Brad Lawryk answered (thanks Brad - saved me hours of fiddling!):
    Unfortunately the only way to do this now would be to save a copy of the page with the desired tab focused. Unfortunately this does cause duplicate content and is not SEO friendly though.

  • Problem with anchor link entire page moves to the left of the browser

    I created an anchor link on the top of my home page with a text link at the botton called "back to top of page" whenever I click on the text link on my desktop the page move vertically upwards to the top of the page but when I try doing this on either of my laptop the page moves diagonally from right to left up to the top of the page how can I fix this? You can see this on my website www.sweetproductionmedia.com

    hi julia, i placed the anchor in various places to see what works. I placed the anchor center top towards the left and right side within the browser. I also tried upper top outside of the browser center, right and left and it still moves diagonally. Here's what I noticed. On my desktop I use a 25" monitor so the anchor works fine the page moves straight up but whenever I view it on both  laptops  it moves diagonally.  I had my sister test the link on her laptop (she lives in Brazil) and she told me that sometimes it would go straight up and another time it moved diagonally. Here's the link to my website so you can see the problem in action. There's a 'back to top' link on almost every page see for yourself. www.sweetproductionmedia.com 
    thanks so much for taking the time to help:-)

  • Back Button with Anchor Link in Webview?

    I use UIWebView (in a view controller) to display html pages stored locally on the device. This web view is the "leaf" view from a series of table views using a navigation controller that provides the appropriately-labeled "back" buttons to the table hierarchy tree.
    The problem is that in some of these html pages, I have anchor links to a footnotes html page also residing on the device, and then that web page does appear in the web view but I don't know how to go "back" to the previous web page leaf. The navigation bar of course shows a back button that goes back to one of the table views and not to the preceding web page, the origin of the linked web page.
    So, from a UI and programming prospective, how do I change the navigation back button label to say "Back" (instead of the previous table view) and have it when clicked show the previous web page and not the previous table view?
    Is there where I might use UIWebView delegate functions? But how do I get the navigation button to change its functionality?
    Thanks for any help.

    Is there where I might use UIWebView delegate functions? But how do I get the navigation button to change its functionality?
    You can use the delegate functions to intercept each nav request...
    - (BOOL)webView:(UIWebView *)webView shouldStartLoadWithRequest:(NSURLRequest *)request navigationType:(UIWebViewNavigationType)navigationType{
    or you can be told when new data was navigated to:
    - (void)webViewDidFinishLoad:(UIWebView *)webView{
    you can change the Nav bar's left button to be a custom view:
    UIBarButtonItem *leftButton = [[[UIBarButtonItem alloc]
    initWithTitle:NSLocalizedString(@"Back", @"")
    style:UIBarButtonItemStyleBordered
    target:self
    action:@selector(goBack:)] autorelease];
    self.navigationItem.leftBarButtonItem = leftButton;
    You need to provide a function to perform the goBack.
    hope this helps
    michael golden

  • Is anyone experiencing problems with anchor links moving after updating to Muse 2014?

    I just happened to check my website and my CONTACT anchor link is not working. The image and contact info has moved to a different part of the page and I can't seem to get it to work properly. Here's the website: soleilnyc.com

    Yes, I have noticed the sucking more power issue.  We also can't connect to the iTunes store anymore on either ipad we own after the upgrade.  All the tips provided in the forums have not worked.  I hope Apple peeps are paying attention to this... they are losing money!!  I can't buy my stuff on iTunes, so I went to Amazon.com.

  • Anchor tags (aka "bookmarks") break in RH 7 HTML

    We use several anchor tags, aka bookmarks, to sections of our
    Robohelp pages.
    These URLs look like this:
    http://www.exampledomain.com/Help/index.htm#Frequently_Asked_Questions.htm#Question_two
    These links worked great in Robohelp 5: Question two of the
    FAQ page loaded at the top, inside the robohelp shell.
    Now in Robohelp 7, these anchor tags no longer work inside of
    the shell - the page loads at the top of the FAQ page and the
    #Qustion_two anchor is disregarded.
    I know that the anchor tag is there and working because when
    I load the page without the robohelp shell at this URL:
    http://www.exampledomain.com/Help/Frequently_Asked_Questions.htm#Question_two
    Question two loads at the top of the page.
    Why did this stop working?!!? How do I fix it without
    changing all my URLs? This "feature" is ruining my day. Bad enough
    that you rename anchor tags to bookmarks, now they don't even work.

    Hi Colum,
    Thank you for the welcome and the response.
    All I'm trying to find out is the URL to load the
    Frequently_Asked_Questions.htm page directly at the #Question_two
    anchor inside of the index.htm FlashHelp shell.
    In Robohelp x5, this used to be
    index.htm#Frequently_Asked_Questions.htm#Question_two
    With Robohelp 7, this url stopped working.
    I can load the FAQ page inside of the shell with
    index.htm#Frequently_Asked_Questions.htm
    I can load the FAQ page to the Question_two ancor without the
    index.htm shell with
    Frequently_Asked_Questions.htm#Question_two
    But I can't figure out any link that loads the Question_two
    anchor at the top of the FAQ page inside of the index.htm shell. In
    Robohelp 7, index.htm#Frequently_Asked_Questions.htm#Question_two
    just loads the FAQ page at the top.
    Thanks for your help,
    RoboHurt

  • Strange browser behavior with bookmarks

    Has anyone else noticed strange and/or inconsistent behavior when navigating through projects that contain pages with boomkarks such as
    Bookmark
    <a name="Bookmark"></a>
    (OHJ 4.1.17 and 4.2.2)
    I notice that when I click on a bookmark that takes me further down on a page, I can't use the Back button to return to my previous location. Often the Back button takes me to the previous topic instead of taking me back to the top of the page!
    I was playing around with the Oracle Help Guide and noticed that somehow they have got their bookmarks working properly...but then actually after playing around with it I'm noticing that the behavior is very very inconsistent. For some topics the bookmarks seem to work well (sometimes), other pages not at all. Most pages it seems hit or miss. I'm stumped!

    Actually Ryan didn't give a full answer here. The issue with bookmarks is that the ICE Browser that OHJ uses to display the author's HTML pages doesn't notify OHJ when the user clicks on an link to an anchor in the same page.
    Therefore, OHJ had no way of knowing to update it's back/forward functionality. In older versions of ICE,
    used with older versions of OHJ 4.1.x the ICE Browser
    does notify OHJ when the link is of the form:
    Link to Anchor
    So, often authors producing content for OHJ used this as a workaround and always included the file name in the link (even though it is not necessary to link to an anchor in the same file). This workaround doesn't appear to work with the new ICE Browser used with OHJ 4.2.x.
    Oracle maintains a modified version of the ICEBrowser and I will look into making use of Oracle modifications to fix this problem permanently.

  • Importing/adding html files with bookmarks to project/TOC

    Overview:
    I've been importing some old html files that have a massive number of bookmarks/anchors in them (few hundred html 'pages' some of them mini help document libraries) in an effort to move the manuals into RH format. Using RH11
    Problem:
    when I import them all the bookmarks are showing up under each topic page. Second, when I add a folder into the TOC or auto generate a TOC it pulls each bookmark as a page (see screen shot). Any way I can get around this issue? I can manually add (drag/drop) the 'updates' page here into the TOC and it doesn't pull the bookmarks as pages. However i'm interested in knowing if I can simply not import the bookmarks or exclude them from populating as pages in the TOC. This seems to be new to RH11 (i've used RH9 without this issue in the past, on a similar project).
    System;
    RH11
    Office 2013
    SharePoint 2010
    Thanks

    Hi there
    Note that when you choose to auto-generate a TOC, you have a choice as to whether to create links to bookmarks. Look at the dialog below:
    My guess is that in the older version this option wasn't enabled when you auto created a TOC and you really didn't pay attention to the way it was set in the new version.
    Cheers... Rick

  • How Can I Print 2 Pages per Sheet with Bookmarks in Word 2007?

    Is there any workaround to print 2 pages per sheet (in MS Word) with bookmarks?
    I always get the following message:
    Acrobat PDFMaker has detected that 'Multiple Pages option in Page Setup' has been selected. It will not be able to create tags, links, bookmarks with this option selected...
    --Roborabbit

    The Word 2007 pdf export (the one MS has here: http://www.microsoft.com/downloads/details.aspx?FamilyID=f1fc413c-6d89-4f15-991b-63b07ba5f 2e5&displaylang=en) supports bookmarks right?

  • Is there a way to make an anchor link display a different colour when selected? (active state)

    I have a vertically scrolling site I am trying to set up, and it's all going well. Only problem is when you use the menu (widget or non-widget) to move to an anchor link, thus bringing in the next section, I can't get the link to diplay as a different colour.
    This would be good for letting the user know what section is infront of them.
    Is there a way to do this?
    One other question: Is there a way to get an anchor link to display centrally in the middle of the page up and down. I can arrange it so it looks good in one browser window, but as soon as the user has more vertical space it seems to diplay a set distance from the top. I guess what I'm asking is can the anchor link define the center point instead of the top point?
    Many thanks!

    Hello,
    Could you please elaborate what exactly you are referring to with "I can't get the link to diplay as a different colour"?
    Regarding your second query, I am afraid it is not possible using Adobe Muse. However it can be a very nice feature request.
    I would suggest you to post this as a feature request on our "Ideas for features in Adobe Muse" section of the forums : http://forums.adobe.com/community/muse/ideas
    Regards,
    Sachin

  • Anchor links to accordion panels not working properly across browsers

    Hi everyone,
    I need some help to figure out why my anchor links  to specific accordion panels on another page are not working properly  across browsers.
    I have a Map page which has tooltips on  mouseover on the site markers. 15 of the tooltips have "Click here for  information" anchor links (although only 14 are currently linked) which,  in theory, would take you to the Nurseries page where the specified  accordion panel would be opened with the nursery entry appearing at the  top of the new browser window.
    Here are the links to the Map page and Nurseries page, respectively:
    www.alegriadesignstudio.com/RFRI/map_v6.html
    www.alegriadesignstudio.com/RFRI/nurseries_v6.html
    I've  tested the anchor links on IE, Firefox, Google Chrome, and Safari, and  have received varying results. In most cases, the anchor links worked  perfectly on two of the browsers, while on the other browsers, the  correct accordion panel is opened but the nursery entry does not appear  at the top of the new browser window. Anchor links using Safari and  Google Chrome fared better (10 out of 14 links worked properly, and  8/14, respectively), whereas when using Firefox and IE, only 3 anchor  links worked properly. The target audience for this website will be  using IE and Firefox, so I  would appreciate any help to figure out how to tweak the code so that  the most, if not all, anchor links work properly on these two browsers  in particular.
    Here's an anchor link which worked perfectly in  IE, GC, and Safari, but in FF, the entry did not appear at the top of  the new browser window.
    www.alegriadesignstudio.com/RFRI/nurseries_v6.html?luzon=9#mangatarem
    http://www.alegriadesignstudio.com/RFRI/nurseries_v6.html?luzon=9#mangatarem [To access the anchor link on the Map page, mouseover the third green  dot from the top of the map (Tooltip--Location: Mangatarem) and then  click on "Click here for information."]
    Here's a sample anchor link in which the entry did not appear at the  top of the new browser window in any of the 4 browsers:
    www.alegriadesignstudio.com/RFRI/nurseries_v6.html?mindanao=4#magpetAmabel
    http://http://www.alegriadesignstudio.com/RFRI/nurseries_v6.html?mindanao=4#magpetAmabel [To access the anchor link on the Map page, go to "Mindanao" at the  bottom of the map and mouseover the fourth green  dot below the word "Mindanao" (Tooltip--LOCATION:        Brgys. Amabel, Bongolanon, Imamaling, & Manobisa; Magpet;        North Cotabato) and then  click on "Click here for information."]
    Here's a sample anchor  link in which the anchor link worked properly in GC and Safari, but the  entry didn't appear at the top of the browser window in IE and FF:
    www.alegriadesignstudio.com/RFRI/nurseries_v6.html?visayas=1#bilar
    http://http://www.alegriadesignstudio.com/RFRI/nurseries_v6.html?visayas=1#bilar [To access the anchor link on the Map page, go to the small island  north and a bit west of "Mindanao" which is called "Bohol" and mouseover  the fourth green  dot below the word "Mindanao" (Tooltip--LOCATION: Bilar; Bohol) and then   click on the first "Click here for information."]
    Many thanks in  advance for your assistance!
    Joy

    Hi everyone,
    I'm still trying to figure out how to resolve the problem of anchor links to accordion panels not working properly across browsers (see original post for details). I would greatly appreciate any suggestions on how to resolve the problem.
    Many thanks in advance.
    Joy

  • What are the best options for creating a PDF with bookmarks and a hyperlinked TOC?

    What I'm interested in is whether or not there is an alternate process I could follow that would side step Word 2011's inability to export to PDF with bookmarks and hyperlinked TOCs. How do you create PDF documents with bookmarks and hyperlinked TOCs in your documents?
    Some background:
    In Word 2010 and 2013 for Windows (and I'm sure this applies to older versions as well), you can export documents to a PDF file format where the exported file will carry over the bookmarks and hyperlinked table of contents. Specifically, by making specific text headers, will appear in the final PDF file as bookmarks on the side (see image taken from Adobe's website).
    Regarding the table of contents, using Word's built in Table of Contents feature successfully ports the ability to navigate to a specific section by clicking on its chapter in the table of contents to the finished PDF file.
    I've read several forum discussions that say it's not possible to do this from Word 2011, so my current solution is to just finish all documents on a Windows machine (either with parallels or a separate computer). The alternate process flow of creating a word document, exporting it to PDF, then rehyperlinking everything in Acrobat is just too time consuming to consider.

    Hi, beejasaurus
    I found a possible kluge from this discussion here
    https://forums.adobe.com/thread/1008480
    Create the hyperlinks in Word, save the file
    Open that file with Pages, export as PDF.
    The links work from that PDF.
    Note, I did not try this with TOC but it worked with hyperlinks embedded in the Word document

Maybe you are looking for