How to reset bookmark after audiobook has finished playing?

I get audiobooks through audible.com. When playback is stopped a bookmark is saved. When playback is resumed it is possible to advance or rewind from this point. However, when an audiobook has played through to the end (sometimes accidentally) the book mark is at the very end so that the file does not actually begin to play at all! This makes it impossible to rewind it. The only way I have found to do this is when the iPod is conncected to iTunes where there is a slider associated with the file which can be adjusted. How can a bookmark at the very end of an audiobook file be reset when the iPod is not connected to anything?
Dell   Windows XP   30 GB Video iPod

It's possible to do in Captivate 3 by using some JavaScript code. Some have also reported that it works with Captivate 4 but I have not yet tested it myself.
You can try it out and see if it works out for you. Here is the link with the explanation and code: http://www.cpguru.com/2008/11/25/reset-bookmark-in-captivate-3/
/Michael
Visit my Captivate blog with tips & tricks, tutorials and Widgets.

Similar Messages

  • How can I combine multiple animations. (Play another animation after one has finished with a click?)

    How can I combine multiple animations. (Play another animation after one has finished with a click?) Like a slideshow but with animations. any ideas?

    You can do this by calling up the different edge Animate composition html pages using buttons and an iframe:
    To get a general idea, put this in the body of an html page and insert your own URLs where indicated
    <iframe id="iframeID" src="yourFirstURL" width="640" height="480">
    <p>Your browser does not support iframes.</p>
    </iframe>
    <button onclick='loadIframe("iframeID", "firstAnimURL")'>First Animation</button>
    <button onclick='loadIframe("iframeID", "secondAnimURL")'>Second Animation</button>
    <button onclick='loadIframe("iframeID", "thirdAnimURL")'>Third Animation</button>
    <script>
    function loadIframe(iframeID,url) {
    //alert("Hello");
       document.getElementById("iframeID").src = url;
    </script>
    Peter Small

  • Is there anyway to get back my bookmark after it has been overwritten, otherwise deleted?

    What I'm trying to look for are any JSON files earlier than December 16th, 2010. Is there anyway to get back any bookmarks after it has been overwritten, otherwise deleted?

    Only photos on your Camera Roll are backed up. Those can be restored by restoring from your iCloud or iTunes Backup.

  • HT5262 How to reset password after ipod says ipod disabled

    How to reset password after ipod says disabled?

    Place the iOS device in Recovery Mode and then connect to your computer and restore via iTunes. The iPod will be erased.
    iOS: Wrong passcode results in red disabled screen                         
    If recovery mode does not work try DFU mode.                        
    How to put iPod touch / iPhone into DFU mode « Karthik's scribblings        
    For how to restore:
    iTunes: Restoring iOS software
    To restore from backup see:
    iOS: How to back up     
    If you restore from iCloud backup the apps will be automatically downloaded. If you restore from iTunes backup the apps and music have to be in the iTunes library since synced media like apps and music are not included in the backup of the iOS device that iTunes makes.
    You can redownload most iTunes purchases by:
    Downloading past purchases from the App Store, iBookstore, and iTunes Store        
    If you previously synced to the computer then you may be able to recovery use of the iPod without erasing the iPod by following the instructions here:
    Disabled Recovery-must use syncing computer.

  • How to reset password after forgotten password

    How to reset passwod after forgetting password

    You can't recover a password. You have to restore the device within iTunes. You want to use the same computer that you always sync with so that you can restore your app data and settings. You can restore with any other computer, but you will lose everything on the iPad.
    iOS: Wrong passcode results in red disabled screen
    This will tell you how to restore
    iTunes: Backing up, updating or restoring iOS software
    If you cannot restore that way, you may have to use recovery mode
    iPad: Unable to update or restore

  • How to trigger an action after a FLV has finished playing

    I have a FLV file that I am pulling into my SWF and I want to
    go to the next scene in the SWF once the video clip is finished
    playing... Because it's externally loaded I haven't been able to
    figure out how to do this. I tried just importing the FLV to the
    stage and putting it in the timeline, but that makes the SWF huge
    and the video playback is much slower for some reason.
    Does anyone know how to do this?

    Read in the duration metadata from the FLV so you know how
    long the video clip is, then just check to see if the movie's
    current time is >= to the total time. Don't use the prebult
    media player components, write your own player. Check out
    www.gotoandlearn.com for some great easy tutorials on this.

  • How to find out that sequence has finished loading?

    Hello,
    i have a custom C#-OPUI to load and execute testplans.
    I do this using these funtions:
    1. ApplicationManager.OpenSequencFile(filename)
    2. ???
    3.Command TestStart = axSequenceFileViewMgr.GetCommand(.......)
    TestStart.Execute(true)
    The question is now: How do i know that the OpenSequenceFile has finished doing everything?
    I need to know that is finished before i run the execute-command.
    Is there a specail final-event that i can check?
    Thanks for help
    Solved!
    Go to Solution.

    Hi jigg,
    Thanks for the info.
    In my sequence file, besides the main sequence, I also enabled "SequenceFileLoad" callback. In "SequenceFileLoad" sequence, I added some instruments initialization tests. The goal is to initialize the instruments only once when the sequence file is loaded. Therefore I need to know when the "SequenceFileLoad" is finished or when the sequence file has finished loading.
    My first idea is to use the event "axApplicationMgr_SequenceFileOpened", but I found that I will catch this event before the "SequenceFileLoad" execution finished.
    And then, I also found that together with the execution of sequence "SequenceFileLoad", there are 2 events in my C# code: "axApplicationMgr_StartExecution" and "axApplicationMgr_EndExecution" triggered. So I was thinking may be I can use "axApplicationMgr_EndExecution" to determine if the sequence file has finished loading. But the problem is every sequence execution will trigger these 2 events. The main sequence will also trigger these 2 events. So I needs to know the name/ID of the current executing sequence.
    So Is there a way to read current executing sequence name?
    Thanks and regards,
    0049

  • Continue after Robot has finished typing

    Hi,
    I have found a basic example of the Robot class:
    public class RobotExample {   
        public static void main(String[] args) {       
            try {           
                Robot robot = new Robot();
                // Robot start writting
                robot.keyPress(KeyEvent.VK_H);
                robot.keyPress(KeyEvent.VK_I);
                robot.keyPress(KeyEvent.VK_SPACE);
                robot.keyPress(KeyEvent.VK_B);
                robot.keyPress(KeyEvent.VK_U);
                robot.keyPress(KeyEvent.VK_D);
                robot.keyPress(KeyEvent.VK_Y);           
            } catch (AWTException e) {
                e.printStackTrace();
        // Code that follows needs to ensure that the Robot has finished typing
    }The code that immediately follows the Key Presses remove focus from where the robot is typing so it would be nice to detect when the Robot has finished typing before I continue. At the moment the best way I can think of would be to simply place all the Key Presses in a Thread, telling it to sleep once it had finished. The problem with that is there could still be a problem with the amount of time being too much or too little and no way of finding out.
    Does any one have any ideas how I can listen to the Robot events and continue once they have finished?
    Thanks

    Note: This thread was originally posted in the [Java Programming|http://forums.sun.com/forum.jspa?forumID=31] forum, but moved to this forum for closer topic alignment.

  • HT1430 how to reset password after i pod disabled?

    How to reset i pod after disabled

    Hi..
    Password or passcode?
    If you can't remember the Passcode, you need to restore the device from the computer it was last synced with.
    Instructions for putting the device in recovery mode > iOS: Unable to update or restore
    If you restore on a different computer that was never synced with the device, you will be able to unlock the device for use and remove the passcode, but your data will not be present.

  • IPhoto keeps crashing after 'repair' has finished

    iPhoto 11 9.2.1 consistently crashes even after the 'repair' has finished  
    HELP!!
    Never had a problem with iPhoto10

    Same thing is happening to me.  I upgraded last night and it worked fine.  I marked some "Faces" and all was well.  I turned on Photo Stream and it's crashed consistently every time since.  Here is the error code.  I hope I kept it close to 50 lines. 
    Process:         iPhoto [4552]
    Path: /Applications/iPhoto.app/Contents/MacOS/iPhoto
    Identifier:      com.apple.iPhoto
    Version:         9.2.1 (9.2.1)
    Build Info:      iPhotoProject-628000000000000~1
    App Item ID:     408981381
    App External ID: 4641130
    Code Type:       X86 (Native)
    Parent Process:  launchd [222]
    Date/Time:       2012-02-20 11:37:28.924 -0500
    OS Version:      Mac OS X 10.7.3 (11D50b)
    Report Version:  9
    Interval Since Last Report:          22961 sec
    Crashes Since Last Report:           6
    Per-App Interval Since Last Report:  5505 sec
    Per-App Crashes Since Last Report:   6
    Anonymous UUID: 08841BF0-1204-404D-8E20-3F6B7B501A42
    Crashed Thread:  0 Dispatch queue: com.apple.main-thread
    Exception Type:  EXC_BAD_ACCESS (SIGBUS)
    Exception Codes: KERN_PROTECTION_FAILURE at 0x0000000000000000
    VM Regions Near 0:
    --> __PAGEZERO             0000000000000000-0000000000001000 [    4K] ---/--- SM=NUL  /Applications/iPhoto.app/Contents/MacOS/iPhoto
        __TEXT 0000000000001000-0000000000d1b000 [ 13.1M] r-x/rwx SM=COW /Applications/iPhoto.app/Contents/MacOS/iPhoto
    Application Specific Information:
    objc[4552]: garbage collection is OFF
    Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
    0   com.apple.iPhoto                             0x00824501 0x1000 + 8533249
    1   com.apple.iPhoto                             0x001678d6 0x1000 + 1468630
    2   com.apple.Foundation                  0x9ca86e25 __-[NSNotificationCenter addObserver:selector:name:object:]_block_invoke_1 + 49
    3   com.apple.CoreFoundation        0x98ed3cb3 ___CFXNotificationPost_block_invoke_1 + 275
    4   com.apple.CoreFoundation        0x98e9ea38 _CFXNotificationPost + 2776
    5   com.apple.Foundation                  0x9ca72012 -[NSNotificationCenter postNotificationName:object:userInfo:] + 92
    6   com.apple.Foundation                  0x9ca872a6 -[NSNotificationCenter postNotificationName:object:] + 55
    7   com.apple.iPhoto                             0x0016716a 0x1000 + 1466730
    8   com.apple.iPhoto                             0x00167111 0x1000 + 1466641
    9   com.apple.iPhoto                             0x0015c6f4 0x1000 + 1423092
    10  com.apple.CoreFoundation                        0x98eebb6d __invoking___ + 29
    11  com.apple.CoreFoundation                        0x98eebaa9 -[NSInvocation invoke] + 137
    12  com.apple.RedRock                       0x01d59e61 -[RKInvoker _invokeTarget:] + 33
    13  com.apple.CoreFoundation                        0x98ee8de1 -[NSObject performSelector:withObject:] + 65
    14  com.apple.Foundation                0x9cac3e40 __NSThreadPerformPerform + 503
    15  com.apple.CoreFoundation                        0x98e603df __CFRUNLOOP_IS_CALLING_OUT_TO_A_SOURCE0_PERFORM_FUNCTION__ + 15
    16  com.apple.CoreFoundation                        0x98e5fd96 __CFRunLoopDoSources0 + 246
    17  com.apple.CoreFoundation                        0x98e89c68 __CFRunLoopRun + 1112
    18  com.apple.CoreFoundation                        0x98e8947c CFRunLoopRunSpecific + 332
    19  com.apple.CoreFoundation                        0x98e89328 CFRunLoopRunInMode + 120
    20  com.apple.HIToolbox                   0x921e417f RunCurrentEventLoopInMode + 318
    21  com.apple.HIToolbox                   0x921eb412 ReceiveNextEventCommon + 168
    22  com.apple.HIToolbox                   0x921eb356 BlockUntilNextEventMatchingListInMode + 88
    23  com.apple.AppKit                          0x904a7a9c _DPSNextEvent + 678
    24  com.apple.AppKit                          0x904a7306 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 113
    25  com.apple.AppKit                          0x904a3675 -[NSApplication run] + 911
    26  com.apple.AppKit                          0x90737261 NSApplicationMain + 1054
    27  com.apple.iPhoto                           0x0001159a 0x1000 + 66970
    28  com.apple.iPhoto                           0x00010a29 0x1000 + 64041

  • How to check whether music has finished playing and go to another frame

    I have a bunch of music samples which are set up to play on
    the click of a button, and at the same time go to another frame in
    the movie clip so it says 'playing', with a stop button that takes
    you back to frame 1. If you don't click stop, though, when the song
    ends, it stays on this second frame, even though there is nothing
    playing anymore, which is a bit confusing for the viewer.
    So I need to tell flash to check whether the song is finished
    playing, and then if it is, go back to frame 1. I have no idea how
    to do this; have basically done it all using tutorial and samples
    and my limited actionscript knowledge, but I can't find this
    particular code, and don't really have any idea how to write it
    from scratch.
    Many thanks!
    Here's my first frame actionscript:
    stop();
    this.createEmptyMovieClip ("mcSoundHolder",
    this.getNextHighestDepth());
    var mySound:Sound = new Sound (mcSoundHolder);
    btn_Song1.onRelease = function():Void {
    stopAllSounds();
    mySound.loadSound("Soaring1-Burlesque.mp3", true);
    gotoAndPlay("Song1");
    btn_Song2.onRelease = function():Void {
    stopAllSounds();
    mySound.loadSound("Soaring2-PopCyclePotpourri.mp3", true);
    gotoAndPlay("Song2");
    btn_Song3.onRelease = function():Void {
    stopAllSounds();
    mySound.loadSound("Soaring3-PopCycle-SongofLight.mp3",
    true);
    gotoAndPlay("Song3");
    and so on...

    I am not sure how Tomcat handles this, but you need to use two-way (mutual authentication) request but not enforce SSL between Tomcat and the client browser. This will make the browser prompt the user for the cert they want to send. Then you'll need to tackle the other part of your problem, getting the correct content displayed depending on whether the user sent a cert or not. I'm even less help there than I was on the first part of your question.
    So, yeah - good luck with that
    Lee

  • Determine when a QT video has finished playing w/ javascript

    I need to determine when a video clip is finished playing so that I can trigger a function to perform other actions. I can find functions on how to monitor loading & that sort of stuff. But, I can't find a way to monitor when it's finished playing.
    The video clip will be loaded 100% first, then played without any controls (forced to play through), and then hopefully have a function to play it.
    I could always try to determine that if it's a 30 second clip that 30 seconds after it's loaded 100% to perform the action, but I'd rather just have something monitor when it's finished.
    Any suggestions?
    Thank you,
    scott

    Hi Tracy thanks for your reply!
    Yep sorry I know swfloader cant play video but what I have is
    actually a music video swf.
    Would you be able to give me a small example of how i can
    listen for that event please because I have tried listening for a
    'complete' event but it never gets fired?
    Many thanks
    Flexchief

  • How can I put my iMac to sleep after it has finished downloading or uploading something?

    For example: I have some photos and videos that I want to send to a friend. I'm uploading them to a site to do this, and they're quite big files (250 MB).
    I'd like to do this at night, but I don't want to let the computer run all the night through, when this maybe only needs a few hours.
    I can only guess how long it will take (judging by the time it tells me that it will take, if available), and then I can set the computer to go to sleep after X hours or minutes.
    Can I not just simply set it in a way that it goes to sleep automatically after the process is finished? Like, if there's a connection to the internet, that is being used (downloads, uploads), then it shouldn't go to sleep, else it will interrupt the upload, and I can start again.
    Also, I have an iMovie update now, which is over a GB of download.
    I may be mistaken, but I have the feeling that for some Apple programs, it actually keeps the computer awake until the process is done. But it isn't the case with all programs, only with some.
    It's really annoying. Does anyone know a solution? I know that there's this box that you can tick, that says something like to keep the computer from going to sleep if there's a network connection, but in earlier OS this was actually working! Now it's 100% useless.

    You can just set your Mac to sleep using the Energy Saver in System Pref.  Set it to sleep after say, 2 mins of inactivity then check the Put Hard Disk to Sleep setting too.  It won't sleep while you are down/uploading.

  • Maybe this question has been found already, but I have yet to find the answer. How can I restore my bookmarks after it has been deleted from my 'bookmarkbackups' folder?

    So it has been a couple months now since I last cleaned up my bookmarks toolbar. And I could remember a couple of bookmarks tabs I wish I did not delete. I found some articles saying I could try restoring previous versions of my bookmarks from the dates of recent system restore points. But the earliest date I found was of only last week's. I've checked everywhere in my Firefox profile for anything that I could restore to date back into that time, but they too only tracked back as early as last week. I believe the automatic backups Firefox had made during that time has now long been deleted from the system in order to make room for my most current ones. How am I going to be able to retrieve those bookmarks when their aren't any backups available now to restore from?

    If you do not have backups of your bookmarks, either in the bookmarkbackups folder or saved elsewhere, then you can't restore your bookmarks.
    For future prevention: http://kb.mozillazine.org/Backing_up_and_restoring_bookmarks_-_Firefox

  • How to delete icloud after it has been reset to factory settings.

    My grandmother had recently given me her iPhone because I had no phone. She switched to android. Note: she has no idea what her password email is to the iTunes account.(She has Alzheimer's) Fancy that. The iPhone 4 is backed up to icloud. I looked on the internet and restored it to factory settings through iTunes on my computer thinking it could work and delte her info. The phone is still linked to her account. I am unable to setup up the phone because of that. note: I am at the "Hello, welcome to your new iPhone" screen. Any help?

    Does the email address give you any idea of what her Apple ID might have been? As ManSinha indicated, if you can retrieve her Apple ID via the FORGOT APPLE ID site, then you might have a shot at getting the password reset so you can log her off of Find My iPhone.
    What you are seeing here is the Activation Lock:
    ACTIVATION LOCK
    To remove the Activation Lock, one of the following sets of actions must be completed:
    Find My iPhone Activation Lock: Removing a device from a previous owner’s account - Apple Support
    Best of luck,
    GB

Maybe you are looking for