Can an "autoplay" QT jump back a page when finshed?

This may be too much to ask of a simple little app like iWeb, but here goes.....
I have an Index page ("videos")  that has hyperlinks to pages containing "autoplay" videos. Is it possible to do something on one of the autoplay video pages that would cause it, once it finished playing, to jump back to the Index page?

Cyclo, that's brilliant! Your sample is doing exactly what i hoped I could get mine to do!
Only thing is, I am a complete NOOBIE with iWeb & HTML, etc. so I don't really understand what I am to do with the code on that page? Would I copy it in to an HTML snippet, and where does the snippet go? On the movies page, or on the page that precedes the movie (the one that it will jump back to?
again, many thanks

Similar Messages

  • In the latest two updates you can only go back one page at a time, previous versions allowed you to jump back several pages by choosing from the twistie - any suggestions?

    In the latest two updates you can only go back one page at a time, previous versions allowed you to jump back several pages by choosing from the twistie - any suggestions?

    The arrow to open the tab history of the Back and Forward buttons has been removed in Firefox 4 and later.
    Use one of these methods to open the tab history list:
    * Right click on the Back or Forward button
    * Hold down the left mouse button on the enabled Back or Forward button until the list opens
    You can look at this extension:
    * Backward Forward History Dropdown: https://addons.mozilla.org/firefox/addon/backforedrop/

  • In the previous Firefox, I could bring up a list of pages viewed within a tab, so could quickly jump back several pages, but I can't find this now.

    In the previous Firefox, I could bring up a list of pages viewed within a tab, so could quickly jump back several pages, but I can't find this now.

    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

  • Double-click on a page causes Firefox to jump back a page instead of highlighting at the insertion point

    I have a Logitech iFeel MouseMan. The side button is set up for double-click. Sometimes instead of highlighting at the cursor position the tab jumps back one page. (That is, it acts as if I had clicked the back button at the left of the address bar.) This anomalous behavior does not happen if I physically double-click with the mouse's left button. This anomaly happened about a year ago and a Google search turned up a Firefox configuration setting that fixed the problem. Now I can't find that setting and a Google search provides no answers. I solved the problem by resetting my computer to an earlier reset point, but that is an inelegant solution -- and it takes hours. (The problem is not happening now. I ask for the future.) I would prefer to make the problem go away by changing the appropriate Firefox setting. Logitech told me that the problem is not with the mouse nor its software, but with Firefox and that I should ask Firefox experts.

    Thanks for your response.
    I guess I didn't revert to as far back as the change I had made because when I follow your instructions, no entries are bold.
    Or did you perhaps mean the next time the problem occurs I should look for a bold entry? And then change it back to what it was? (All that I recall from a year ago was that I changed one entry from ''true'' to ''false'', or vice versa.)

  • Jumping back a page.

    I have set up a form with a following php page that compares
    the 2 email entries and if they are not the same sends me to an
    error page.
    Click on the link there and you will be sent back to the Form
    without loss of the entries on the form. Well it works with IE, but
    Firefox jumps back one page further.
    How can I get them to behave the same way. (I haven't tried
    other browers)
    See what I mean at
    http://www.justforstarters.net/pages/registration.htm
    You only need to put in the email addresses slightly
    differently, check the box at the bottom and submit to get the
    effect.
    The code I'm using on the reg_error.htm page is
    <a href="javascript:history.go(-2)"> I have also tried
    <a href="javascript:history.go(-2);"> with the same
    outcome.
    Thanks for any help.
    Steve

    (_seb_) wrote:
    > smiffy47 wrote:
    >>> you need to make your form "sticky", meaning the
    form fields values
    >>> persist if
    >> there are validations errors, and the user does not
    need to re-fill
    >> the fields.
    >>> That's what we all do.
    >>
    >> Fine. Can you point me to the glue-pot? (I mean
    how's it done)
    >>
    >> >I see you're processing the form with
    "formsend_starters.php".
    >> >I assume that's a ready-made form processing
    script you found
    >> somewhere?,
    >>> how does it work, is it customizable?
    >>
    >> Yes the intervening "formsend_starters.php" is
    adapted from a form
    >> system a forum member provided a while ago, and
    which I am now trying
    >> employ.
    >> The abreviated guts of it are:
    >>
    >> <?PHP
    >> ###############################
    >> ######## SETUP #########
    >> ###############################
    >> //$adminemail = "your Email"; //Admin's Email
    Address.
    >> $adminemail = $_POST['admin'];
    >> $URL = "../index.htm"; //URL To Go To AFTER Email Is
    Sent.
    >> $sitename = "Just For Starters"; //This is the name
    of the website!
    >> $toadminsubject = "New User Form"; //This is the
    Subject Of The Email
    >> To The Admin!
    >> $tousersubject = "'STARTERS' Registration
    <[email protected]>
    >> Your Details From $sitename"; //This is the subject
    of the email to
    >> the user
    >> ###############################
    >> ######## End Of Setup #########
    >> ###############################
    >> if((isset($_POST['send'])) AND
    (isset($_POST['accept'])))
    >> {
    >> $message = "Thank you for using our on-line
    registration form.\n";
    >> $message .= "Your entries were as follows -\n";
    >>
    >> if
    >> ($_POST['title']) // Check for
    >> Surname input
    >> {
    >> $tit = "Title
    >> - ".$_POST['title']."\n"; //
    >> Create a line for the email message
    >> $message .= "$tit"; // Add
    >> it to the message
    >> }
    >>
    >> if
    >> ($_POST['first_name']) // Check for
    >> first name input
    >> {
    >> $first = "First Name
    >> - ".$_POST['first_name']."\n";
    >> $message .= "$first"; // Add
    >> it to the message
    >> }
    >> if
    >> ($_POST['surname']) // Check for
    >> Surname input
    >> {
    >> $sur = "Surname -
    >> ".$_POST['surname']."\n"; // Create a line for the
    email message
    >> $message .= "$sur"; // Add
    >> it to the message
    >> }
    >> if
    >> ($_POST['dofb']) // Check for
    >> Surname input
    >> {
    >> $dob = "Date of Birth -
    >> ".$_POST['dofb']."\n"; // Create a line for the
    email message
    >> $message .= "$dob"; // Add
    >> it to the message
    >> }
    >> if
    >> ($_POST['email1'])
    >> {
    >> $message .= "Email
    >> - ".$_POST['email1']."\n";
    >> }
    >> $attachedmessage = $_POST['title']."
    >> ".$_POST['first_name']." ".$_POST['surname']."
    Registered With The
    >> Following Details\n
    ====================================\n";
    >> $attachedmessage .= $message;
    >> $attachedmessage .=
    >> "====================================\n This User
    Registered At
    >> ".date('h:m:sA')." On ".date('M dS Y')."";
    >> if($_POST['accept']){
    >> mail($adminemail, $toadminsubject, $attachedmessage,
    "From:
    >> ".$_POST['email1']."");
    >>
    >> mail($_POST['email1'], $tousersubject, $message,
    "From: 'STARTERS'
    >> Registration <[email protected]>");
    >> }
    >> }
    >>
    >> else { echo '<script>
    >> self.location="
    http://www.justforstarters.net/pages/regi_error.htm"
    >> </script>'; } //If BOTH arent set it Redirects
    to Error Page.
    >> if($_POST['email1'] != $_POST['email2']) //Compares
    The Email Input
    >>
    >> {
    >> echo '<script>
    >> self.location="
    http://www.justforstarters.net/pages/accept.htm"
    >> </script>'; //Redirects To Error Page
    >> }
    >> echo '<meta http-equiv="refresh"
    content="0;URL='.$URL.'">';
    >> ?>
    >>
    >> I'm getting a bit bogged down in all this - how the
    hours roll by -
    >> so any help would be much appreciated. Steve
    >>
    >
    > I can't jump on that train.
    >
    > But here's how a sticky form works, in a nutshell (form
    and form
    > processing is all in ONE single PHP page):
    >
    > The following code would
    >
    > <?php
    > if(isset($_POST['Submit'])){ // 'submit' is the name of
    your submit button
    > $error = '';
    >
    > // process and validate a field:
    > $name = trim($_POST['name']); // 'name' is the name of
    an input
    > field in your form
    > if($name == ''){ // if name is empty, show an error
    message (us that
    > for required fields)
    > $error .= '<p style="color:red;">enter your
    name!</p>'; // error
    > message
    > }
    > //repeat above lines as needed for other fields,
    replacing 'name'
    > with other fields names
    >
    > if($error == ''){ // if no error, process the form
    > // place here your mail script (use some of the code
    provided by
    > your friend)
    > }
    > }
    > ?>
    >
    > Now, in your body:
    >
    > <form action="<?php echo $PHP_SELF; ?>">
    > <?php echo $error; ?>
    > <input type="text" name="name" value="<?php echo
    $name; ?>">
    > etc. etc.
    > <input type="submit" name="Submit" value="SEND">
    > </form>
    >
    >
    > Note the input field value. That's the GLUE POT you're
    looking for. Do
    > the same for each field, for example:
    >
    > <input type="text" name="email" value="<?php echo
    $email; ?>">
    >
    > and so on. Note that in my example, your form and the
    form processing
    > happen in the same page. So you need to rename the page
    that contains
    > your form with the .php extension (as opposed to .html).
    >
    > I think with my example and my comments, and combining
    the code you're
    > currently using in "formsend_starters.php", you should
    be able to make
    > your form work fine.
    >
    >
    two corrections:
    1."The following code would"
    should read:
    "The following code would go on the top of your page code
    (the page that contains the form)"
    2.<form action="<?php echo $PHP_SELF; ?>">
    should be:
    <form action="<?php echo $PHP_SELF; ?>"
    method="post">
    seb ( [email protected])
    http://webtrans1.com | high-end web
    design
    Downloads: Slide Show, Directory Browser, Mailing List

  • Am using Safari 4.1.3 with system 10.4.11 and can only come up with advances preference page when calling up security - thus cannot see cookies. I have Safari 5.0.6 on my MacBook. Will it run on my older machine? Can I transfer older bookmarks?

    Am using Safari 4.1.3 with system 10.4.11 and can only come up with advances preference page when calling up security - thus cannot see cookies. I have Safari 5.0.6 on my MacBook. Will it run on my older machine? Can I transfer older bookmarks to the new software?
    Machine Serial Number:          W8*********AR
    <Personal Information Edited by Host>

    Safari preferences has no...

  • Acrobat Pro XI scans both sides (blank backs of pages) when pre-configured to scan front side only

    Acrobat Pro XI scans both sides (blank backs of pages) when pre-configured to scan front side only; using Brother MFC 9840CDW and Windows 8 (was not a problem with previous Acrobat version).  Help, please?

    Update:  No solution has been discovered; and, I did check the Brother settings (since it allows two-sided printing) - nothing awry there.  Acrobat behaves normally when scanning from the flatbed (as opposed to the doc feeder).  Using Acrobat to delete every other page (blank ones) after scanning is not a viable option.  Please, any thoughts on this issue?

  • Playhead jumps back two beats when hitting play

    Playhead jumps back two beats when I press play for one of my GarageBand projects; doesn't occur in other projects.  Is there an obscure setting that will fix this problem?
    This occurs whether I'm playing or recording.  It occurs with or without cycle region.  If the cycle region is turned on, the playhead will jump to two beats before the beginning of the region before starting the cycle playback.
    "Count In" turned off. 
    This issue sapped my entire evening; any help would be appreciated a lot!
    Using GarageBand '08 on the late '08 white MacBook4,1.  OSX 10.5.8

    Try resetting your GB preferences or Mac permissions files...that sometimes works for problems like yours. 
    http://www.bulletsandbones.com/GB/FAQPages/OddBallProbs.html

  • I can only go back one page at a time because the drop-down jump back multiple pages feature is missing; how do I get this feature back?

    On Firefox 3.6 the back and forward buttons also had a drop-down menu to enable me to jump back to one of the last, say, 10 pages I had viewed rather than only go back one at a time. Also, the reload button appears to be missing and I can't figure out how to bring these back. Otherwise, an awesome upgrade; thanks for all your hard work on this fantastic product.

    You can right-click either Back or Forward button to open the tab history list.

  • Google search result page jumps back to top when opening a result in a new tab

    hello
    when searching from www.google.com, using 100 search results per page.
    i will scroll down the page, find a hit worth looking at, right click on it to open it in a new tab, and then immediately the search result page will jump back to the top.
    whereupon i will have to again scroll down to where i was to look a subsequent search results :-(

    Clear the cache and the cookies from sites that cause problems.
    "Clear the Cache":
    * Tools > Options > Advanced > Network > Offline Storage (Cache): "Clear Now"
    "Remove Cookies" from sites causing problems:
    * Tools > Options > Privacy > Cookies: "Show Cookies"
    Start Firefox in <u>[[Safe Mode]]</u> to check if one of the extensions is causing the problem (switch to the DEFAULT theme: Firefox (Tools) > Add-ons > Appearance/Themes).
    *Don't make any changes on the Safe mode start window.
    *https://support.mozilla.com/kb/Safe+Mode
    *https://support.mozilla.com/kb/Troubleshooting+extensions+and+themes

  • Why does Firefox re-jump to a page when it is finished loading or when automatically refreshing?

    If I change tabs or windows within Firefox or switch from Firefox to another open programme running, and the browser page has not completely loaded (or sometimes refreshes due to automatic updating) what I see on the monitor is not the tab or window highlighted in the tab bar (or for that matter programme highlighted in the taskbar). Firefox just jumps back on its own accord and leaves me with often with a view that is conglomeration of the reloading page and the other programm I am working on.

    Another user posted a screenshot of something like that earlier this afternoon, and I'm not sure what is causing that to happen. I suspect if may be caused by an extension that was recently updated, but no ideas about which one it may be. I just got back to my computer after be gone for the last five hours, so I don't if there has been any additional information in the other thread or not. This is about all I can figure to do right now until we have more information related to this new issue.
    Do you have that problem when running in the Firefox SafeMode?
    [http://support.mozilla.com/en-US/kb/Safe+Mode]
    ''Don't select anything right now, just use "Continue in SafeMode."''
    If not, see this:
    [http://support.mozilla.com/en-US/kb/troubleshooting+extensions+and+themes]

  • Why is there no option to go back multiple pages when browsing a website? it is annoying thet there is no option with the back/forward one page button.

    When browsing a fashion or shopping website, you often look at an item, then browse the colour choices, you have to go back multiple pages, before you can look at the next item. Where has the back multiple pages arrow gone?

    To go back (or forward) more than one page, click and hold the mouse button on the back (or forward) button for a few seconds and a list of recently visited sites will show. The down arrow that used to be next to the buttons to view the list was removed to add more space in the toolbar.

  • Firefox 4 loops back a page when entering password on secure sites

    When verifying credit card details on secure sites, eg Verified by Visa ( password needed to confirm valid credit card details with card issuer) Firefox goes back a page asking for details again, instead of confirming card and placing order. Have had to place several orders by phone, before I twigged it was new browser. Have reverted to 3.6.17 for time being

    Padlock is no longer part of Firefox; it was removed beginning in Firefox 4 The padlock shows that there is a secure connection but does not supply additional information. You could have made a typographical error and still have been connected to a secure connection. The padlock was replaced in Firefox 3 with the Site Identity Button. Familiarize yourself with the Site Identity Button at the left end of the Location Bar:
    *https://www.mozilla.com/en-US/firefox/security/identity/
    *https://support.mozilla.com/en-US/kb/Site+Identity+Button
    *http://www.dria.org/wordpress/archives/2008/05/06/635/
    You can install this add-on if you wish: *https://addons.mozilla.org/en-US/firefox/addon/padlock-icon/
    '''If this reply solves your problem, please click "Solved It" next to this reply when <u>signed-in</u> to the forum.'''
    Not related to your question, but...
    You need to update some plug-ins:
    *Plug-in check: https://www-trunk.stage.mozilla.com/en-US/plugincheck/
    *Shockwave Flash (Adobe Flash or Flash): [https://support.mozilla.com/en-US/kb/Managing%20the%20Flash%20plugin#w_updating-flash Updating Flash in Firefox]

  • Jumping up the page when online

    When I am trying to write something that's not at the top of the screen the iPad jumps to the top so I can't see what I'm writing also on eBay wont
    Let me scroll down listing keep jumping back up its a iPad 3 please help!!!

    see https://support.mozilla.com/questions/885622

  • The back button goes back 2 pages, when choosing a bookmark the item under it (on the desktop) is selected

    After upgrading to 3.6.11 The back button sometimes goes back 2 pages, The Bookmarks window just flashes when trying to open it, when it does stays open if an item is selected that item is not opened, the item beneath it on say, my home page is opened. I saw there were some Google related problems in your trouble shooting section, I got rid of the Google stuff but the problem remains.

    Your above posted system details show multiple Java Console extensions.<br />
    You can uninstall (remove) the Java Console extensions, you do not need them to run Java applets.
    See http://kb.mozillazine.org/Java#Multiple_Java_Console_extensions
    Start Firefox in [[Safe Mode]] to check if one of your add-ons is causing your problem (switch to the DEFAULT theme: Tools > Add-ons > Themes).<br />
    See [[Troubleshooting extensions and themes]] and [[Troubleshooting plugins]]<br />
    <br />
    If it does work in Safe-mode then disable all your extensions and then try to find which is causing it by enabling one at a time until the problem reappears.<br />
    You can use "Disable all add-ons" on the [[Safe mode]] start window to disable all extensions.<br />
    You have to close and restart Firefox after each change via "File > Exit" (Mac: "Firefox > Quit"; Linux: "File > Quit")<br />

Maybe you are looking for

  • How to set up SAPconnect with email server

    Hi, Does any one know <b>how to set up SAPconnect with email server</b> We are using workflow and when it fails it we are sending the notification mail to the user on his company mail id, i.e. [email protected] This is working in the current producti

  • Classic WT To Extended WT

    Dear SAP Experts, I am working on upgrade project from SAP 4.7 to ECC 6.0. My client uses the classic withholding tax and they want to go for extended withholding tax. What would you suggest me to configure EWT from first or should I go for Migration

  • Block Bluetooth File Manager

    Hello! When I paired my phone with my friend (he uses Android) he could explore every folder (C:, E: and F: ) of my phone. He could even delete some files... Is there a way to block those bluetooth file managers? Or limit the access? Thanks!

  • Sound driver

    Please help my PC does not have sound says drivers missing and its a Hp Compaq desktop running on XP 32 bit OS. The hardware lds is: PCI\VEN_8086&DEV_266E&SUBSYS_3007103C

  • [solved] qbittorrent fails to load

    Hi, I installed qbittorrent (and rb_libtorrent) from community repo about one month ago (since then I'm using Arch, so I'm pretty new to it, before I was using Ubuntu64). Everything works fine till 13/14. July. On that day there was a qt update and s