JQuery slideshow control button issue

Hi! I am new to jQuery and am trying to adapt a slideshow to fit my layout in Dreamweaver. I have one end of the slideshow working fine, as you can scroll left with no issue. However, on the right control, the button does not seem to be clickable.
The link to the page is here.
<!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" />
<!-- TemplateBeginEditable name="doctitle" -->
<title>DAVIDE MARCHETTI ARCHITETTO</title>
<!-- TemplateEndEditable -->
<style type="text/css">
<!--
* Slideshow style rules.
#slideshow {
          margin: 0 auto;
          width: 702px;
          height: 346px;
          background: transparent url(../images/davide%3E) no-repeat 0 0;
          position: relative;
          background-image: url(../images/Davide-border.png);
#slideshow #slidesContainer {
          margin: 23px auto;
          width: 702px;
          height: 323px; /* allow scrollbar */
          position: relative;
* Slideshow controls style rules.
.control {
  display:block;
  width:39px;
  height:323px;
  text-indent:-10000px;
  position:absolute;
  cursor: pointer;
#leftControl {
  top:0;
  left:0;
  background:transparent url(images/left_control.png) no-repeat 0 0;
#rightControl {
  top:0;
  right:-50px;
  background:transparent url(images/right_control.png) no-repeat 0 0;
#slideshow #slidesContainer .slide {
  margin:23px auto;
  width:700px; /* reduce by 20 pixels of #slidesContainer to avoid horizontal scroll */
  height:300px;
* Style rules for Demo page
          margin: 0;
          padding: 0;
          color: #000;
          font-family: "Courier New", Courier, monospace;
          font-size: xx-small;
          font-style: normal;
          font-weight: normal;
          font-variant: normal;
a {
  color: #fff;
  font-weight:bold;
  text-decoration:none;
a:hover {
  text-decoration:underline;
body {
  background:#FFFFFF;
#pageContainer {
  margin:0 auto;
  width:960px;
#pageContainer h1 {
  display:block;
  width:960px;
  height:114px;
  background:#FFFFFF;
  text-indent: -10000px;
.slide h2, .slide p {
  margin:15px;
.slide h2 {
  font:italic 24px Georgia, "Times New Roman", Times, serif;
  color:#ccc;
  letter-spacing:-1px;
.slide img {
  float:right;
  margin:0 15px;
#footer {
  height:100px;
#footer p {
          margin: 30px auto 0 auto;
          display: block;
          width: 703px;
          height: 40px;
          color: #000;
          font-family: "Courier New", Courier, monospace;
body,td,th {
          color: #000000;
#pageContainer #footer p a {
          color: #000;
#apDiv1 {
          position: absolute;
          width: 32px;
          height: 1px;
          z-index: 1;
          left: 130px;
          top: 441px;
#apDiv2 {
          position: absolute;
          width: 22px;
          height: 4px;
          z-index: 1;
          left: 0px;
          top: 327px;
#apDiv3 {
          position: absolute;
          width: 3px;
          height: 0px;
          z-index: 1;
          left: 214px;
          top: 328px;
#apDiv4 {
          position: absolute;
          width: 0px;
          height: 0px;
          z-index: 1;
          left: 442px;
          top: 328px;
#apDiv5 {
          position: absolute;
          width: 0px;
          height: 4px;
          z-index: 1;
          left: 655px;
          top: 328px;
#apDiv6 {
          position: absolute;
          width: 49px;
          height: 3px;
          z-index: 1;
          left: 1px;
          top: 0px;
-->
</style>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js"></script>
<script type="text/javascript">
$(document).ready(function(){
  var currentPosition = 0;
  var slideWidth = 723;
  var slides = $('.slide');
  var numberOfSlides = slides.length;
  // Remove scrollbar in JS
  $('#slidesContainer').css('overflow', 'hidden');
  // Wrap all .slides with #slideInner div
  slides
    .wrapAll('<div id="slideInner"></div>')
    // Float left to display horizontally, readjust .slides width
          .css({
      'float' : 'left',
      'width' : slideWidth
  // Set #slideInner width equal to total width of all slides
  $('#slideInner').css('width', slideWidth * numberOfSlides);
  // Insert controls in the DOM
  $('#slideshow')
    .prepend('<span class="control" id="leftControl">Clicking moves left</span>')
    .append('<span class="control" id="rightControl">Clicking moves right</span>');
  // Hide left arrow control on first load
  manageControls(currentPosition);
          $('slideInner').animate({
'marginLeft' : slideWidth*(-currentPosition)
  // Create event listeners for .controls clicks
  $('.control')
    .bind('click', function(){
    // Determine new position
          currentPosition = ($(this).attr('id')=='rightControl') ? currentPosition+1 : currentPosition-1;
          // Hide / show controls
    manageControls(currentPosition);
    // Move slideInner using margin-left
    $('#slideInner').animate({
      'marginLeft' : slideWidth*(-currentPosition)
  // manageControls: Hides and Shows controls depending on currentPosition
  function manageControls(position){
    // Hide left arrow if position is first slide
          if(position==0){ $('#leftControl').hide() } else{ $('#leftControl').show() }
          // Hide right arrow if position is last slide
    if(position==numberOfSlides-1){ $('#rightControl').hide() } else{ $('#rightControl').show() }
// Hide / show controls
manageControls(currentPosition);
// Move slideInner using margin-left
$('#slideInner').animate({
'marginLeft' : slideWidth*(-currentPosition)
setTimeout(autoshow, 5000);
</script>
<!-- TemplateBeginEditable name="head" -->
<!-- TemplateEndEditable -->
</head>
<body text="#000000">
<div id="pageContainer">
  <h1><a href="">Davide Marchetti Architetto</a></h1>
  <!-- Slideshow HTML -->
  <div id="slideshow"><!-- TemplateBeginEditable name="EditRegion1" -->
     <div id="apDiv6"><a href="index.html"><img src="../images/hd-main.png" width="178" height="20" /></a></div>
    <div id="apDiv5"><a href="contact.html"><img src="../images/hd-contact.png" width="47" height="19" usemap="#Map2" border="0" />
        <map name="Map2" id="Map2">
          <area shape="rect" coords="-5,-1,62,30" href="contact.html" />
    </map>
  </a></div>
  <div id="apDiv4"><a href="projects.html"><img src="../images/hd-projects.png" width="55" height="19" usemap="#Map" border="0" />
        <map name="Map" id="Map">
          <area shape="rect" coords="-2,-1,60,19" href="#" />
        </map>
    </a></div>
  <div id="apDiv3"><a href="studio.html"><img src="../images/hd-studio.png" width="41" height="19" usemap="#studioMap" longdesc="studio.html" border="0" />
        <map name="studioMap" id="studioMap">
          <area shape="rect" coords="-8,-2,78,22" href="#" target="studio.html" />
        </map>
    </a></div>
    <div id="apDiv2"><a href="news.html"><img src="../images/hd-news.png" width="78" height="19" usemap="#newsMap" border="0" />
        <map name="newsMap" id="newsMap">
          <area shape="rect" coords="-12,-10,164,65" href="#" />
        </map>
    </a></div>
    <div id="slidesContainer">
      <div class="slide">
        <!-- IMAGE ONE -->
      </div>
      <div class="slide">
        <!-- IMAGE ONE -->
      </div>
      <div class="slide">
        <!-- IMAGE ONE -->
      </div>
      <div class="slide">
        <!-- IMAGE ONE -->
      </div>
    </div>
  <!-- TemplateEndEditable --></div>
  <!-- Slideshow HTML -->
  <div id="footer">
    <p align="right"><a href="http://erinpellegrino.com">Website  by Erin Pellegrino</a></p>
  </div>
</div>
</body>
</html>

This is a stacking-order problem caused by the button being layered under your #slidesContainer div.  That's why it's not accessible.
See Z-Index Guide
http://www.smashingmagazine.com/2009/09/15/the-z-index-css-property-a-comprehensive-look/
Nancy O

Similar Messages

  • NetStream Video Control button issue

    The stop button plays as expected.  The play/pause button plays as expected.  The issue is when you press pause which will cause the play button to appear, then press stop.  the video automatically plays and it shouldn't. I have bolded the control button script for convenience.
    var nc:NetConnection = new NetConnection();
    nc.connect(null);
    var ns:NetStream = new NetStream(nc);
    theVideo.attachVideo(ns);
    ns.play("LOB2_0644_new.flv");
    stop_mc.onRelease = function(){
    playpause_mc.gotoAndStop("playing");
    ns.seek(0);
    ns.pause();
    playpause_mc.onRelease = function(){
    ns.pause();
      if (this._currentframe == 1)
            this.gotoAndStop("playing");
            movie_mc.play();
        else
            this.gotoAndStop("paused");
            movie_mc.stop();
        } // end else if
    } // End of the function
    var videoInterval = setInterval(videoStatus,100);
    var amountLoaded:Number;
    var duration:Number;
    ns["onMetaData"] = function(obj){
    duration = obj.duration;
    function videoStatus(){
    amountLoaded = ns.bytesLoaded / ns.bytesTotal;
    loader.loadbar._width = amountLoaded * 424;
    loader.scrub._x = ns.time / duration * 424;
    var scrubInterval;
    loader.scrub.onPress = function(){
    clearInterval(videoInterval);
    scrubInterval = setInterval(scrubit,10);
    this.startDrag(false,0,this._y,424,this._y);
    loader.scrub.onRelease = loader.scrub.onReleaseOutside = function(){
    clearInterval(scrubInterval);
    videoInterval = setInterval(videoStatus,100);
    this.stopDrag();
    function scrubit(){
    ns.seek(Math.floor((loader.scrub._x/424)*duration));
    _root.createEmptyMovieClip("vSound",_root.getNextHighestDepth());
    vSound.attachAudio(ns);
    var so:Sound = new Sound(vSound);
    so.setVolume(100);

    before executing gotoAndStop("playing") check if playpause_mc is already on the "playing" frame.   if it is, do nothing.  if it's not, execute your gotoAndStop().
    also, you probably want:
       else
    ns.play();
            this.gotoAndStop("paused");
            movie_mc.stop();
        } // end else if

  • Hide slideshow controls

    In iPhoto 09 (8.1.2), I want to run slideshows of photos and videos.  Using the space bar to stop/start a slideshow always brings up a slideshow control button.  I want to suppress that display, which looks unprofessional.  Using the navigation keys  (left, right, up, down) does not allow for fades or work properly with videos.  How can I suppress the control button display when I  use the space bar?

    You can't.
    Regards
    TD

  • Lining some divs up, one with a fireworks html and another with a jQuery slideshow

    I am having an issue lining two divs up within a div.  One div has a fireworks html in it (by the way, I can't figure out why that the button states arent' working.  I inserted the code via the insert menu > image objects > fireworks html, but for some reason the button states work.  When I open the navbar.htm in the file browser, it opens it up in dreamweaver and it works perfectly in live preview).  The other div has a simple jQuery slideshow.  I have these two divs in a greater overall div named "div id=wrapper".  How can I line these up so that the nav div and body div are flush against each other within the wrapper div?
    I plan on putting additional divs above and below the wrapper div for more content.  If anyone has insight on why the fireworks html isnt working when inserted, that would be great!!
    Here is the code:
    <!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>Richard J. Craddock Designs</title>
    <script type="text/javascript">
      var _gaq = _gaq || [];
      _gaq.push(['_setAccount', 'UA-3119473-8']);
      _gaq.push(['_setDomainName', 'none']);
      _gaq.push(['_setAllowLinker', true]);
      _gaq.push(['_trackPageview']);
      (function() {
        var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
        ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
        var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
    </script>
    <link href="stylesMain.css" rel="stylesheet" type="text/css" />
    <style type="text/css">
    body {
    background-color: #2f2f2f;
    width: 50 em;
    .fadein { position:relative; height:332px; width:500px; }
    .fadein img {
    position:absolute;
    left:0px;
    top:0px;
    width: 784px;
    }td img {display: block;}td img {display: block;}td img {display: block;}td img {display: block;}td img {display: block;}td img {display: block;}td img {display: block;}
    </style>
    <script src="scripts/jquery.min.js"></script>
    <script>
    $(function(){
    $('.fadein img:gt(0)').hide();
    setInterval(function(){$('.fadein :first-child').fadeOut().next('img').fadeIn().end().appendTo('.fadein');}, 3000);
    </script>
    </head>
    <body>
    <div id="wrapper">
        <div id="navdiv">
          <table style="display: inline-table;" border="0" cellpadding="0" cellspacing="0" width="148">
            <!-- fwtable fwsrc="craddocknavbar.png" fwpage="Page 1" fwbase="craddocknavbar.jpg" fwstyle="Dreamweaver" fwdocid = "1729580248" fwnested="0" -->
            <tr>
              <td><img src="images/spacer.gif" alt="" name="undefined_2" width="148" height="1" border="0" id="undefined_2" /></td>
              <td><img src="images/spacer.gif" alt="" name="undefined_2" width="1" height="1" border="0" id="undefined_2" /></td>
            </tr>
            <tr>
              <td><a href="http://www.rjcraddockdesigns.com/company profile.php" target="_self" onmouseout="MM_nbGroup('out');" onmouseover="MM_nbGroup('over','craddocknavbar_r1_c1_s1','images/craddocknavbar_r1_c1_s2. jpg','craddocknavbar_r1_c1_s4.jpg',1);" onclick="MM_nbGroup('down','navbar1','craddocknavbar_r1_c1_s1','images/craddocknavbar_r1_ c1_s3.jpg',1);"><img name="craddocknavbar_r1_c1_s1" src="images/craddocknavbar_r1_c1_s1.jpg" width="148" height="65" border="0" id="craddocknavbar_r1_c1_s1" alt="Richard J. Craddock Landscape Design in Nantucket: Company Profile" /></a></td>
              <td><img src="images/spacer.gif" alt="" name="undefined_2" width="1" height="65" border="0" id="undefined_2" /></td>
            </tr>
            <tr>
              <td><a href="http://www.rjcraddockdesigns.com/services.php" target="_self" onmouseout="MM_nbGroup('out');" onmouseover="MM_nbGroup('over','craddocknavbar_r2_c1_s1','images/craddocknavbar_r2_c1_s2. jpg','images/craddocknavbar_r2_c1_s4.jpg',1);" onclick="MM_nbGroup('down','navbar1','craddocknavbar_r2_c1_s1','images/craddocknavbar_r2_ c1_s3.jpg',1);"><img name="craddocknavbar_r2_c1_s1" src="images/craddocknavbar_r2_c1_s1.jpg" width="148" height="65" border="0" id="craddocknavbar_r2_c1_s1" alt="Richard J. Craddock Landscape Design in Nantucket: Services" /></a></td>
              <td><img src="images/spacer.gif" alt="" name="undefined_2" width="1" height="65" border="0" id="undefined_2" /></td>
            </tr>
            <tr>
              <td><img name="craddocknavbar_r3_c1_s1" src="images/craddocknavbar_r3_c1_s1.jpg" width="148" height="395" border="0" id="craddocknavbar_r3_c1_s1" alt="" /></td>
              <td><img src="images/spacer.gif" alt="" name="undefined_2" width="1" height="395" border="0" id="undefined_2" /></td>
            </tr>
          </table>
        </div>
         <div id="bodydiv">
        <div class="fadein">
      <img src="images/slideshow/1jquery.jpg">
    <img src="images/slideshow/2jquery.jpg">
    <img src="images/slideshow/3jquery.jpg">
    <img src="images/slideshow/4jquery.jpg">
    <img src="images/slideshow/5jquery.jpg">
    <img src="images/slideshow/6jquery.jpg">
    <img src="images/slideshow/7jquery.jpg">
    <img src="images/slideshow/8jquery.jpg">
    </div>
    </div>
        </div>
    <div id="navigationlower">
        <p><a href="http://www.rjcraddockdesigns.com/index.php" title="Richard J. Craddock Designs Home Page">Home</a> - <a href="http://www.rjcraddockdesigns.com/company profile.php" title="Richard J. Craddock Designs">Profile</a>- <a href="http://www.rjcraddockdesigns.com/services.php" title="Richard J. Craddock Designs">Services</a></p>
      <strong>Richard J. Craddock Designs, 2011</strong></p>
      <p><strong><a href="http://cwws.org" title="Common Wealth Web Solutions" target="_new">Designed by CWWS</a></strong></p>
      <p><a href="https://www.facebook.com/RJCLandscapeDesigns"><img src="facebook icon.png" width="60" height="60" /></a></p>
    </div>
    </body>
    </html>

    Now that I got rid of the fireworks html and replaced with swf, the code is a bit shorter:
    <!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>Richard J. Craddock Designs</title>
    <script src="scripts/swfobject_modified.js" type="text/javascript"></script>
    <script type="text/javascript">
      var _gaq = _gaq || [];
      _gaq.push(['_setAccount', 'UA-3119473-8']);
      _gaq.push(['_setDomainName', 'none']);
      _gaq.push(['_setAllowLinker', true]);
      _gaq.push(['_trackPageview']);
      (function() {
        var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
        ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
        var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
    </script>
    <link href="stylesMain.css" rel="stylesheet" type="text/css" />
    <style type="text/css">
    body {
    background-color: #2f2f2f;
    width: 50 em;
    .fadein { position:relative; height:332px; width:500px; }
    .fadein img {
    position:absolute;
    left:0px;
    top:0px;
    width: 784px;
    }td img {display: block;}td img {display: block;}td img {display: block;}td img {display: block;}td img {display: block;}td img {display: block;}td img {display: block;}
    </style>
    <script src="scripts/jquery.min.js"></script>
    <script>
    $(function(){
    $('.fadein img:gt(0)').hide();
    setInterval(function(){$('.fadein :first-child').fadeOut().next('img').fadeIn().end().appendTo('.fadein');}, 3000);
    </script>
    </head>
    <body>
    <div id="wrapper">
        <div id="navdiv">
          <object id="FlashID" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="148" height="525">
            <param name="movie" value="images/craddocknavbar.swf" />
            <param name="quality" value="high" />
            <param name="wmode" value="opaque" />
            <param name="swfversion" value="6.0.65.0" />
            <!-- This param tag prompts users with Flash Player 6.0 r65 and higher to download the latest version of Flash Player. Delete it if you don’t want users to see the prompt. -->
            <param name="expressinstall" value="scripts/expressInstall.swf" />
            <!-- Next object tag is for non-IE browsers. So hide it from IE using IECC. -->
            <!--[if !IE]>-->
            <object type="application/x-shockwave-flash" data="images/craddocknavbar.swf" width="148" height="525">
              <!--<![endif]-->
              <param name="quality" value="high" />
              <param name="wmode" value="opaque" />
              <param name="swfversion" value="6.0.65.0" />
              <param name="expressinstall" value="scripts/expressInstall.swf" />
              <!-- The browser displays the following alternative content for users with Flash Player 6.0 and older. -->
              <div>
                <h4>Content on this page requires a newer version of Adobe Flash Player.</h4>
                <p><a href="http://www.adobe.com/go/getflashplayer"><img src="http://www.adobe.com/images/shared/download_buttons/get_flash_player.gif" alt="Get Adobe Flash player" width="112" height="33" /></a></p>
              </div>
              <!--[if !IE]>-->
            </object>
            <!--<![endif]-->
          </object>
        </div>
         <div id="bodydiv">
        <div class="fadein">
      <img src="images/slideshow/1jquery.jpg">
    <img src="images/slideshow/2jquery.jpg">
    <img src="images/slideshow/3jquery.jpg">
    <img src="images/slideshow/4jquery.jpg">
    <img src="images/slideshow/5jquery.jpg">
    <img src="images/slideshow/6jquery.jpg">
    <img src="images/slideshow/7jquery.jpg">
    <img src="images/slideshow/8jquery.jpg">
    </div>
    </div>
        </div>
    <div id="navigationlower">
        <p><a href="http://www.rjcraddockdesigns.com/index.php" title="Richard J. Craddock Designs Home Page">Home</a> - <a href="http://www.rjcraddockdesigns.com/company profile.php" title="Richard J. Craddock Designs">Profile</a>- <a href="http://www.rjcraddockdesigns.com/services.php" title="Richard J. Craddock Designs">Services</a></p>
      <strong>Richard J. Craddock Designs, 2011</strong></p>
      <p><strong><a href="http://cwws.org" title="Common Wealth Web Solutions" target="_new">Designed by CWWS</a></strong></p>
      <p><a href="https://www.facebook.com/RJCLandscapeDesigns"><img src="facebook icon.png" width="60" height="60" /></a></p>
    </div>
    <script type="text/javascript">
    swfobject.registerObject("FlashID");
    </script>
    </body>
    </html>

  • My screen brightness control buttons don't work windows 8

    my screen brightness control buttons don't work?
    the light in the mute button is always on when NOT on mute?
    Have set up Win8 3 TIMES but get always same bug agan 
    Hope someone can help 

    Hello smarisig. I understand you are not able to control screen brightness from the keyboard on Windows 8. By chance, did you upgrade to Windows 8 from Windows 7? I have located an online forum that contains troubleshooting on this issue: http://thedailybuggle.com/forum/unable-control-screen-brightness-windows-8-a-200.html
    The person who posted the issue on this forum had upgraded from Windows 7 to Windows 8, and then this issue occurred. That is the reason I asked if this Windows 8 was upgraded. Regardless, follow the troubleshooting presented and it could resolve the issue for you. If not, let me know and I will continue to research the issue in the meantime. I'm only here to help!
    Mario
    I worked on behalf of HP.

  • I am no longer able to use the volume control buttons ( /-/or mute) on my key board in Windows 7

    1. HP Pavilion dm4 XO132AV
    2. Windows 7 64-bit
    3. No error message
    4. No changes were made prior to when the issue occured
    5. Question: I am no longer able to use the volume control buttons ( /-/or mute) on my key board in Windows 7

    Hi,
    Try the following.
    Download the IDT Audio installer on the link below and save it to your Downloads folder.
    http://ftp.hp.com/pub/softpaq/sp50501-51000/sp50856.exe
    When done, open windows Control Panel, open Device Manager and open up Sound, Video and Game Controllers.  Right click the IDT device and select Uninstall - you should also get a prompt to remove the current driver, tick the box to allow this and then proceed with the uninstall.
    When complete, restart the notebook and let Windows fully load.  Open your Downloads folder, right click on the IDT installer and select 'Run as Administrator' to start the installation.  When this has completed, restart the notebook again.
    Regards,
    DP-K
    ****Click the White thumb to say thanks****
    ****Please mark Accept As Solution if it solves your problem****
    ****I don't work for HP****
    Microsoft MVP - Windows Experience

  • Help...Brightness control button in Lenovo All In One C360-4061 not working

    Hi,
    I just bought All in one C360-4061, and the monitor very birght,it hurts my eyes...i tried to push the birghtness control button but not working.i tried the keyboard shortcut (fn+home and fn+end) but not working either.
    anyone can help how to solve it ???
    thanx 
    best regards
    Solved!
    Go to Solution.

    hi esurjopurwanto,
    Welcome to Lenovo Community Forums!
    Open device Manager and look under Display adapters.
       Uninstall the Intel HD graphics place a check under delete driver software for this device.
    Then Download and install this driver for your Windows 8.1
     Intel VGA Driver  
    Please let me know your findings
    Cheers!
    Did someone help you today? Press the star on the left to thank them with a Kudo!
    If you find a post helpful and it answers your question, please mark it as an "Accepted Solution"! This will help the rest of the Community with similar issues identify the verified solution and benefit from it.
    Follow @LenovoForums on Twitter!

  • Cannot operate youtube videos in Firefox. Cannot use play, pause, volume, or any of the control buttons.

    None of the control buttons work, it's as if the darn video window is part of the backgroun.

    Hello,
    '''Try Firefox Safe Mode''' to see if the problem goes away. Safe Mode is a troubleshooting mode, which disables most add-ons.
    ''(If you're not using it, switch to the Default theme.)''
    * You can open Firefox 4.0+ in Safe Mode by holding the '''Shift''' key when you open the Firefox desktop or Start menu shortcut.
    * Or open the Help menu and click on the '''Restart with Add-ons Disabled...''' menu item while Firefox is running.
    ''Once you get the pop-up, just select "'Start in Safe Mode"''
    '''''If the issue is not present in Firefox Safe Mode''''', your problem is probably caused by an extension, and you need to figure out which one. Please follow the [[Troubleshooting extensions and themes]] article for that.
    ''To exit the Firefox Safe Mode, just close Firefox and wait a few seconds before opening Firefox for normal use again.''
    ''When you figure out what's causing your issues, please let us know. It might help other users who have the same problem.''
    Thank you.

  • Romote controll button activation - Please

    Could someone help me and tell me how to allow the remote control buttons
    to function for a DVD I have created I can not figure out how to connect them through the connections pane. any help is very much appreciated!

    Many of the buttons have default settings which can't be changed. However, you can alter the menu call, Title menu call and return button (if it exists on your handset).
    Click on the disc icon in outline view, then look in the property inspector - you will see the drop down settings boxes for the remote control there - these are the overarching settings which would govern the entire disc behaviour for these buttons.
    However, you can over ride the disc settings within an individual track. Click on the track in outline view and check the property inspector again. You may see the remote settings set to 'Same as Disc' - they have inherited the disc level settings. You can simply change these to what you want for each track, story or slideshow.
    There are other settings which you can use, called User Operations. These govern fine detail in the playback and use of the remote control, and are generally left alone unless you know what they are doing. You can, for example, disable the handset button for fast forward, or disable the menu button completely for a particular track - such as an intro FBI warning - so that the viewer has to watch it. You can also disable or enable a whole raft of other controls in there as well... use with caution!
    Finally, you need to be aware of how the buttons actually respond when you are in different locations on your DvD. For example, if you play a track and use the menu button, you will go to a menu. If you press the menu button again when you get there, you go back to the track (it acts like a resume function). This is all normal and yet causes so much grief when people expect it to take them up through the menu hierarchy. The Title button will take you to the first menu on your disc from pretty much anywhere (unless it is disabled). The return button is designed to move you through the menu hierarchies, but there are limitations on its use.
    The other buttons generally can't be trapped and made to perform anything other than their default actions as defined by the DVD Spec.

  • Exit button issue in Captivate 5

    Hi,
    This is regarding the exit button on the playback controls. I have been using Captivate from version 2. Recently, started using version 5. When I published my simulation, the exit button is not working as earlier. It is also not working from- web server(IIS, Apache), when opened as pop-up as well. In local too however not working. I tried in both IE 7 and Firefox latest version.
    I have seen the response from Adobe on this issue on this forum. It was quite surprising; it did not talk about the solution at all;
    What I am not sure about is -
    1. Why the exit button was working earlier versions.. why is it not working in latest?
    2. Why should when simple code like top.close(); works fine (when coded inside the Captivate)?
    3. Why is Adobe not acknowledging the issue?
    4. Why there is no working around provided in the forums for this issue?
    Could anybody please help me understanding this problem? I am really frustrated.
    Thanks.

    Happy New to all as well!
    You are absolutely correct! The moment reporting is activated, the EXIT no longer functions. Although in my case, we are not using the time/slider bar but custom navigation buttons with an exit button on the last slide (and at the top of each slide).
    This whole EXIT button issue (not just Cp 5 but Cp 6 as well) is nearly bringing me to the point of tears! This is really ridiculous! I am in a tough position right now where my manager may be wondering if I am right person for this job because I cannot make a little EXIT button work in our lessons.
    "Solutions" or excuses that I have received
    - Just remove the EXIT button -- No, we use a standard corporate template which hundreds of employees are already familiar with. To remove the EXIT button and instruct the learner to just close the browser would be unacceptable and a rather inelegant way to exiting a lesson.
    - It is a tough issue that isn't Captivate's fault
      With all due respect to the awesome person who keeps stating that, I have a feeling that you have not used other rapid elearning tools. Building an EXIT button in all the other major elearning tools is easy and works every time.
    The source of my personal difficulty is that every other course that was built by previous developers (not using Captivate), all open in a child window and all have a working EXIT button.
    I believe the PRIMARY reason for this problem might be in the fact that... inexplicably... Captivate does not offer an option to start a lesson in a CHILD window (i.e. separate browser window). This is why no javascript in the world will allow the tab to close (e.g. EXIT button). Closing a tab or browser window via javascript only works when the same instance was previously opened by a script using the window.open method. In other words, you can only use the javascript method to close an instance that was spawned via javascript.
    This should explain why lessons published in Lectora (et al) always have working EXIT buttons every time and in every browser (minor exception is Opera for unrelated reasons).
    The second red box is just another one of my problems with Captivate 6 (not related to this topic).
    Solution????
    I've been racking my brain trying to modify Captivate's HTML/javascript in order to carry over the AICC (or SCORM - same process) variables into a child window.
    Like another participant stated, you can't simply rename the original index.html to index2.html and create a redirection like this:
    <script type="text/javascript">   
    window.open("index2.html","lesson","location=0,toolbar=0,status=0,resizable=1,width=975,he ight=600");</script>
    <body>
    Yes, I tried this as well... but unfortunately, it breaks the AICC to LMS connection. *BUT* I can promise one thing... using the above redirection, does guarantee that your EXIT button works every time! Pity the LMS connection breaks!
    QUESTION?
    Does anyone have advanced knowledge of javascript in order to code the INDEX.HTML to open the lesson in a child windows AND maintain a connection to the LMS?

  • Mousepad/touchpad problem control button activates

    Hi,
    Just bought a pavilion g6 and i have a problem with the touch pad. when moving the cursor around the screen the control button seems to suddenly activate.
    for example the "find your cursor when pressing control" function kicks in and a circle highlights the location of the cursor on the screen
    or even worse the webpage will zoom in and out as if I held the control button and swiped up or down with the touchpad page scroll option.
    I am not using the mouse pad in any weird way. eg just using one (slender) finger. I cant find any reference to this being a known problem but i am checking here before leaving my laptop back.
    is there meant to be some in built touchpad function that causes the control button to be able to be activated from the touchpad? If so can i disactivate it?
    regards,
    d500b
    This question was solved.
    View Solution.

    Hi
    Please find the link givenbelow might help you to resolve your issue.
    Using and Configuring the Touch Pad
    Let us know how it goes!
    "I work for HP."
    ****Click the (purple thumbs up icon in the lower right corner of a post) to say thanks****
    ****Please mark Accept As Solution if it solves your problem****
    Regards
    Manjunath

  • Satellite M70: Control button keys are not working

    I currently reformatted my M70 to WinXp Pro Sp2, downloaded all related TOSHIBA drivers and related programs [ie. Toshiba control button driver / program] and system is running normal. However, CONTROL BUTTON keys are not working, was working fine with XP Home edition and Win Media but when I called Toshiba Support they couldn't help me because I had upgraded to Xp Pro. My Question is...Is there a fix or a solution to this issue and where can I download or find this fix.
    Thanks
    Emm

    Hey Folks
    Thanks for the advice, however, I did download the control driver and the controls program for the M70 model AND installed them in that order. The Controls Driver installs correctly but unfortunately, when installing the Controls Program, I get a message that the program will not install because it's not the right version for my M70-CL3 [PSM73C]. Not sure what to do here. I would think that everything should work properly seeing as taking the step up to XPPro SP2 isn't that far of a stretch.

  • Tab and control buttons do not work in Firefox (they work in other browsers) AND I switched to a new keyboard.

    The tab and control buttons are not working the Firefox browser (My browser is up-to-date). The buttons work in IE and Chrome, however, before I realized that, I even switched out my keyboard to a brand new one hoping it would solve the issue.

    Thank you--there were a few random extensions I had not added (spyware, maybe?). Once I removed those the issue was fixed!

  • Headset Control Buttons won't work

    Hello,
    I just used my V-Moda Crossfade LP to listen to music and tried my control buttons. They just don't work so I tried some AKG Ks and the buttons also don't work. Do I have to download a app or?
    A solution would be really nice!
    Solved!
    Go to Solution.

    Hi Chris9292,
    As far as I know, these models are made for Apple units. There might be some compatbility issues to an Xperia device with the buttons and the mic. For example, if you check the following link:
    http://v-moda.com/crossfade-lp/
    They include the following text: 3-button remote microphone cable controls your calls, music and volume on most smartphones and tablets including the latest Apple devices including iPhone, iPad, iPod, and Macbook (volume compatible only with Apple products)
    A third party accessory might need more power than the phone can deliver. I suggest (if possible) that you connect a Sony headset to your unit to see if you experience the same behaviour.
     - Official Sony Xperia Support Staff
    If you're new to our forums make sure that you have read our Discussion guidelines.
    If you want to get in touch with the local support team for your country please visit our contact page.

  • Equium A100-147 (PSAABE) Control Buttons problem

    Hello, do you have any idea why do the control buttons (play, pause, stop, next track, previous track) are not working? I uninstalled the control buttons driver and installed the last one and the buttons are still not working with windows media player.
    Cheers,
    Quarkos.

    If it works with other programs, then it may be a software issue and you must configure the driver.
    Have you tried this driver: http://uk.computers.toshiba-europe.com/cgi-bin/ToshibaCSG/tracker.jsp?file=http%3a%2f%2fsupport.toshiba-tro.de%2ftools%2fvista%2fbutsu%2fbutsu-vista-6btn0.zip

Maybe you are looking for

  • Hi, I am having issues with FTP in dreamweaver CS4

    I am having a problem uploading a new site to my hosting provider using CS4. The error message I get is as follows. An FTP error occurred - cannot make connection to host. Your login or pasword are incorrect. Please check your connection information.

  • Add Dynamic Rows in a table

    Hi All, I have fetaure to implement that requires me add n no rows in a table in one transaction. Take the scenario as :- I have 2 tables : Parent(Id,name) Child(Id ,name ,ParentId) So while creating Parent in a adf form ,I want add N no or child dyn

  • XML Anywhere TO Write Once , Run Everywhere

    I proposed this 4 years ago to cho haha reply. All codebase languages , legacy codebase , legacy code , etc . . . standardized into am XML file. MVC no. XVC yes. Xml View Controller yes. Xml Namespace yes. Xml Redirection_One Namespace yes. Xml Redir

  • Perl versus other "scripting" languages when doing string operations

    I've been told that perl is a "scripting" language like the other languages mentioned in this forum. If that's true, can these other languages handle the following spec as well as perl can?  (See spec at end of this post.) Or is perl stronger in stri

  • Managing blank user selections

    Using replacement variable, in SQL, I would like to know if anyone can tell me the most efficient way to handle blank entries (meaning accept all). EG: where table.column = NVL('&user_value',table.column) or where (table.column = '&User_value' or '&U