Back button for internal hyperlinks?

I've created internal hyperlinks with IBA (to other chapters in the text) and for the most part, they work. But there is no back button? Help! And thanks!

true, IBA books do not have a back better, per se. However, tap on the bookmark icon and you will see a section called "Recenlty viewed". It can be used to navigate back after a user taps on an internal link.

Similar Messages

  • Forward/ back button for various sub-folders

    Hello all,
    Here's the scenario.....
    I have a forward and back button that load several images in a sub-folder that load to a UIloader....
    next_btn.addEventListener(MouseEvent.CLICK, nextImage);
    function nextImage2(evtObj:MouseEvent):void{
    imageNumber++;
    LargeImageLoader.source = "portfolio/UIloader/bike/00"+imageNumber+".jpg";
    checkNumber();
    back_btn.addEventListener(MouseEvent.CLICK, backImage);
    function backImage2(evtObj:MouseEvent):void{
    imageNumber--;
    LargeImageLoader.source = "portfolio/UIloader/bike/00"+imageNumber+".jpg";
    checkNumber();
    Since I have multiple sub-folders for my portfolio, I was wondering how to apply these same buttons to other sub-folder image paths without needing to create a pair of forward/back buttons for each sub-folder.
    Thanks!

    It's not entirely clear to me, but what I think you need to do for what I think you are saying you want to do would be to make the folder targeting (portfolio/UIloader/bike/, et al) a variable as well.  The only missing link is what you would use to redefine the folders.
    Your next/prev buttons can't be that smart unless you have some conditional logic that helps them realize a particular imageNumber range belongs to a particular folder.  If your images have the same file names (00#.jpg) across the different folders then that won't help.  I believe you would need them to be sequential such that no folder repeats the filenames/numbers of another

  • How can i create forward and back buttons for a dreamweaver slideshow?

    Hi
    I am an illustrator attempting to create a website in dreamweaver (basically it will be an online portfolio). I would like to have a box/slideshow with images of my work that someone can browse through by clicking 'next' and 'back' buttons. Does anyone know how to do this? I have been trying to find out how to do this for ages - i dont want to use flash if possible as i am worried about making the site too complicated. I know how to make swap image thumbnails, but i think my site would be more user friendly (and look more professional) if i could have next and back buttons. Would this involve complicated css code (which scares the life out of me!) or is there a relatively easy way to do it? I have got two 'dreamweaver for idiots' books, but neither of them cover this topic. Can anyone help?

    If you are using CS4, there is a Command to create a Web Album... this does it automatically for you.
    Otherwise, you can create this manually.  Say you have 3 pages,
    page1.html  (is the index page of the album)
    page2.html
    page3.html
    Therefore, using ordinary text links
    Home would link to page1.html
    Previous would link to page3.html
    Next would link to page2.html
    You would need to make adjustments naturally to each page as you move along with the gallery pages, changing the previous and the next links as needed.  Below is a a basic example of setting up the links in a simple table structure.  You would also then style the table layout as you see fit - yes, using css preferably  :-)
    <table>
    <tr>
    <td><h2>MY GALLERY OF PHOTOS</h2>
    <a href="page3.html">Previous</a> | <a href="index.html">Home</a> | <a href="page2.html">Next</a>
    </td>
    </tr>
    <tr>
    <td>
    <br>
    <a href="../images/img_2401_jpg.jpg"><img src="../images/img_2401_jpg.jpg" border=0></a><br>
    </td>
    </tr>
    </table>
    Here's an article on creating an album using the DW Command I mentioned earlier. You could create the album and then copy and paste the code into a current page if you've already designed on.,... not too difficult, I just tested it.  You do however, need to have Fireworks to process the images.
    http://livedocs.adobe.com/en_US/Dreamweaver/9.0/help.html?content=WSc78c5058ca073340dcda91 10b1f693f21-7ad1.html
    You could also check out the Lightbox effect which is very popular:
    http://www.lokeshdhakar.com/projects/lightbox2/
    Or do a google search for 'jquery'.  There are different album effects using that framework as well.
    Hope some of this helps  :-)
    Nadia
    Adobe® Community Expert : Dreamweaver
    Unique CSS Templates |Tutorials |SEO Articles
    http://www.DreamweaverResources.com
    Book: Ultimate CSS Reference
    http://www.sitepoint.com/launch/005dfd4/3/133
    http://twitter.com/nadiap

  • How do i have status bar and a back button  for applets?

    I have an applet which displays a set of panels in order. Is there any way that i can have a status bar like in an browser and a back button so that it can go back and go forward. What do i need to do? Is there any sample code to do so. I am new to java and learning.
    Thanks
    Ram

    Status-Bar -- a long thin panel with a long TextField. Perhaps use something from the BorderFactory class to seperate it from other parts of the screen...
    Back Button -- Keep track of your panels in a CardLayout, for example, then use a Button with an action listener that uses the CardLayout's previous() method to move back to the last panel.

  • How to call custom BSP application on click of BACK button for SC in EBP.

    Hi All,
    We are implementing OCI using custom BSP applications.In EBP SC screen ,in step1 (Select Goods/Services), the links for these BSP applications are displayed.
    The user can create a shopping cart using these applications , after the items are transfered from BSP to SC on standard  EBP screen , in step2
    there are four buttons ,
    1)Refresh
    2)Check
    3)Back
    4)Continue.
    We need to call one of our custom BSP applications on click of  this BACK button
    How can i acchieve the same?
    Do i need to make changes in the standard ITS application or thers some other way?
    Thanks,
    Anubhav.
    Edited by: Anubhav Jain on Jul 1, 2008 7:24 AM

    To call a wd abap application from BSP use the method CL_WD_UTILITIES=>CONSTRUCT_WD_URL then just create a link in bsp with the url returned like this:
    <a href="url">Link</a>
    To pass data from wd abap to bsp or vice versa that a look at this blog: /people/koen.labie2/blog/2006/11/29/eating-cookies-with-webdynpro-and-bsp
    regards,
    Fabio Louzada Saito

  • Disable Default function of "Back" button for Android.

    Hi there!
    I have tried SO MANY methods to PREVENT the default function of Back button in Android but no success
    This is one of the codes I have used with no success:
    stage.addEventListener(KeyboardEvent.KEY_UP, optionsKey, false, 0, true);
    function optionsKey(ke:KeyboardEvent):void
          if (ke.keyCode == Keyboard.BACK)
                ke.preventDefault();
                ke.stopImmediatePropagation();
              //Do my own code below...
    I am using Flash Cs6 , Air 3.2 for Android , Testing it on LG Google nexus 4.
    When I use the flash simulator, it works fine! Means the Back Button, let the App go back to previous step (as I expect it to do)
    But after I publish the apk (Aspect ratio: Auto , Auto orientation , Render mode: GPU), as soon as I press BACK, it minimize my app!
    (means when i press the Back button on my phone, the App minimize down (not close!). when I re-activate it/click on it, I see the app has actually gone one step BACK (as I programmed and expected), but I just CANT STOP the default action of MINIMIZING/De-activating my app after pressing Back button.
    Anyone have any "Fla" file that I can see it in ACTION please?!
    Because I have used many-many codes and no success yet
    thanks and looking forward for your any kind of hlep...
    Message was edited by: Pouradam

    I got my own answer thanks to myself!!
    in above code .KEY_UP should be changed to .KEY_DOWN.
    simple!

  • Back Button for Custom Search Component CRM 7.0 Webui

    Hi Guys,
    I have developed Zworklistsearch component (WEBUI) for the service order header and item level search.
    The component will replace standard worklist search in the worklist Menu (Standard component CRM_BT_TRANSINB).
    The Component is having following parts
    1. Search option (Selection box with option header level search and item level search)
    The search option is binded to the component controller. When the search is loaded the default search type is header.
    2. Search view fields
    BOL objects for both item level and header level search has been created. However both the search views are referring to the same Z structure.
    When the search is loaded default search view is header. The search view is loaded based on the search type selection by triggering outbound plug.
    Both the search views are binded to the same component controller
    3. Saved Search
    Used standard Component SavedSearchRegistration.
    4. Result view
    Both item and header result views BOL objects are created.
    The zworklistsearch object has been replaced with the standard transaction inbox search. However, the problem is with the navigation.
    In case of header search type when I navigate to the service order from the header result view and when I hit back button the search view selection is retained.
    However, in case of Item search type when I navigate to the service order or service order item and when I hit back button the search view selection is not retained.
    The search view loaded on the component is the header search view.
    Also when I execute the saved search, Component is opened in a new window (not in the worklist window). And If I navigate to the service order and hit back button, the worklist view is not displayed.

    Hi,
    Refer to this thread
    You need to write breadcrumb methods.
    [Re: Advanced Search Field Hiding]
    [Re: "Back"-Button History in Z*Window]
    -Satish

  • Enabling Browser Back Button for FLEX App

    Can anyone suggest me a way to implement Browser Back Button work with Flex App which runs in every browser and works perfect bug free ???

    thanx for the reply but unfortunately its not running in IE6 ... any idea why ?

  • What happened to the quick browse button (down arrow) that use to be by the back button for quickly moving back several webpages?

    The old Firefox used to have a small arrow button next to the forward/back buttons. When clicked it would show the entire browsing history making it easy to jump back several pages. Now it seems to be gone. I have only used the new version for a day and already I am tired of having to click back one page at a time. Was the quick navigate button moved or was it taken away?

    This feature is still available, simply right click on the back button, and select which page you would like to go back to, just as before.

  • Programming Mighty mouse with back button for Safari

    Is there a way to program the mighty mouse so that the squeeze buttons on the side make it go back in Safari. Does it require a script. Are there any ready made scripts for that? (The keyboard command would be command left bracket.
    thanks

    Try the shareware mouse software, SteerMouse - VersionTracker or MacUpdate.

  • Previous/back button for lock screen (Android)

    I would like to see a previous song button on the lock screen of Android. I dislike having to unlock my phone just to start a song over or to get back to another.

     I didn't do anything specifically, as far as I can remember, other than installing the Spotify app. Of course, these controls do not show up unless I already opened the app beforehand and started playing a song. Once it's already playing, then the controls appear after locking the screen. I even changed my security because I had pattern unlock and changed it to PIN in order to take the screenshot I posted above.But in both security modes (pattern/pin) I can see the controls. My only guess is that it could be something related to the phone model itself. I have a Samsung E7, which has a large screen. I don't know the size of the Sony z3, and I don't have an smaller phone at hand at the moment to test. If this is the issue, then it can be more of a phone model related bug. I'll attach some links with some information that could be helpful for you. Pay close attention to the last one, as it seemed that it was the solution for most of the users. On this link there are several suggestions of apps that may be preventing the music controls to show up in the lock screen. Maybe one of those could help?http://forum.xda-developers.com/google-nexus-5/help/lock-screen-music-controls-disappear-t2514983 Some mention that uninstalling smart key fixed the issue."I just had this problem on my Sony Xperia Z3 Compact. Disabling Smartkey did the trick. Thanks so much guys! I have a feeling fixing this might not be high on Sony's priority list." http://talk.sonymobile.com/t5/Xperia-Z1-Z1s/Problem-with-Music-widget-on-lockscreen-bug/td-p/382277/page/5   I hope it works out for you!

  • Back button for Navigation in the UWL

    Just migrated an EP 6 SP2 Patch 4 to Patch 31 and now the Button in the UWL got lost.
    It was just above the R/3 system view and now there is only a link on the left side which says "back".
    That´s not enough for my case.
    So how can I get back the button or is it impossible ?
    Thanks.

    Hi Wei,
    That's because you can't link to UDO's. There is no object type for an UDO. You should use onject type NONE and make the logic behind it yourself. (Capture the linked button press event and handle all actions)
    Hope this helps,
    Rowdy

  • Back Button for export to SWF

    Hi, I am working on some interactive wire frames using indesgn. It's actually a test to convince my boss that indesign can handle this type of project. It was all going well until I tried to implement a back (previous) button.
    I am exporting the file to SWF as this option seems to give the best options for navigation. I have tried to use the built in 'previous' button but this just seems to take me back one page - e.g. if I navigate from page 1 to page 10 and then hit the previous button it takes me to page 9 and not page 1.
    Can anyone help. Or explain why this can be achieved if you export to PDF but not to SWF.  Thanks in advance.

    I would say that is the farthest thing from a description for why dynamic loading is done in Flash that I could think of.  While the amount of code that a file has to process can be a performance burden for a file to get started, in the end the code has to live in the swf file that you create so there is no opportunity to dynamically load the code.
    Dynamic loading involves keeping out the heavy content such as sound, video, and large image files until they are required for use in a file.  If you have alot of images that are being used, then it is better to have them loaded in dynamically when the file is running rather than having them built into the file.
    I can't really think of a time when dynamic loading is not the better way to go regardless if it involves a web-based implementation or not.  But for the web, your enemy is time/user-patience... any time some user has to twiddle their thumbs waiting for a file to load is time they are more likely to spend going elsewhere to find what they seek.

  • Firefox 3 used to have a drop down list under the back button for recent pages. How do I get this in FF4?

    FF3 used to have a drop down list of the most recent pages that a tab had displayed under the back arrow button. FF4 does not appear to have this. How can I see history of what's been displayed in the tab say four or five pages back?

    You can get the drop down list by either right-clicking on the back/forward buttons, or holding down the left button until the list appears.
    If you want the drop-down arrow you can add it with the Back/forward dropmarker add-on - https://addons.mozilla.org/firefox/addon/backforward-dropmarker

  • I just bought an iphone 4 and it suddenly went dead. Even after pressing the lock and back button for 30seconds also it did not work!

    Helpp! Phone not working!!!

    Did you try to reset the phone by holding the sleep and home button until the Apple logo come back again?
    Can you try another USB cable?
    If still no luck, you'll have to get it serviced: Service Answer Center - iPhone

Maybe you are looking for

  • How do I play iTunes on my google chromecast?

    I just got a Chromecast and can't seem to make it work with iTunes... any ideas?

  • Multiple sized pages in the same book?

    I have a 40 page book to design using InDesign. The challenge is that the last 6 pages need to be stagered so that each sheet is .25" wider than the rest of the book. Amy one have an idea how to change the page size? Thanks 

  • How to send smartforms as pdf attachments with e mail

    hi experts, how to send smartforms as pdf attachments with e mail??? nitin

  • I can't configure elan touchpad after service

    Hi! My laptop is G580, i7. OS: Windows 8.1. After service (touchpad change), I can't configure the new one. I tried with different drivers - installing and uninstalling - nothing has change. "Options" in "ELAN" tab doesn't work.... When I start progr

  • Rman WIth Large_pool

    Hi ALL, I read, Oracle suggest to use Large_pool for Rman BAckups, so we configured the Database with Large Pool and its working Fine. BUt My question is, if we are not configure the large Pool, then with memory oracle will use for RMAN. If its share