Button hyperlinks work in project preview but not in published .swf

Captivate 6, button hyperlinks work in project preview but not in published .swf, the cursor changes the “the hand” but the hyperlink does not redirect.
Any ideas?
Like I said my buttons work great in preview mode after publishing, one click and the PDF opens in a new browser window. Open the project through the published .swf files and the links will not work.
Using Captivate 6 on WIndows 7

Hello,
Welcome to Adobe Forums.
Once your project published, add the .swf file in Flash Global Setting :
1) Right Click on the content (Published .swf file) and click on Global Settings
2) Go to Advanced Tab and Click on Trusted Location Settings  (Scrool down to see this button)
3) Click on "Add" button and then "Add file", browse for the Captivate 6 published file and click on OK
4) Launch the .htm file again (Location where Captivate publish your project)
Hope this helps !!
Thanks,
Vikram

Similar Messages

  • PayPal button action works in preview but not when published

    Hi! 
    Any thoughts as to why this works correctly in CS5 publish preview but when I publish it I either get no action or (XP comupter) or a blank page (vista).  Any thoughts or insight would be appreciated.  Also, I'm new to flash and here's the button action:
    on (release) {
            //create the LoadVars that will hold our paypal information
            var paypal = new LoadVars();
            //specify the business, amount of the item, shipping, etc.
            paypal.cmd="_xclick";
            paypal.upload="1";
            paypal.business="[email protected]";
            paypal.currency_code="USD";
            paypal.amount="275.00";
            //paypal.handling = "0";
            //paypal.no_shipping = "0";
            paypal.item_name="One Session";
            //added
            //paypal.lc="GB";
            paypal.bn="PP-BuyNowBF";
            //paypal.no_note="1";
            //send our information to PayPal, including all the optional  variables we have collected from customer
             paypal.send("https://www.paypal.com/cgi-bin/webscr","_blank","POST");
    Thanks!
    Robert

    Hi Robert,
    as far as I understand your post, you are missing some kind of "button-artwork" in the published file, but do not report a problem with the "action" that the script should perform.
    My guess would be that it will be hard to help you without having a better understanding what your trying to achive and how (are you using a prebuilt component, or did you build the button fron scratch etc....)
    It might be even necessary to have a look at the fla itself.
    M

  • Load swf works in Publish Preview but not when published

    Hi Folks,
    I having a problem where im trying to load two 1mb SWF movies into my Flash piece. It works fine in Publish Preview but not when I finally publish. I get this error in IE:
    SecurityError: Error #2000: No active security context.
    I have googled around and there is some talk online of a hack where by you get a timeout to overcome this. However im not so technical do I dont really know how to do this to my code in AS3. My code at the moment is below.
    Any help would be much appreciated and rewarded with Karma
    movieClip_12.addEventListener(MouseEvent.CLICK, fl_ClickToLoadUnloadSWF_9);
    var fl_Loader_9:Loader;
    //This variable keeps track of whether you want to load or unload the SWF
    var fl_ToLoad_9:Boolean = true;
    function fl_ClickToLoadUnloadSWF_9(event:MouseEvent):void
    if(fl_ToLoad_9)
      fl_Loader_9 = new Loader();
      fl_Loader_9.load(new URLRequest("search.swf"));
      addChild(fl_Loader_9);
    else
      fl_Loader_9.unload();
      removeChild(fl_Loader_9);
      fl_Loader_9 = null;
    // Toggle whether you want to load or unload the SWF
    fl_ToLoad_9 = !fl_ToLoad_9;
    movieClip_14.addEventListener(MouseEvent.CLICK, fl_ClickToLoadUnloadSWF_10);
    var fl_Loader_10:Loader;
    //This variable keeps track of whether you want to load or unload the SWF
    var fl_ToLoad_10:Boolean = true;
    function fl_ClickToLoadUnloadSWF_10(event:MouseEvent):void
    if(fl_ToLoad_10)
      fl_Loader_10 = new Loader();
    fl_Loader_10.load(new URLRequest("refunds.swf"));
      addChild(fl_Loader_10);
    else
      fl_Loader_10.unload();
      removeChild(fl_Loader_10);
      fl_Loader_10 = null;
    // Toggle whether you want to load or unload the SWF
    fl_ToLoad_10 = !fl_ToLoad_10;

    I think this is either a problem with my site preLoader or my external .swf Loader. I was checking out the bandwith profiler and saw something weird and I wondered if anyone could explain...I've added a picture. I have a blank frame on only my actions layer to export classes to and it seems that frame 2 is "bleeding" into frame 1. Could this be my problem? Why would this happen? Thanks

  • Chapter buttons work fine in preview but not in build

    Hi,
    I am using video as a back ground and overlaying buttons that highlight when selected. The button routing is fine, default button set up, no overrides and it works fine in preview, however when I build it to disk no buttons are highlighted, cannot navigate or select any chapters. I deleted the menu are recreated it but same problem, anybody have any ideas?,
    Regards,
    Colin Browne - Irish Video Productions

    Irish Video wrote:
    thanks for your help. The problem was with the aspect ratio of the menu and the background video. Even though it is a 16:9 project the only way I could get it to work was to export the background video again in 4:3, change the menu aspect and re-position the buttons.
    Hmmm.  If there is a mismatch between menu, video and project PARs, it's possible that things got moved around enough during transcoding to make the close-but-not-overlapping button hit areas actually overlap when the project was built.  The fact that repositioning the buttons and adjusting PAR fixed the problem is the biggest clue, IMHO.
    At least that's my theory...
    Regardless, thanks for posting back with your solution!
    -Jeff

  • Works in preview but not when published in captivate 8?

    My youtube widget used in captivate 8 works just fine in the preview, but when published there's nothing where the video should be, any idea as to why?

    Hi Robert,
    as far as I understand your post, you are missing some kind of "button-artwork" in the published file, but do not report a problem with the "action" that the script should perform.
    My guess would be that it will be hard to help you without having a better understanding what your trying to achive and how (are you using a prebuilt component, or did you build the button fron scratch etc....)
    It might be even necessary to have a look at the fla itself.
    M

  • Works in Flash preview, but not on webpage?

    I'm using this code to externally load a .swf into my site. I made sure all the files were uploaded. I'm sure, because I can even find the .swf on the site, it just won't show up on the main page. (for example, I can find it at www.mysite.com/flashfolder/animation.swf, but not in it's place at www.mysite.com)
    Here's the code I'm using:
    createEmptyMovieClip("anim", 0);
    anim.loadMovie("animation.swf");
    anim._x = 156;
    anim._y = 515;
    It's inserted into the actions panel of a new layer in the main Scene 1 timeline in my .fla project. It works when I preview it (ctrl+enter), but when I upload everything to the site, it doesn't show up?
    Anyone know what may cause/why this is happening?
    Thanks for your help in advance!

    Is the file that is loading animation.swf also in the same folder?

  • Effect works in the preview, but not after export. (10.1.1)

    Hi all.
    I am new to FCP, making a simple slide show movie with some Ken Burns images, music and titles. For one image there is some color correction, Ken Burns, and I want the image to fade from Black and White to Color. I did this by adding the Black and White effect, choosing "show video animation" in the timeline and making the B&W effect gradually decrease. It works perfectly in the preview, but when I share the video, the effect is always missing (it just stays B&W). I have tried:
    Undoing and redoing the effect
    Exporting to different formats
    Turning off background rendering and deleting render files
    to no avail. Any thoughts?
    Thanks in advance!

    I'm hoping to avoid updating until after this movie is delivered. I find it best not to tinker with stable software mid-project. Maybe if I get desperate enough I'll give it a whirl, though.

  • The hyperlinks work on Iphone 5 but not on Android, please help

    I am creating a cloud based portfolio with Indesign 6 and folio builder for everyone at work. I have tested it on the Iphone 5 and everything works fine. I've shared the portfolio with people with a samsung phone and they can view it but none of the hyperlinks work. Can you help?
    Just a follow up, Spoken to Adobe and after waiting a hour, they say hyperlinks won't work on an android device. His exact words were, 'thats a problem with 'apple', call them'!!!
    Really smart people working at adobe, well done.

    Hi, I'm trying to hyperlink to another page in the folio builder. I'm using the Adobe Viewer but it's not working on the Samsung Galaxy S3.
    An example is to press on a button to go to a page setup with  images.
    Is there a different viewer I can use on the Android to the Adobe Viewer??

  • Links work in browser preview but not on server?

    Hi,
    My GL CS application is doing strange things to me HTML code with the result that my links are not working once uploaded to my server. The links on the pages are working in the browser preview but once uploaded to the server the links are dead. I have used the FTP upload from GoLive ( which has worked just fine in the past 10 years) but I notice that the page code is compiled into one single line once published. So I used a Filezilla to upload to the server with the result that the HTML structure is correct and identical to the one stored in Golive, but the links are still not working.
    Does anyone have an idea what aspect I am overlooking. Do I have to update/upload the script? I am thankful for any suggestions to resolve this issue.

    Hi,
    Thank you for your tip in regards to solving the problem with my links. It¹s
    still not working 100% but already a bit better. I guess I have to redesign
    my site using a more contemporary software.
    Thanks,
    Arun

  • My site works in Composer preview, but not on the web.

    I have just created a site w/ composer(through mozilla) and it works when i preview the index.html in the mozilla browser. So I am now using the fetch demo to ftp transfer my files to my domain(www.swansondesignline.com) which i registered through nameroute.com. when i view my page everything works except for my images. yes, they are all .jpeg & .gif....no, there are no spaces in the file names....no, i have not changed the location of these files. any help?

    Looks fine here too. However, since this discussion forum is for iWeb, you may find better support in a forum that is specifically for composer.

  • Advance actions work while in Captivate, but not when Published

    Hey,
    So I have a button which is suppose to both send you to the next slide and open up a web page in a new window. While in Captivate (5.5), it works, and wonderfully. However, after I publish it...pushing the button does nothing. Any thoughts as to why?

    Your Grand Kids" graphic is overlapping the left part of the navbar. Reduce the size of that graphic or move it off the navbar.
    OT

  • Rollover image works on dreamweaver/preview but not on website

    Hey everybody so I'm working on a site for my new clothing line and I am frustrated out of my mind right now because everything seemed to work fine until I published the site my biggest problem right now is that the rollover images I'm using do not show on the actual site but they work perfectly on dreamweaver and the browser preview PLEASE I NEED HELP
    here's the CSS/HTML (Below)
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
    <title>Store</title>
    <style type="text/css">
    #main .container #content p {
        body, div, h1, h2, h3, h4, h5, h6, p, ul, img {margin:0px; padding:0px; } 
    body { font-family: Arial, Helvetica, sans-serif; } 
        .container {
            width: 1000px; 
            margin: 0 auto; 
           body { 
            font-family: Arial, Helvetica, sans-serif; 
            background: #e4e2e2;
    .Header {
        background-image: url(images/Doozie-Jank-Website_03.jpg);
        background-repeat: repeat-x;
                   #logo { 
            background: url(images//images/webheader_08.png) no-repeat; 
            height:300px; 
            width: 900px; 
               #logo h1 { 
            text-indent: -9999px; 
            padding-top: 40px;
            ul#menu { 
            list-style: none; 
        ul#menu li a { 
            font-size: 35px; 
            color: #c7c7c7; 
            text-decoration: none; 
        ul#menu { 
            list-style: none; 
            padding-top: 185px; 
        ul#menu li { 
            float: left; 
            padding-left: 60px; 
            ul#menu li { 
            float: left; 
            padding-left: 10px; 
            padding-right: 50px; 
        #view-cart{
            position:absolute;
    right:650px;
    top:305px;
    #rollover{
        margin:100px 20px;
        height: 400px;
        width: 400px;
        text-indent: 10000px;
        overflow: hidden;
        background: url(Images/deer-in-headlights-store.gif) top left no-repeat;
        display: block;
    #rollover:hover{
        background-position: bottom left;
        float:left;
    width:110px;
    height:0px;
    margin:5px;
        #sidebar { 
        float: right; 
               #sidebar { 
            float: right; 
            margin-left: 100px; 
            margin-top: -62px; 
           #footer { 
            background: url(images/footer.jpg) repeat-x;
            padding-top: 20px; 
            padding-bottom:60px; 
            margin-top: 40px; 
              color: #fff; 
        #footer p {
            padding-top: 20px; 
            padding-bottom:60px;
            margin-top: -25px;
            margin-bottom: -25px; 
              color: #fff;
          </style>
    <body class="Header">
            <div id="main"> 
            <div class="container"> 
                 <div id="header"> 
                 <div id="logo"> 
        <h1>Doozie Jank</h1>
                 <ul id="menu"> 
            <li><a href="index.html">Blog</a></li> 
            <li><a href="Store.html">Store</a></li> 
            <li><a href="About.html">About</a></li> 
            <li><a href="Contact.html">Contact</a></li>
             <li><a href="#">Cart</a></li>
    </form>
        </ul> 
                 </div>
                 </div><!--end header -->
                  <div id="view-cart">
                  <form target="paypal" action="https://www.paypal.com/cgi-bin/webscr" method="post">
    <input type="hidden" name="cmd" value="_cart">
    <input type="hidden" name="business" value="8JUVRPJ32YCFC">
    <input type="hidden" name="display" value="1">
    <input type="image" src="images/images/button-view-cart_23.png" width="174" height="47" >
    <img alt="" border="0" src="https://www.paypal.com/en_US/i/scr/pixel.gif" width="1" height="1">
    </form>
                  </div><!--end view-Cart-->
    <div id="sidebar">
        <ul>
                         <a href="http://www.facebook.com/home.php#!/pages/Doozie-Jank/137039669686754"><img src="images/Facebook1.png" alt="" width="52" height="54" /></a>
                         <a href="http://twitter.com/DoozieJank"><img src="images/Twitter1.png" alt="" width="52" height="54" /></a>
                        </ul>
         </div><!--end sidebar-->
      <div id="rollover">
       <a href="#"></a>
    </div><!--end shirts-->
    <div id="Buy">
    <form action="https://www.paypal.com/cgi-bin/webscr" method="post">
    <input type="hidden" name="cmd" value="_s-xclick">
    <table>
    <tr><td><input type="hidden" name="on0" value="Sizes">Sizes</td></tr><tr><td><select name="os0">
        <option value="Mens-S">Mens-S </option>
        <option value="Mens-M">Mens-M </option>
        <option value="Mens-L">Mens-L </option>
        <option value="Mens-XL">Mens-XL </option>
        <option value="Womens-S">Womens-S </option>
        <option value="Womens-M">Womens-M </option>
        <option value="Womens-L">Womens-L </option>
        <option value="Womens-XL">Womens-XL </option>
    </select> </td></tr>
    </table>
    <input type="hidden" name="encrypted" value="-----BEGIN PKCS7-----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 +9ftudFJDcAOzlVFH86Mhhv-----END PKCS7-----
    ">
    <input type="image"src="images/images/button-view-cart_13.png" width="160" height="43">
    <img alt="" border="0" src="https://www.paypal.com/en_US/i/scr/pixel.gif" width="1" height="1">
    </form>
    <form target="paypal" action="https://www.paypal.com/cgi-bin/webscr" method="post">
    <input type="hidden" name="cmd" value="_s-xclick">
    <table>
    <tr><td><input type="hidden" name="on0" value="Sizes">Sizes</td></tr><tr><td><select name="os0">
        <option value="Men's-S">Men's-S </option>
        <option value="Men's-M">Men's-M </option>
        <option value="Men's-L">Men's-L </option>
        <option value="Men's-XL">Men's-XL </option>
        <option value="Women's-S">Women's-S </option>
        <option value="Women's-M">Women's-M </option>
        <option value="Women's-L">Women's-L </option>
        <option value="Women's-XL">Women's-XL </option>
    </select> </td></tr>
    </table>
    <form target="paypal" action="https://www.paypal.com/cgi-bin/webscr" method="post">
    <input type="hidden" name="cmd" value="_s-xclick">
    <table>
    <tr><td><input type="hidden" name="on0" value="Sizes">Sizes</td></tr><tr><td><select name="os0">
        <option value="Mens-S">Mens-S </option>
        <option value="Mens-M">Mens-M </option>
        <option value="Mens-L">Mens-L </option>
        <option value="Mens-XL">Mens-XL </option>
        <option value="Womens-S">Womens-S </option>
        <option value="Womens-M">Womens-M </option>
        <option value="Womens-L">Womens-L </option>
        <option value="Womens-XL">Womens-XL </option>
    </select> </td></tr>
    </table>
    <input type="hidden" name="encrypted" value="-----BEGIN PKCS7-----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 hzSw3oItgcbXf9EB/o/qXtb-----END PKCS7-----
    ">
    <input type="image" src="images/images/button-view-cart_19.png" width="197" height="44" />
    <img alt="" border="0" src="https://www.paypal.com/en_US/i/scr/pixel.gif" width="1" height="1">
    </form>
       </div><!--end buy-->
    <div id="footer"> 
            <div class="container"> 
              <p>Copyright © 2010 Doozie Jank<br /> 
                All Rights Reserved</p> 
            </div><!--end footer container--> 
        </div><!--end footer-->
    </head>
    <body>
    </body>
    </html>

    Fix your validation errors first -
    http://validator.w3.org/unicorn/check?ucn_uri=dooziejank.com%2FDeer%2520in%2520The%2520Hea dlights.html&ucn_lang=en&ucn_task=conformance#
    For example, you have no </head> tag....
    And it's a very bad idea to use spaces in your filenames for the web
    Deer in The Headlights.html

  • XML data connection works in the preview, but not in the final swf

    Hello,
    I have set-up a dashboard with an XML data connection button to load XML data from an internet source. Everthing works perfect in the preview-swf within Xcelsius 4.5. But pressing the button in the exported swf does not have any effect. The dashboard is busy for 2 seconds, but no data is loaded. What could be the reason?
    Thanks.

    Yes, the location is registered. The problem also occours when the swf is opened directly on the web server where the xml-source is running.

  • Masking works in preview but not when published

    I am dynamically loading higher-res images into a movie clip
    that
    correspond to the place in a 360 degree rotation the main
    clip is at,
    then resizing that movie clip to "zoom" the image. Since I
    don't want
    to overflow the whole screen, I've created another movie clip
    that
    masks the loader movie clip.
    When I preview the flash file, it works perfectly. When I
    publish the
    file, the mask doesn't get applied. Thoughts?
    zoom_btn.onPress = function(){
    if(iszoomed == false){
    loadMovie("zoomimages/" + Math.floor((_currentframe-4)/3) +
    "big.jpg", image_mc);
    stop();
    zoom_btn.onRelease = function(){
    if(iszoomed == false){
    Loading progress loop begins, extra code
    removed...
    if (pcLoaded >= 99){loader_mc._alpha = 0;
    image_mc._visible = true;
    myMask_mc._visible = true;
    image_mc.setMask(myMask_mc);
    .....Loading progress loop ends}
    iszoomed = true;
    }

    Hi Robert,
    as far as I understand your post, you are missing some kind of "button-artwork" in the published file, but do not report a problem with the "action" that the script should perform.
    My guess would be that it will be hard to help you without having a better understanding what your trying to achive and how (are you using a prebuilt component, or did you build the button fron scratch etc....)
    It might be even necessary to have a look at the fla itself.
    M

  • Spry email confirmation works in browser preview but not on line

    Hi
    I've got a problem using spry email confirmation.
    It's the usual enter email, then confirm email.
    When I preview it on my browser from the local site on my hard drive, it works fine, however when I put the files up onto my web hosting, I get the following problem.
    Next to the confirm text field, it shows the two messages which are normally reserved for not matching emails, or having not entered an email. This happens even before I put the cursor in the box.
    Code is attached here.
    Any help much appreciated.
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <title>Bristol Bike Challenges - Register</title>
    <link href="bristol_bath.css" rel="stylesheet" type="text/css" />
    <script src="SpryAssets/SpryMenuBar.js" type="text/javascript"></script>
    <script src="SpryAssets/SpryValidationTextField.js" type="text/javascript"></script>
    <script src="SpryAssets/SpryValidationCheckbox.js" type="text/javascript"></script>
    <script src="SpryAssets/SpryValidationRadio.js" type="text/javascript"></script>
    <script src="SpryAssets/SpryValidationTextarea.js" type="text/javascript"></script>
    <script src="SpryAssets/SpryValidationConfirm.js" type="text/javascript"></script>
    <link href="SpryAssets/SpryMenuBarHorizontal.css" rel="stylesheet" type="text/css" />
    <link href="SpryAssets/SpryValidationTextField.css" rel="stylesheet" type="text/css" />
    <link href="SpryAssets/SpryValidationCheckbox.css" rel="stylesheet" type="text/css" />
    <link href="SpryAssets/SpryValidationRadio.css" rel="stylesheet" type="text/css" />
    <link href="SpryAssets/SpryValidationTextarea.css" rel="stylesheet" type="text/css" />
    <link href="SpryAssets/SpryValidationConfirm.css" rel="stylesheet" type="text/css" />
    </head>
    <body>
    <div id="container">
      <div id="banner"></div>
      <div id="top_image"></div>
      <div id="spry_menu">
        <ul id="MenuBar1" class="MenuBarHorizontal">
          <li><a href="index.html">Home</a></li>
          <li><a href="route.html">Route</a></li>
          <li><a href="register.html">Register</a></li>
          <li><a href="#">Gallery</a></li>
          <li><a href="#">Charities</a></li>
    <li><a href="#">Links</a></li>
        </ul>
      </div>
      <div id="main_image"></div>
      <div id="register_image">Registration - Enter your details below then click submit. You will then have the choice to register another person or move on to payment.</div>
      <div id="forms">
        <form id="form1" name="form1" method="post" action="form.cgi">
        <table width="951" border="0">
        <tr>
        <td width="352" height="43"><label for="firstname">First Name(s)</label></td>
        <td width="589"><span id="sprytextfield1">
          <input type="text" name="firstname" id="firstname" accesskey="f" tabindex="10"/>
          <span class="textfieldRequiredMsg">Please enter your first name</span></span></td>
      </tr>
      <tr>
        <td><label for="surname">Surname</label></td>
        <td><span id="sprytextfield2">
          <input type="text" name="surname" id="surname" accesskey="s" tabindex="20"/>
          <span class="textfieldRequiredMsg">Please enter your surname</span></span></td>
      </tr>
      <tr>
        <td><label for="address">Address</label></td>
        <td><span id="sprytextarea1">
          <textarea name="address" id="address" accesskey="a" tabindex="30" cols="45" rows="5"></textarea>
          <span class="textareaRequiredMsg">Please enter your address</span></span></td>
      </tr>
      <tr>
        <td><label for="email">Email</label></td>
        <td><span id="sprytextfield3">
        <input type="text" name="email" id="email" accesskey="e" tabindex="40"/>
        <span class="textfieldRequiredMsg">Please enter your Email</span><span class="textfieldInvalidFormatMsg">Your email address doesn't look right, please check it</span></span></td>
      </tr>
      <tr>
      <td><label for="email_confirm">Confirm Email</label></td>
      <td><span id="spryconfirm1">
        <input type="text" name="email_confirm" id="email_confirm" accesskey="c" tabindex="42" />
        <span class="confirmRequiredMsg">Please enter your Email</span><span class="confirmInvalidMsg">Email addresses don't match</span></span></td>
      </tr>
      <tr>
        <td><label for="telephone">Telephone No.</label></td>
        <td><span id="sprytextfield4">
          <input type="text" name="telephone" id="telephone" accesskey="t" tabindex="50"/>
          <span class="textfieldRequiredMsg">Please enter your telephone number</span></span></td>
      </tr>
      <tr>
        <td><label for="dob">Date of birth (DD/MM/YY)</label></td>
        <td><span id="sprytextfield7">
          <input type="text" name="dob" id="dob" accesskey="d" tabindex="55" />
          <span class="textfieldRequiredMsg">Please enter your date of birth</span></span></td>
      </tr>
      <tr>
        <td>Are you male or female?</td>
        <td><span id="spryradio3">
        <label>
          <input type="radio" name="Malefemale" value="male" id="Malefemale_0" />
          Male</label>
        <br />
        <label>
          <input type="radio" name="Malefemale" value="female" id="Malefemale_1" />
          Female</label>
        <br />
        <span class="radioRequiredMsg">Please make a selection.</span></span></td>
      </tr>
      <tr>
        <td>Which route do you want to register for?</td>
        <td><span id="spryradio1">
          <label>
            <input type="radio" name="routechoice" value="Challenge" id="routechoice_0" />
            Challenge (£10)</label>
          <br />
          <label>
            <input type="radio" name="routechoice" value="Challenge Extra" id="routechoice_1" />
            Challenge Extra (£15)</label>
          <br />
          <label>
            <input type="radio" name="routechoice" value="Challenge Ultra" id="routechoice_2" />
            Challenge Ultra (£20)</label>
          <br />
          <span class="radioRequiredMsg">Please make a selection.</span></span></td>
      </tr>
      <tr>
        <td>Do you need to hire a bike (£15/day adults, £10/day child)?</td>
        <td><span id="spryradio2">
          <label>
            <input type="radio" name="bikehire" value="Yes to bike hire" id="bikehire_0" />
            Yes</label>
          <br />
          <label>
            <input type="radio" name="bikehire" value="No to bike hire" id="bikehire_1" />
            No</label>
          <br />
          <span class="radioRequiredMsg">Please make a selection.</span></span></td>
      </tr>
      <tr>
        <td><label for="height">If you're hiring a bike, please tell us your height.</label></td>
        <td><input type="text" name="height" id="height" accesskey="h" tabindex="60"/></td>
      </tr>
      <tr>
        <td><label for="terms2">Please tick the box to confirm that you have read and agreed to our <a href="terms_conditions.html">terms & conditions</a></label></td>
        <td><span id="sprycheckbox2">
          <input type="checkbox" name="terms2" id="terms2" accesskey="c" tabindex="70" />
          <span class="checkboxRequiredMsg">Please make a selection.</span></span></td>
      </tr>
      <tr>
      <td> </td>
      <td> </td>
      </tr>
    </table>
          <p>
            <label>Click this button to submit these details and move on to the next step - 
              <input type="submit" name="Submit" id="Submit" value="Submit these details" />
            </label>
          </p><input name="recipient" value="[email protected]" type="hidden">
          <input type=hidden name="subject" value="New Registration">
          <input type=hidden name="redirect"
                                      value="http://www.ukchallengeevents.com/register_more.html">
        </form>
      </div>
      <div id="footer"><a href="about_us.html">about us</a> - <a href="contact_us">contact us</a> - uk challenge events ltd - all rights reserved</div>
    </div>
    <script type="text/javascript">
    <!--
    var MenuBar1 = new Spry.Widget.MenuBar("MenuBar1", {imgDown:"SpryAssets/SpryMenuBarDownHover.gif", imgRight:"SpryAssets/SpryMenuBarRightHover.gif"});
    var sprytextfield1 = new Spry.Widget.ValidationTextField("sprytextfield1");
    var sprytextfield2 = new Spry.Widget.ValidationTextField("sprytextfield2");
    var sprytextarea1 = new Spry.Widget.ValidationTextarea("sprytextarea1");
    var sprytextfield3 = new Spry.Widget.ValidationTextField("sprytextfield3", "email", {validateOn:["blur"]});
    var sprytextfield4 = new Spry.Widget.ValidationTextField("sprytextfield4");
    var spryradio3 = new Spry.Widget.ValidationRadio("spryradio3");
    var spryradio1 = new Spry.Widget.ValidationRadio("spryradio1");
    var spryradio2 = new Spry.Widget.ValidationRadio("spryradio2");
    var sprycheckbox2 = new Spry.Widget.ValidationCheckbox("sprycheckbox2");
    var sprytextfield7 = new Spry.Widget.ValidationTextField("sprytextfield7");
    var spryconfirm1 = new Spry.Widget.ValidationConfirm("spryconfirm1", "email", {validateOn:["blur"]});
    //-->
    </script>
    </body>
    </html>
    Cheers Jon

    sorry sorry sorry!
    Managed to sort it.
    My mistake. Made changes to the html file and uploaded only that to the web.
    There had been changes to the assets, and i hadn't uploaded them!
    I did that and now all is fine
    Cheers
    Jon

Maybe you are looking for

  • How to display all validator messages at the same time?

    Hi Guys, I have a form with validators attached to a couple of my input boxes. I tried to write validators which are reusable in other parts of my app ie. social security number check etc. I also then customized the messages and it all works fine. Bu

  • Description for Variable in variable screen

    Hi Forum, I am using variables type "Replacement Path" in a query for 0FISCYEAR and 0FISCPER3 through by another variable for 0FISCPER. The variables are functioning well, but in the screen of entrance of variables, the variable for 0FISCPER display

  • Force new tab, instead of new window

    Hi. Is there a way for Safari to force links that require new windows to open in a new tab instead? Is there something I can download or a hidden preferance? Thanks, William. iMac G5 1.8GHz, Compaq Presario V2000   Mac OS X (10.4.4)  

  • Email attachment with a BLOB

    Hi Can somebody help or give me the step how to sent an emai with a BLOB? l

  • "Top Contacts" sync issue

    Hi! I would like to report an issue in "Top Contacts" Android app https://play.google.com/store/apps/details?id=com.sonyericsson.androidapp.smart I don't know where I should report, so I decided to do it here The problem is that contact sync is broke