Is there any way to jump to a specific point in a long page?

I'm trying (and failing) to find a way to create a navigation bar at the top of a long page that will allow you to jump to certain sections of that long page. I've tried using relative navto:// links, and hyperlinking to text anchor points, but nothing I try seems to work. Can anybody help? Is this even possible?

In Smooth Scrolling articles, you can use decimals or percentages to jump to a specific position.
Example: navto://myarticle#3.3 (jumps to a specific position in smooth scrolling article that displays the bottom of page 4 and the top of page 5)
Example: navto://myarticle#50% (jumps to the middle of smooth scrolling article)

Similar Messages

  • Is there a way of jumping to a specific point in scrollable content?

    I have a list of values sub-divided by month in a scrollable content frame, i.e. -
    AUGUST
    Value1
    Value2
    Value3
    SEPTEMBER
    Value4
    Value5
    Value6
    Value7
    OCTOBER
    Value8
    ...and so on...
    If my reader wants to jump directly to January for example, it would be nice if they could just click a button(labelled 'January') and the scrollable content automatically jumps to the January values. Is this possible?
    Thanks.

    Bob Levine wrote:
    You want to continue to carry on like this, knock yourself out but you’re acting like child now.
    You were told the proper place to ask a DPS related question. You got the answer and you’re still going on about it.
    And yes, it is a nice system because technically you were not asking an InDesign question.
    Bob, your tone of reply is regularly dismissive and unprofessional and you're being completely unreasonable. It isn't as if I asked about scrollable content in the Photoshop forum - it is a perfectly legitimate feature of InDesign!
    Peter, if you don't know then answer, you don't have to reply to the question. Leave it to someone who does in the future. As for you 'always asking people for more information', how is 'You might want to tell us how this is an InDesign question...' helpful.

  • My iPhone 4 running iOS 7.0.4 deleted all of my stored notes, I'm currently restoring to see if I can retrieve them, is there any way I can restore a specific saved backup?

    So, I just went into my iPhone notes (iPhone 4 iOS 7.0.4), and found that all my notes had been deleted. I did recdently change the mail account I was using, could that be the issue? I'm very worried as I had some bank details and other personal information stored in these notes. Is there any way I can select a specific stored backup to restore from?

    Well, in iTunes, if you had not changed to sync notes to Outlook, that would answer that question. I sync my notes to my Outlook and have never had an issue. The only thing you need to watch is your archive setting. If you have notes set to archive after a certain amount of time, you will find that after non-use on the iPhone, they can seem to disappear. They will just not sync back, but are kept in the archive of Outlook. They are never deleted unless you actually delete them.
    I'm glad you were about to find your notes.

  • Is there any way to set the default for *.doc document so that Pages opens them automatically?

    I have a number of Ms Word documents because I used to have Word for Mac before the last OS release.  Now, of course, when I double-click on them, I get a message saying that PowerPC isn't supported.
    Now Pages will open these files.  Is there any way to change the default for *.doc files so that a double-click will open them in Pages? 
    (Instead of me going to the trouble of finding out where they are actually located on the hard drive so that I can open pages and say - here, open this file--even though you didn't create it--)

    Click on a .doc file and type Cmnd I to open Get Info. In the Open with: menu select Pages, then click on Change All…
    Walt

  • Is there any way to make all the inputComponents readon-only in a page

    Hi All,
    Is there any way by which we can make all the inputComponents belong to a specific iterator as read-only..?
    Depending on some condition I want to make all the editable components which belong to a particular iterator, in page to read-only. I can put an expression in the read-only property of all the inputFields
    and make them read-only depending on a condition. But this is going to be difficult as we have a lot of pagefragments and Task-flows.
    So I think I can do it programmatically. I can add this method as an method binding in the container jsff. So that it will do the job for all the pages [pages may be inside a region also ].
    Can any one give a similar code segment to do this..?
    Is this approach going to impact performance badly..?
    Any comments...
    Thanks

    Hi Chacko
    Have a look at [Advanced View object Techniqies|http://download.oracle.com/docs/cd/E12839_01/web.1111/b31974/bcadvvo.htm#sthref3138] at the bottom Example 38-32 Preventing Insert, Update, or Delete Based on Custom Properties
    <pre>
    Example 38-32 Preventing Insert, Update, or Delete Based on Custom Properties
    public class CustomViewRowImpl extends ViewRowImpl {
    public boolean isAttributeUpdateable(int index) {
    if (hasEntities() &&
    ((isNewOrInitialized() && !isInsertAllowed()) ||
    (isModifiedOrUnmodified() && !isUpdateAllowed()))) {
    return false;
    return super.isAttributeUpdateable(index);
    protected void setAttributeInternal(int index, Object val) {
    if (hasEntities()) {
    if (isNewOrInitialized() && !isInsertAllowed())
    throw new JboException("No inserts allowed in this view");
    else if (isModifiedOrUnmodified() && !isUpdateAllowed())
    throw new JboException("No updates allowed in this view");
    super.setAttributeInternal(index, val);
    public void remove() {
    if (!hasEntities() || isDeleteAllowed() || isNewOrInitialized())
    super.remove();
    else
    throw new JboException("Delete not allowed in this view");
    protected void create(AttributeList nvp) {
    if (isInsertAllowed()) {
    super.create(nvp);
    } else {
    throw new JboException("Insert not allowed in this view");
    // private helper methods omitted from this example
    </pre>
    Hope, this will help you :)
    Regards,
    JavaDeVeLoper

  • Is there any way to disable the firefox search option when you long press the home button on Samsung Galaxy S5 Active?

    I have an S5 Active and sometimes the home button sticks and registers as a long press which brings up Firefox search instead of going to the home screen. Is there any way to disable Firefox Search so that this doesn't happen. I Love the Firefox browser but if this keeps happening I will have to uninstall it.

    hello djpianalto, you could clear the default settings for firefox on android within the system settings (like described in this [http://www.howtogeek.com/195885/how-to-set-and-clear-a-default-app-on-an-android-device/ external article]).
    or try an app like https://play.google.com/store/apps/details?id=hk.sld.SwipeLaunchDisabler

  • Is there any way exsit to drop database specific data buffer from buffer pool.

    hi,
       Is there any way exist to drop one data buffer(DBCC DROPCLEANBUFFERS)
    .like DBCC FLUSHPROCINDB( db_id )
    yours sincerely.

    hi,
       Is there any way exist to drop one data buffer(DBCC DROPCLEANBUFFERS
    You can selectively flush plans from buffer pool, not all cache objects related to database . See
    DBCC FREEPROCCACHE
    Please mark this reply as answer if it solved your issue or vote as helpful if it helped so that other forum members can benefit from it
    My Technet Wiki Article
    MVP

  • Is there any way I can control which specific access point I connect (and stay connected) to from amongst a set of access points with the same SSID?

    I'm working from a boat in a harbor in which the ISP has deployed numerous access points around the periphery.  All the access points share the same SSID and each is configured to use either channel 1, 6 or 11.   From my location, there are over a dozen of these access points "visible" (based on the the output of WiFi Scanner) with a range of RSSI and S/N values that vary over time.
    The ISP has told me that the quality of my connection should be "perfectly fine" for any access point with an RSSI value better than -75, but I know from experience that my connection quality is miserable (i.e. < 50Kbps download) for almost all of these, including those with RSSI values better than -75.  There is at least one exception, however, which gives me on the order of 2Mbps download, which is "great" in this context.
    I've tried using a more powerful USB antenna plugged into my MacBook Air (mid 2011), but as far as I can tell, it really doesn't make much difference.  Neither does my location within the boat.   The overriding factor seems to be which access point I happen to connect up to.
    I should point out that the closest access points are about 75 yards away, with many of them being several hundred yards away or more.  I'm guessing that even though the signal strength of some of the distant access points is causing them to get "chosen" some times, the results are unacceptable due to the distance.
    I'm hoping that I can determine, through experimentation, which access point(s) provide(s) acceptable performance and then configure my Mac to limit my connection to those points through whatever mechanism I need to use (e.g. channel, MAC id, etc.).

    Establishing a wireless connection with a client computer is left to the access point for various reasons. One reason that your Mac may not connect to the strongest access point is that it may have reached a limit of the number of clients it can serve, leaving it unable to accept a connection with another. The limit may not be very large.
    Suppose that happens, and your Mac establishes a connection with a more distant access point having a weaker signal. Then, suppose a client drops off the network. Doesn't this mean your Mac will switch to the stronger access point? Not necessarily. The throughput delivered to and from your Mac would have to drop below a threshold specified in the AP for it to drop the client, leaving your Mac free to connect with another one. The reason for this is to prevent rapid switching from one AP to another in an area in which two signals are of approximately equal quality. If that were to occur the frequent and repetitive handshaking between the two devices would slow throughput to zero.
    In an environment in which several access points are broadcasting the same SSID, Apple provides no insight as to how it determines which access point to choose. This is the reason I suspect this "choice" is a function of the router, or access point. The connection originates with it, not the Mac.
    Now, what would solve your dilemma would be to determine a way to control the access point with which your Mac connects, by specifying the access point's unique MAC address for example. In this happy circumstance, you could maintain an editable "whitelist" or "blacklist" of the harbor's access points and be able to choose which among them you prefer.
    I do not believe OS X maintains such a record of MAC addresses though, only those of the routers it uses. If I am correct about that, such a solution is unlikely to exist. Don't let that discourage you from searching for one though... I would concentrate on something like "selecting access point by specific MAC address".
    I did find this patent application though:
    Roaming Network Stations Using A Mac Address Identifier To Select New Access Point
    Perhaps it's a start

  • Is there any way in Adobe Reader to limit printing to only one page at a time?

    We have a large piece of internal knowhow in the form of a pdf document that we don't want users to be able to print in one go as it would risk the document leaving the premises. We are quite happy with users using print screen for single pages, but that doesn't really produce readable results.
    So ideally we'd like users to be able to select print, but when they do it should only allow 'print current page' or just print the first chosen page instead of the whole selection. For instance, selecting pages 123 - 145 should only print page 123.
    I've looked in to various areas already. We are delivering this document through a secured version of Adobe Reader via Citric application streaming, so are able to customise the config.js file any way we want, however I've looked through the Java Reference Guide and haven't been able to identify anything that might satisfy our requirement this.
    I've also looked in to Document Actions such as "Document will print", but again (perhaps due to a personal lack of programming knowledge) am unable to find a way to fix the print option to a single page.
    Any ideas/suggestions much appreciated.
    Kind regards,
    Kaan

    The sponsor is not happy for low res printing either. As an organisation we should be looking at DRM more closely, and we've added to the requirement with this problem. We are also going to look in to the option of attaching metadata and scanning that at our exit points (e-mail, printers, usb's, etc.) so that users have free reign internally but can't send sensitive documents out. Obviously it's all going to be very expensive!
    Cheers for the respones guys.

  • Is there any way to change the color scheme in a document in Pages?

    I have come from a PC using Publisher for a weekly newsletter and am trying to use Pages to accomplish the same thing.  i want to change the color scheme from week to week and have not found a way to accomplish this.
    I am currently using Word for Mac for this, but I would like to move over to Pages.  I'm playing with it some, but can't seem to find a way to change the color of the publication from week to week.  To change to another template all together would cause me to have to reinvent the wheel each and every week, and I'm not willing to do that.
    Adobe Illustrator is an option, but it looks mighty complicated to set it up...  And I've balked at the price tag.
    Any suggestions?

    Pages does not have Themes like Word.
    There might be other ways to achieve what you want by swapping master objects and changing colors of Styles. A bit more work but not horrendously more.
    You can name color swatches in the Color Picker so you could set up a set of colors there then update styles and objects systematically using those swatches.
    Illustrator would be an extremely poor choice for a Newsletter.
    Have a look at the new Swift Publisher 3 in the App Store, currently 30% off. They have added some very good tools that have brought it into a much more Pro usable form. Including many key features that Pages lacks.
    Peter

  • Is there any way to search within a specific Adobe Forum?

    Seems to be there should be a way for me to search within just the RoboHelp forum, but as yet, I've not discovered how.  Having to go through thousands of topics certainly can be very discouraging.
    Thanks for all of your wonderful help.

    Hi,
    After you enter your search string, the results page displays. Under the search box is an options button. When you click it, you can then select to find results in just the forum you are interested in. I'm trying to show an image of this:
    Hope this helps.
    Julie

  • Is there any way to fetch second webpage url after navigating from one page to another on chrome browser?

                string sCurrentURL;
                string sExpectedURL="http://www.xyz.co/";
                BrowserWindow _bw = BrowserWindow.FromProcess(proc);              
        string sURL=UIMap.UIWindow.Uri.ToString();
                HtmlHyperlink objLogoLink = UIMap.UIWindow.UIDocument.UIHyperlink;          
    //Navigates to "http://www.xyz.co/" link after click on logo
                Mouse.Click(objLogoLink);            
                 Playback.PlaybackSettings.ShouldSearchFailFast = false;
    //At this line of code I am getting issue on chrome browser
                sCurrentURL = _bw.Uri.ToString(); 
                Assert.IsTrue(sCurrentURL.Equals(sLogoURL));
                _bw.NavigateToUrl(new Uri(sURL));
    After clicking the logo link of the page, it navigates to other url. I am successfully able to get the url for firefox and IE.  I am facing issuein chrome.
    Any suggestions?
                 

    Do you use this extension tool Selenium Components for Coded UI Cross Browser Testing?
    Yes I used this extension tool. I am using only BrowserWindow name as search property.
    Error : 
    stale element reference: element is not attached to the page document
      (Session info: chrome=41.0.2272.89)
      (Driver info: chromedriver=2.8.241075,platform=Windows NT 6.1 SP1 x86_64)
    I resolved this issue using separate BrowserWindow object for each page. But i am not able to understand why BrowserWindow _bw object created from process object ( BrowserWindow
    _bw = BrowserWindow.FromProcess(proc); ) get detach when navigate to other page....
     string sCurrentURL;
     string sExpectedURL="http://www.xyz.com/";           
     string sURL=UIMap.UIWindow.Uri.ToString();
     HtmlHyperlink objLogoLink = UIMap.UIWindow.UIDocument.UIHyperlink;          
     //Navigates to "http://www.xyz.co/" link after click on logo
     Mouse.Click(objLogoLink);
     sCurrentURL = UIMap2.UISecondPageWindow.Uri.ToString(); 
     Assert.IsTrue(sCurrentURL.Equals(sLogoURL));

  • Is there ANY way to disable internet for specific wired MACs?

    I have been looking for a way to restrict specific MAC addresses from routing to the internet with my AEBS. The Access tab is labeled that it allows internet access for only the MACs in the list which is incorrect, it restricts connections to the AEBS entirely (not just to the internet).

    That is correct - Access Control cannot be used to limit wireless clients from accessing just the internet. Access Control also has no influence at all on restricting access by wired clients - it only influences connections by wireless clients.
    I assume the purpose of this is to find a way for a parent to limit internet access from one of their child's computers? If so, you should instead use software on the Mac itself, like the MacOS 10.4 "parental controls" feature.

  • Is there any way to change the formatting of pre-made documents in pages?

    Specifically trying to change the margins in the Business Resumé template. Thanks.

    You change the margins in the Documents sidebar.
    How ever if it is the CV I am thinking it is in Pages 5.5.1, Apple constructed it using Textboxes for the headings to the left.
    Peter

  • Is there any way to disable runtime schema validation

    At runtime Kodo appears to validate that all of the tables and columns
    referenced in the mapping table exist in the datebase. Is there any way
    to disable this. It takes an extremely long time for the validation to
    complete and although it may be useful during certain stages of
    development or to verify a new deployment it isn't really all that
    desirable.
    Thanks,
    -Marc Sheftel

    Thanks!
    Abe White wrote:
    On Tue, 16 Sep 2003 11:44:36 -0500, Marc Sheftel wrote:
    At runtime Kodo appears to validate that all of the tables and columns
    referenced in the mapping table exist in the datebase. Is there any way
    to disable this.
    kodo.jdbc.SchemaFactory: dynamic
    Note that when using the dynamic schema factory Kodo can't detect foreign
    keys.

Maybe you are looking for