Link navigation

Using ADE 2.0.66574 on Windows 7 on downloaded epub documents, how do I navigate internal links? If I click on a blue link which jumps within the document to another point, after reading the linked section how do I return to my starting point?

Hi,
Which SRM version are you working on?
See the foll notes:
Note 879406 - Short dump: Editing bid with "Back for the initial screen"
Note 1009347 - Bid approval for auction, 'Back to Initial Screen'
Note 950377 - "Back to Initial Screen" link causes session timed out error
Note 1029908 - BBP_BID_INV:Java error when pressing the link 'BACK'
Note 1020664 - Unlock bid after leaving back to bid invitation
Note 1002687 - BBP_CTR_WF_CRE: Back to Initial Screen link visible
BR,
Disha.
<b>Pls reward points for useful answers.</b>

Similar Messages

  • Customising top link navigation

    hi.. how do i change the current top link navigation to breadcrumb navigation?
    how my top link navigation looks like currently

    Hello,
    You need to modify your master page in designer and increase the below parameter level:
    StaticDisplayLevels="X"
    MaximumDynamicDisplayLevels="X"
    http://blog.incworx.com/blog/sharepoint-2010-tips-and-tricks/how-to-create-global-navigation-submenu-levels-in-sharepoint-2010
    Later you can enable publishing feature on site collection (click here to know more about feature) and modify the navigation
    as per below link:
    http://meherkanthch.blogspot.nl/2008/11/how-to-add-to-sub-sub-menu-in.html
    Remember, publishing feature is not available in foundation.
    Hope it could help
    Hemendra:Yesterday is just a memory,Tomorrow we may never see
    Please remember to mark the replies as answers if they help and unmark them if they provide no help

  • Command link navigation problems in IE but not firefox

    Hi,
    I've developed an application using JSF and SDO. I have several pages where the user is displayed data from the database and pages where the user can add data , edit data and delete data.
    Each page has a jsp fragment contained in the page. This is based on faces and is the naviation menu. Each link in the menu is a command link and has navigation rules which are global. Now the problem I get is that when I sometimes nvaigate between pages using the navigation or command links in a page the page just refreshes and displays the same page again. But if I keep trying to click the link again then after a few attempts the link goes to the page i've requested. I've added system outs on the actions for the links to see if they are getting called when the page just refreshes. The answer is no as the system out line is never printed unless the action of the link is actually executed.
    Now the problem is that this only occurs in ie and NOT in firefox. I'm really confused now!!
    Here is some techinical details to help narrow down my situation:
    I'm using wsad 5.1.2 which has faces 1.0, ie 6, firefox 1.0.3.
    Any help would be appreciated!!

    doh! i've solved this problem now....well for now its working perfectly but i'll have to do a bit more testing.
    For anyone that has this problem here was my solution...
    - In IE i went to tools > general tab > settings
    from this menu choose check for newer versions of stored pages to automatically. I previously had every visit to the page.
    This seems to have fixed my problem and the reason why it worked in firefox was because the settings for caching were different.

  • Help with Re-Linking Navigation Buttons

    I have Adobe Flash CS3 Pro.
    I have a navigation header flash file that came with my website template and I am having difficulty making sense of the actionscript. It has a logo section with effects, 5 main nav buttons that move, and two extra link buttons above the navigation bar. Let’s focus on just the Navigation buttons for now. Here is what I have gathered. I have multiple text buttons on one movieclip, and I have successfully edited the text for each button. If I look at the actionscript in the top layer of this movieclip I see:
    “gotoAndStop(parent._parent.num);”
    I also have a separate movieclip symbol (with effects) with 5 buttons layers listed in the actionscript with the following actionscript tied to each button from numbers 1 through 5:
    onClipEvent (load) {
                num=1;
    onClipEvent (load) {
                num=2;
    onClipEvent (load) {
                num=3;
    onClipEvent (load) {
                num=4;
    onClipEvent (load) {
                num=5;
    On the top layer of these 5 buttons I have the following actionscript:
    stop();
    this["item"+_root.button].gotoAndPlay("s1");
    _root.link = _root.button;
    I also have a separate button symbol with the following actionscript:
    on (rollOver) {
                if (_root.link<>1) {
                            menu.item1.gotoAndPlay("s1");
    on (releaseOutside, rollOut) {
                if (_root.link<>1) {
                            menu.item1.gotoAndPlay("s2");
    on (release) {
                if (_root.link<>1) {
                            _root.menu["item"+_root.link].gotoAndPlay("s2");
                            _root.link = 1;
                            getURL("index.html");
    Now my website template came with 5 html pages that my flash navigation buttons correspond to: (index.html, index-1.html, index-2.html, index-3.html, index-4.html, index-5.html). My problem is that I have created new pages (index.html, about.html, featured.html, projects.html, contact.html). I would like each of the 5 buttons to correspond to these pages, not the existing standard “index-n.html” pages. 
    Also, this is probably not relevant, but each html page has something to this affect so I can see how they correspond to each button.
    <script type="text/javascript">
              var fo = new FlashObject("flash/menu_vf8.swf?button=2", "head", "100%", "144", "7", "");
              fo.addParam("quality", "high");
                        fo.addParam("wmode", "transparent");
                            fo.addParam("scale", "noscale");
              fo.write("head");
            </script>
    I guess my real question is: What actionscript do I need to update or remove for the nav button LINKS to work with my new html pages rather than the standard 5 index-n.html pages that it automatically wants to link to?
    When I try and add a “getURL” command to each of the 5 buttons and test preview the movie, the links work, but it messes up the effects of the movieclip. In other words, the buttons don’t move, they are motionless, however the links work. If I added this command to each button in some way, what actionscript would I need to remove so there weren’t any complications? I need some expert help here for it would be much appreciated. I am a novice with Flash script and its killing me that I can’t figure it out. I asked for help from the template support and all they came back with was the following message and it wasn’t helpful:
    You need to duplicate each button you are editing - it is very important.
    2) Update the scripting to look similar way:
    on (release) {
    if (_root.link<>num) {
    _parent["item"+_root.link].gotoAndPlay("s2");
    _root.link = num;
    if (num == 1) {
    getURL("index.html");
    } else {
    getURL("index-"+Number(num-1)+".html");
    Update it to:
    on (release) {
    getURL("http://www.google.com");
    Also, I read through the following discussion, which was helpful to a degree, but it still didn’t answer my questions about getting the links to work.
    http://forums.adobe.com/message/3614092#3614092

    First of all, thank you for showing interest and helping out in my dilemma here. I wish I understood your meaning behind “on” because with my luck there is probably some hidden way of placing script on an object that I don’t understand or haven’t discovered yet.
    This is what I know:
    I have multiple text buttons on one movieclip entitled “textbutton1” (see previous picture), and I have successfully edited the text for each button and created two extra frames/buttons to make 7 total. If I look at the actionscript in the top layer of this movieclip I see:
    “gotoAndStop(parent._parent.num);”
    But there is no action on each individual frame (all 7 of them) on that layer.
    Like I mentioned before I have a separate movieclip symbol (entitled “menu effect”) with 7 button movieclip layers listed in the actionscript with the following actionscript on each layer.
    onClipEvent (load) {
                num=1;
    onClipEvent (load) {
                num=2;
    onClipEvent (load) {
                num=3;
    onClipEvent (load) {
                num=4;
    onClipEvent (load) {
                num=5;
    onClipEvent (load) {
                num=6;
    onClipEvent (load) {
                num=7;
    On the top layer (layer 4 frame 25) of these 5 buttons I have the following actionscript:
    stop();
    this["item"+_root.button].gotoAndPlay("s1");
    _root.link = _root.button;
    I can upload another particular image of the movieclip/actionscript if it would be helpful. Let me know.

  • Javascript events are aborted prior to link navigation, seen by NS_BINDING_ABORTED. why is this happening, which seem to be only with FF

    I am seeing some of the server calls via javascript (Used for tracking purpose) is getting aborted in Firefox while seeing through HttpFox. This is happening while clicking on navigation link that navigates to another page in the same window. It works fine with popup. The error type shown is NS_BINDING_ABORTED. The tracking calls prior to navigation is not making to server logs . It works perfectly with Internet Explorer. Dose anyone know why this is happening or specifically if this is known feature of FF

    (BTW, I cross-posted this as https://discussions.apple.com/thread/3078718 just in case the iPhone experts have any insights...)

  • My own link navigation

    Good, day to all, Does apex support navigation list based on query? If yes how Do I do that?

    Hi,
    OK - you need to do a few things.
    1 - Edit you page template (click the link in the Templates section on the page definition to go directly to the template), add in the following immediately before the &lt;/head&gt; tag:
    &lt;style type="text/css"&gt;
    .navigation {color:darkblue; text-decoration:none;}
    .navigation_current {color:red; font-weight:bold; text-decoration:underline;}
    &lt;/style&gt;this sets the style for the menu items
    2 - Update your report's SQL to something like:
    SELECT PAGE_ID, PAGE_TITLE,
    CASE WHEN PAGE_ID = :APP_PAGE_ID THEN 'navigation_current' ELSE 'navigation' END ITEM_CLASS
    FROM APEX_APPLICATION_PAGES
    WHERE APPLICATION_ID = :APP_ID
    AND PAGE_ID NOT IN (0, 101)
    ORDER BY PAGE_IDthis creates an ITEM_CLASS value that should match the style names - :APP_PAGE_ID is the current page, so the CASE statement works out which style to use based on this matching the PAGE_ID value on the table
    3 - In the report attributes you should have three columns - PAGE_ID, PAGE_TITLE and ITEM_CLASS. Untick the Show options for all of these.
    4 - Click the "Add Derived Column" option in the Tasks section on the right of the Report Attributes page. This creates a blank column.
    5 - Edit this new column and go to the HTML Expression setting and add in:
    &lt;a class="#ITEM_CLASS#" href="f?p=&APP_ID.:#PAGE_ID#:&SESSION."&gt;#PAGE_TITLE#&lt;/a&gt;this creates the links on the menu and applies the style to show which one is the current page.
    As this is the only output you need, all of the actual columns are not required for display - hence unticking the Show option
    Andy

  • Page links/navigation tabs screwed up

    Anyone having this problem.
    http://web.mac.com/jollybgood/iWeb/CE3A8F8F-A473-49C1-B636-42D52E6F7156/Welcome. html
    My website looked fine until I added an new page. Now the tabs at the top of each page are all screwed up with duplicate tabs and not showing the new page.
    Any idea on how to fix it? I tried republishing each page.
    Strangely on the Trunk Monkey page the tabs are correct. Is this a known problem with the template I'm using?

    I know there's another thread around here about these rollover issues with suggestions, but I'll try to remember what I did to clear things up. I was having the same problems where the rollover navigation links were acting screwy. Several people suggested republishing the site with the "show in navigation bar" property unchecked and then republishing the site checked. This did not work for me. I also tried deleting the nav files directly from my iDisk and then republishing, but still no dice.
    What finally worked for me was to change the name of my site, republish, and then change it back and republish. Strange. It worked, but in the end I decided to scrap the whole site and start over again.
    Post here and let everyone know if this works for you too.
    http://www.dirtdoog.com/

  • Changing link navigation bar font and color

    Is it possible to change the font and color on the links for each page on iWeb?

    Welcome to the Apple Discussions. Yes, with the code and a HTML snippet that's described in this tutorial: #24 - How to Change the Basic, Rollover and Visited Color of an iWeb Navbar.
    However, if you want to create a site that is more search engine friendly I suggest you create a text based navbar as described in this demo page: Text Based Navbar. If you don't have a lot of pages in your site it's not too difficult.
    OT

  • Object link navigation for opening a document using the document id

    Hi All,
    I am facing a problem with setting up the object link for the transaction id field. My requirement is when i click on the order id, it should open up the particular order.
    For example this kind of scenario is done in application CRMD_BUS2000120. here in the result list we get the list of transaction ids and on click of the id it opens the particular order. Can anyone tell me how to implement the same.
    Thanks & Regards,
    Anuradha

    Hi,
    In the result list to open the property they wud ve used is Internal Link. For the order to open from some other link you have to mention your link details.
    Say, for opening any account form some other screen you have to give the details as follows in the propetied of the particular field,
    object Type : AccountCRM
    Method : Application
    Field -> Object Key : NAV_OBJECT_KEY.
    Hope it helps.
    Regards,
    Purush.

  • Broken Sidebar Link Navigation

    I have created links in a sidebar to other pages within the site, but they do not work. I have made sure that the file names are spelled correctly in the link properties and have tried several different methods of creating the links (type file in properties bar, browse for file, etc.) but they are still broken. When on the site (in browser), if I right-click and "open the links in a new tab/window", they will work, but not if you just click right on it.
    Can you please suggest another way to fix/re-do these links so they connect correctly? Perhaps there is something "behind-the-scenes" that I am missing.
    Thanks!

    I agree that there is definately some weirdness going on and I am determined to sort it out! I tried your suggestion of changing the sidebar into a list, but unfortunately it didn't make much of a difference.
    Here is the code:
    <!-- Begin Side Bar Area -->
       <div id="sidebar1Basic3col">
    <!-- InstanceBeginEditable name="sidebar" -->
    <ul>
       <li><a href="services.html">Enterprise</a></li>
       <li><a href="services_advtech.html">Advanced Technology</a></li>
       <li><a href="services_invest.html"> Investment</a></li>
       <li><a href="services_poladvo.html"> Policy and Advocacy</a></li>
    </ul>
    <!-- InstanceEndEditable -->  </div>
    <!-- End Side Bar -->
    I don't know code very well yet, as I'm still pretty new to web design, but it seems to make sense here and looks like it should all work out (even though it doesn't). Could the problem perhaps be something with the properties of the page(s)? I created these pages off the templates established by the person who originally created the site (I've just been adding and editing), but maybe there's something there?

  • Help with linking navigation menu button directly to pdf on server.

    I am trying to make the "specials" part of nav menu link to pdf on server. Please help

    You need to have your menu set to Manual in the menu properties.
    Then select a pdf file that you will be linking to and add it to the assets.
    Then select the menu item that you want linking to the PDF and select the PDF from the Hyperlinks list.

  • Youtube bad link navigation

    I have a problem wit youtube in both ipad 2 and iphone 4s runing on IOS 5.0.1 non-jailbreaked.
    I sometime search for a clip and i find it, when i click to start it plays another clip.
    the same occur when I get youtube link in safari,mail or imassage
    any idea

    I'm attaching the a simple application (splash.vi) that is being compiled and put through the app builder installer. This program will just throw up a splash screen for a few seconds, and then shut down. The picture vi's are not even being called in this application (they are cased out). However, this vi will not run on another computer after being installed with the installer files created with the application builder. It prompts for the location of the picture vi's.
    It does appear that the picture toolkit is now standard - sorry 'bout the confusion.
    The vi's that are failing are being dropped directly onto the block diagram (true sub-vi's).
    I, too, can use the application builder to compile this file into a .exe. The splash.exe runs just fine from the development computer. It is when I use the installer files created by the app builder to install this application (setup.exe) on a different computer that I experience the bad linkage.
    Thank you for taking the time.
    Attachments:
    splash.vi ‏427 KB

  • SPRO link navigation

    Hi All,
    In SPRO when I search any link and select on it, system navigates me to the specified link.
    However when I search the term 'Electronic Bank Statement', then the system does not navigate me to the link but shows only the SPRO first screen.
    Please tell me why this is happening.
    regards,
    Gaurav

    Hi,
    Try this:
    Goto SPRO-> Additional information->additonal info-> display key-IMG activity  and search.
    Rgds,
    Sandeep

  • How to configure links (navigator)

    changing colours? their are boring (a some)

    argos.void wrote:ok.(wow!) thanks. but the same in links is possible?
    Sorry, I have absolutely no idea, I never used links. You should check the links webpage and manpage to see how can you setup custom styling.
    Edit: from links manpage:
           -background-color 0xRRGGBB
                  Set menu background color in graphics mode. RRGGBB are hex.
           -foreground-color 0xRRGGBB
                  Set menu foreground color in graphics mode. RRGGBB are hex.
    Last edited by karol (2010-07-20 17:15:12)

  • Portal Quick Link navigation from WD4A

    Hello,
    do you know a possibilitiy to navigate to an specific portal quicklink via WD4A. Maybe with the PORTAL_MANAGER and the method "navigate_relative" ?
    Thank you !

    Hi Venkatraman,
    I'm not sure I understand your question completly.  But one way you could call an iView in the portal from a web application is by using the iView's URL.  For example:
    http://<server>:<port>/irj/servlet/prt/portal/prtroot/pcd!3aportal_content!2fcom.sap.foldername!2fcom.sap.iviewname
    This link will load an iView with the object ID <i>iviewname</i> with the name prefix <i>com.sap</i> from the folder <i>foldername</i> with the name prefix <i>com.sap</i>.
    I hope this helps.

Maybe you are looking for