I could really use someones help

Well i have an ipod nano and when i click on a song i want to play it skips a bunch of songs and starts playing a random song. It seems to be the songs i used to listen to most. Then i asked my brother if i could use his ipod (because i thought i just broke my ipod again) and it seems to be happening on his ipod too. Does any one know how to fix this? And/ or is this and itunes problem and not my ipod ?

Have you had a chance to look at these troubleshooting pages? They may be of some help:
Troubleshooting songs that skip on iPod
iPod: Troubleshooting songs and audiobooks that won't play
iPod does not play content purchased from the iTunes Music Store

Similar Messages

  • WebAssist Cart help? I know it's off topic but... Could really use some help...

    I've got a shopping cart that is working and I'm trying to update the
    quantities in inventory by subtracting the quantity ordered from the total
    inventory in a table called ITEMS.
    I can update a record after a sale in the cart, but right now it is
    updating by completely replacing the value of the items in inventory with
    the quantity in the checkout cart. So, if there are 800 items, after the
    update, there are -1 total in inventory, not 799.
    The problem is that I don't know how to coordinate the item(s) in the stored
    shopping cart with a call to their ID and quantity in the online database.
    Here's what I have so far:

    Ahhhhhhhh Jeff...<br />If I can get this going...<br /><br />I spent days looking for this solution.<br />Thank you very much.<br />Just bought Dreamweaver CS3 and am battling through the bells and whistles.<br /><br />Liz<br /><br />----- Original Message ----- <br />From: "jefferis" <[email protected]><br />To: <[email protected]><br />Sent: Tuesday, June 19, 2007 9:50 AM<br />Subject: Re: WebAssist Cart help? I know it's off topic but... Could really <br />use some help...<br /><br />>A new message was posted by jefferis in<br />><br />> ADDT - PHP Application Development --<br />>  WebAssist Cart help? I know it's off topic but... Could really use some <br />> help...<br />><br />> On 6/16/07 3:06 PM, in article [email protected],<br />> "[email protected]" <[email protected]> wrote:<br />><br />>> Hi jefferis....<br />>><br />>> How did you solve the problem?<br />>> I am having the same problem trying to incorporate an inventory code into <br />>> a<br />>> shopping cart that will deduct the number of items purchased from my <br />>> total<br />>> inventory to let me and my customers know how many items I have remaining <br />>> in<br />>> stock.<br />>><br />>> Ex:<br />>> inventory: 500 plants<br />>> purchased: 20 plants<br />>> remaining inventory: 480 plants<br />><br />> Yes I did.<br />><br />> I've been struggling with this piece of pie for about 5 days and<br />> thought it might benefit others, so here's a way to update your quantities<br />> in INVENTORY after a checkout success.  I read another thread but found it<br />> way too complex and depended on holding inventory in the session:<br />> http://www.webassist.com/professional/support/kbcompletethread.asp?DiscID=33<br />> 046<br />> But you may lose the info when you go offsite to Paypal, e.g., to complete<br />> the transaction.<br />><br />> Here's my approach using the "checkout_success.php" page.  Using this page<br />> works because user arrives here ONLY after a successful purchase.<br />> First of all, I used the BSM php sample store as a starting point.  I <br />> added<br />> an ItemQuantity field to the items DB to track the stock or items in<br />> inventory in the store.<br />><br />> In order for this automatic deduction of sold items to work, it must be<br />> placed within the do while {  area of the  display page for the cart's<br />> items. } The code is commented below:<br />><br />> <?php<br />> //WA eCart Show If Start<br />> if (!$eCart->IsEmpty())     {    // IF CART NOT EMPTY...<br />> ?><br />>    <h2>Order Receipt </h2>  // STANDARD STUFF TILL NEXT COMMENT<br />>    <br /><br />>    <h3 class="eCart_OrderHeaderInfo">Order number: <?php echo <br />> session_id();<br />> ?></h3><br />><br />>    <p class="eCart_OrderHeaderInfo">This is your order receipt. Please <br />> make<br />> a copy for your records. An email will also be sent to you. </p><br />>    <table class="eC_ShoppingCart" border="0" cellspacing="0"<br />> cellpadding="0"><br />>            <tr><br />><br />>                    <th>Name</th><br />><br />><br />>                    <th>Price</th><br />><br />><br />>                    <th  class="eC_FormItem" >Quantity</th><br />><br />><br />>                    <th>Total</th><br />>            </tr><br />>        <?php<br />> while (!$eCart->EOF())      {  // DO WHILE FOR EACH ITEM IN CART<br />> ?><br />>            <tr><br />><br />>                    <td><img src="/images/thumbs/<?php echo<br />> $eCart->DisplayInfo("Thumbnail"); ?>" alt="" width="100" height="100"<br />> class="eC_ProductThumb" /><br />>                        <p class="eC_ItemLabel"><?php echo<br />> $eCart->DisplayInfo("Name"); ?></p><br />>                  <p class="eC_ItemDescription"><?php echo<br />> $eCart->DisplayInfo("Description"); ?></p>  <p<br />> class="eC_ItemDescription"><?php echo $eCart->DisplayInfo("ID");<br />> $idCall = $eCart->DisplayInfo("ID");?>>  // CREATE A VARIABLE FOR<br />> //THE ITEM's ID NUMBER in the DB<br />> //USE DISPLAY ID TO GET ID # and make it = $idCall<br />> </p></td<br />>                    <td  class="eC_PriceItem" ><?php echo<br />> WA_eCart_DisplayMoney($eCart, $eCart->DisplayInfo("Price")); ?></td><br />><br />><br />>                    <td  class="eC_FormItem" ><?php echo<br />> $eCart->DisplayInfo("Quantity");<br />> $solditems = $eCart->DisplayInfo("Quantity");?>  //DO THE SAME FOR <br />> QUANTITY<br />> //SOLD, MAKE QUANTITY SOLD  = $solditems<br />> </td><br />><br />> // NOW UPDATE THE DATABASE. SUBTRACT $solditems from ItemQuantity ( YOUR<br />> //INVENTORY OR STOCK)<br />> //FOR EACH ITEM IN CART. SELECT the item's ID  by $idCall:<br />> <?php<br />> mysql_select_db($database_connBSM, $connBSM);<br />> $query_itemQ = "Update items SET  items.ItemQuantity = <br />> items.ItemQuantity -<br />> $solditems WHERE items.ItemID = $idCall";<br />> $itemQ = mysql_query($query_itemQ, $connBSM) or die(mysql_error());<br />><br />> ?><br />>                    <td  class="eC_PriceItem" ><?php echo<br />> WA_eCart_DisplayMoney($eCart, $eCart->DisplayInfo("TotalPrice")); ?> </td><br />>            </tr><br />>        <?php<br />>  $eCart->MoveNext();    //// REPEATS BEHAVIOR FOR EACH ITEM IN CART<br />> }<br />> $eCart->MoveFirst();<br />> ?><br />> BTW, once the items in inventory = 0, the items do not appear in the<br />> catalog.  That is set in the catalog page's recordset.<br />> Jeff<br />> ~~~~~~~~~~~~<br />> Jefferis Peterson, Pres.<br />> Web Design and Marketing<br />> http://www.PetersonSales.com<br />><br />><br />><br />><br />> ------------------------------------------------------<br />> View/reply at <<a href="/cgi-bin/webx?13@@.3bc3e9d6/5">jefferis, "WebAssist Cart help? I know it's off topic but... Could really use some help..." #6, 19 Jun 2007 6:50 am</a>><br />> You must visit the conference to reply. Email replies are not allowed and <br />> will be returned.<br />> Use the unsubscribe form at <br />> <a href=http://www.adobeforums.com/cgi-bin/webx?280@@.3bc3e9d6!folder=.3bc3909c> <br />> to cancel your email subscription.

  • When i try to re download apps for macs, it saws sign in for purchase history then nothing happens. i could really use some help. thank you

    when i try to re download apps for macs, it saws sign in for purchase history then nothing happens. i could really use some help. thank you

    Hi,
    You've come across a MAS bug.
    Install the v10.6.7 combo update here.
    Restart your Mac after the update is installed.
    Instructions for re downloading apps here.
    Carolyn  

  • Do i need 3g,4g,wifi to send sms/call somebody ? I could really use some help.

    do i need 3g,4g,wifi to send sms/call somebody ? I could really use some help.

    No, Standard Calls and text messages (SMS) only require the normal Phone service.
    You can turn off 3G/4G/LTE and Wifi and still be able to get and make calls and send and receive sms.

  • I think my iMac is infected and could really use some help

    I recently purchased an iMac for the 1st time and am having many pop ups, survey requests and emails sent from my account to people in my address book.  I used the chat help that came up on the Apple support  which was a 3rd party who did a diagnostic check on my computer.  They told me my computer was infected and wanted to charge me $159 to fix it. I could really use some suggestions.  I have heard that apple computers don't get infected but it appears mine did.

    No infections. These are all scams you can ignore. I suggest that you enable your browser's pop-up blocker which will help with some of these annoyances. For more extensive preventions I recommend GlimmerBlocker.
    Helpful Links Regarding Malware Protection
    An excellent link to read is Tom Reed's Mac Malware Guide.
    Also, visit The XLab FAQs and read Detecting and avoiding malware and spyware.
    See these Apple articles:
              Mac OS X Snow Leopard and malware detection
              OS X Lion- Protect your Mac from malware
              OS X Mountain Lion- Protect your Mac from malware
              About file quarantine in OS X
    If you require anti-virus protection Thomas Reed recommends using Dr.Web Light from the App Store. It's free, and since it's from the App Store, it won't destabilize the system. If you prefer one of the better known commercial products, then Thomas recommends using Sophos.(Thank you to Thomas Reed for these recommendations.) If you already use Sophos, then be aware of this if you are using Mavericks: OS X Mavericks- Sophos Anti-Virus on-access scanner versions 8.0 - 9.1 may cause unexpected restarts
    From user Joe Bailey comes this equally useful advice:
    The facts are:
    1. There is no anti-malware software that can detect 100% of the malware out there.
    2. There is no anti-malware that can detect anything targeting the Mac because there
         is no Mac malware in the wild, and therefore, no "signatures" to detect.
    3. The very best way to prevent the most attacks is for you as the user to be aware that
         the most successful malware attacks rely on very sophisticated social engineering
         techniques preying on human avarice, ****, and fear.
    4. Internet popups saying the FBI, NSA, Microsoft, your ISP has detected malware on
        your computer is intended to entice you to install their malware thinking it is a
        protection against malware.
    5. Some of the anti-malware products on the market are worse than the malware
        from which they purport to protect you.
    6. Be cautious where you go on the internet.
    7. Only download anything from sites you know are safe.
    8. Avoid links you receive in email, always be suspicious even if you get something
        you think is from a friend, but you were not expecting.
    9. If there is any question in your mind, then assume it is malware.

  • System won't boot. Could really use some help here.

    I have the K8T-Neo FISR2 mobo. When I set up the system, the SATA drive was set up as drive F: (onto which I installed Windows XP Home). I added a 2nd SATA drive later, and it became C:. Both drives are plugged into the Promise SATA ports. The system has been running fine for about a year now.
    I was having a problem with a program not running properly. I stopped the process and tried to restart it, but it didn't work. It was a program that drives my Logitech gaming keyboard (with LCD screen). After I rebooted, the system would load windows, then after Windows was loaded, it would load up a program when I went into it and crash. It looked like it would crash on PXHELP.DLL (something like that). I booted up into safe mode, renamed the file so it wouldn't load, and now it won't boot at all. It starts to show the Windows logo and then instantly reboots. I can't even get into Safe Mode as it does the same thing.
    I tried booting from an XP CD to do a repair, but when it boots, it doesn't see the hard drives. I downloaded the Promise drivers, put them onto a floppy, and load them as Windows is booting from the CD. It seems to load the drivers, but when I choose to do a repair (or even a new install), Windows comes back and tells me that I have no hard drives attached to the computer. I just can't seem to get Windows to see those hard drives!
    I could really use some advice here......

    Quote from: Tiresmoke on 04-January-06, 01:36:35
    Try swapping the Drive Cables. You may have one that is not engaging as well as it should.
    When I let the PC boot up like normal (without booting from the CD), it sees the drives and Windows tries to load, so I don't think it's the cables. I'll make sure they're reset, but I really don't think that's it.

  • When downloading iTunes, I got a message about error writing to file and it told the file. Then it said to verify that you have access to that directory. I have no idea how to fix it. I could really use some help, please.

    I was trying to download iTunes on my computer, and while doing so, I got this message: Error writing to file: C:/Program Files (x86)/Common Files/Apple/Apple Application Support/Apple Versions.dll. Verify that you have access to that directory. I have downloaded iTunes numerous times and I have never had this problem. If anyone knows what's going on, I would really appreciate the help.

    Well, there's definitely a mac and a Windows version. And you're at the right page. I think the problem is that someone forgot (or decided not to) to update the text at teh bottom of the page to have Mac and Windows.
    Just push the button, you'll get the Mac update no problem.
    Regards,
    Bentley Wolfe
    Senior Support Engineer, Flash/Flash Player/Digital Editions
    Adobe

  • Lightbox 2 problem- Could really use some help!!!

    I have several galleries the last picture of each gallery repeats over and over. Caption says 10f 8 but I only have 5 pictures but last one just keeps repeating! Would really apprecite some help.
    Here's source code but I'm wonderingcould it be a problem with lightbox.js or jquery-1.7.2
    because I've checked this all over and over and it appears to be correct. I'm not familiar with their coding.
    <!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>Truss</title>
    <script src="js/jquery-1.7.2.min.js"></script>
    <script src="js/lightbox.js"></script>
    <link href="css/lightbox.css" rel="stylesheet" />
    <style type="text/css">
    body {
        background; #036;
        text-align: center;
        background-repeat: repeat-x;
        background-image: url(Images/greenbluefade_drops.jpg);
    html.body {
        padding: 0px;
        margin-right: auto;
        margin-bottom: 0px;
        margin-left: auto;
        height: 0px;
        width: 1170px;
        background-repeat: repeat-x;
        position: relative;
        margin-top: 25px;
    #wrapper {
        height: 1400px;
        width: 970px;
        text-align: left;
        margin-right: auto;
        margin-bottom: 0px;
        margin-left: auto;
        padding: 0px;
    #header {
        background-color: #FFF;
        width: 970px;
        float: left;
        position: relative;
        margin: 0px;
        height: 61px;
    #logo_box {
        height: 269px;
        width: 366px;
        position: absolute;
        z-index: 500;
        left: -130px;
    #logoshadow {
        height: 200px;
        width: 230px;
        z-index: 200;
        margin-left: 18px;
    #sidebar {
        height: 1000px;
        width: 245px;
        position: absolute;
        background-repeat: no-repeat;
        background-image: url(Images/left_sidebar-copy.png);
        clear: both;
        left: 20px;
    #nav_bar {
        background-color: #244AB0;
        height: 45px;
        width: 708px;
        float: left;
        padding-left: 263px;
    #side_captions {
        height: 725px;
        width: 225px;
        padding-left: 20px;
        z-index: 100;
        margin-top: 0px;
        padding-top: 0px;
    #photobox {
        background-image: url(Images/marble.jpg);
        background-repeat: repeat;
        float: left;
        height: 1000px;
        width: 0px;
        padding-left: 300px;
        position: relative;
    #photobx2dcolumn {
        background-image: url(Images/marble.jpg);
        background-repeat: repeat;
        float: left;
        height: 1000px;
        width: 310px;
    #photobox_column3 {
        background-image: url(Images/marble.jpg);
        background-repeat: repeat;
        height: 922px;
        width: 330px;
        float: left;
        padding-top: 52px;
        padding-left: 30px;
    .bridge_photo_box {
        background-color: #FFF;
        padding: 10px;
        height: 154px;
        width: 250px;
    .box-shadow {
        height: 200px;
        width: 290px;
        background-image: url(Images/shadowbridgeboxes.png);
        background-repeat: no-repeat;
        margin-bottom: 20px;
    #footer {
        background-color: #1B1B1C;
        clear: left;
        height: 200px;
        width: 720px;
        padding-left: 250px;
        padding-top: 1px;
        margin-top: 0px;
    #browser_whitebar {
        background-color: #FFF;
        height: 120px;
        width: auto;
    body,td,th {
        font-family: Georgia, "Times New Roman", Times, serif;
    h5 {
        font-size: 42px;
        color: #FFF;
        font-family: Georgia, "Times New Roman", Times, serif;
        font-weight: normal;
        text-align: center;
        line-height: normal;
        vertical-align: top;
        white-space: normal;
    h1 {
        font-size: 40px;
        color: #244FB3;
    h1_bridges {
        color: #779788;
        padding-left: 10px;
    .H1bridgeheads {
        color: #75958A;
        margin-top: 30px;
        font-size: 36px;
    h2 {
        font-size: 17px;
        color: #666;
    h3 {
        font-size: 17px;
        color: #000;
    h4 {
        font-size: 17px;
        color: #000;
    a {
        font-size: 17px;
        color: #03F;
    a:visited {
        color: #7A0A2F;
    a:hover {
        color: #FFF;
    a:active {
        color: #666;
    </style>
    <script src="SpryAssets/SpryMenuBar.js" type="text/javascript"></script>
    <link href="SpryAssets/SpryMenuBarHorizontal.css" rel="stylesheet" type="text/css" />
    </head>
    <body>
    <div id="wrapper">
      <div id="header">
        <div id="logo_box"><img src="images/tensor_final_logo_website.png" alt="logo_leftinclude" width="362" height="270" /></div>
      </div>
      <div id="nav_bar">
        <div id="nav_position">
          <ul id="MenuBar1" class="MenuBarHorizontal">
            <li><a href="#">HOME</a>        </li>
            <li><a href="#">ABOUT US</a>
              <ul>
                <li><a href="#">FOUNDER</a></li>
                <li><a href="#">MANAGEMENT</a></li>
              </ul>
            </li>
            <li><a href="#">CAPABILITIES</a>        </li>
            <li><a href="#">PORTFOLIO</a>
              <ul>
                <li><a href="#">ARCH</a></li>
                <li><a href="#">BASCULE</a></li>
                <li><a href="#">BOX GIRDER</a></li>
                <li><a href="#">CABLE STAYED</a></li>
                <li><a href="#">PLATE GIRDER</a></li>
                <li><a href="#">TRUSS</a></li>
                <li><a href="#">VERTICLE LIFT</a></li>
                <li><a href="#">SUSPENTION</a></li>
              </ul>
            </li>
            <li><a href="#">AWARDS</a></li>
            <li><a href="#">CONTACT </a></li>
            <li><a href="#">BLOG</a></li>
          </ul>
        </div>
      </div>
      <div id="photobox">
          <div id="sidebar">
            <div id="logoshadow"><img src="Images/logoshadow.png" width="226" height="190" alt="logo_shadow" /></div>
            <div id="side_captions">
              <h2>Leading the Industry<br />
                for over 50 Years
              </h2>
              <br />
              <br />
              <br />
              <br />
              <br />
              <br />
              <br />
              <br />
              <br />
              <br />
              <br />
              <br />
              <br />
              <br />
              <br />
              <br />
              <br />
              <br />
              <br />
              <br />
              <br />
              <br />
              <br />
              <br />
              <br />
              <br />
            <img src="Images/organizationsymbols.png" alt="3symbols" width="175" height="52" hspace="15" /></div>
          </div>
      </div>
      <div id="photobx2dcolumn">
      <h1 class="H1bridgeheads">Verticle Lift</h1>
      <div class="box-shadow">
          <div class="bridge_photo_box">
    <a href="images/portfolio/verticalliftcategory/amgallery/am1.jpg"rel="lightbox[amgallery]" title="Amtrack RR over Thames River <br /><br />
    (Click right side of image to forward and left for back)">
    <img src="images/portfolio/verticalliftcategory/amgallery/amthumb.jpg" width="250" height="154" alt="Amtrack RR over Thames River " /></a>
    <a href="images/portfolio/verticalliftcategory/amgallery/am2.jpg"rel="lightbox[amgallery]" title= "Amtrack RR over Thames River <br /><br /></a>
    (Click right side of image to forward and left for back)">
    <a href="images/portfolio/verticalliftcategory/amgallery/am3.jpg"rel="lightbox[amgallery]" title= "Amtrack RR over Thames River <br /><br /></a>
    (Click right side of image to forward and left for back)">
    <a href="images/portfolio/verticalliftcategory/amgallery/am4.jpg"rel="lightbox[amgallery]" title= "Amtrack RR over Thames River <br /><br /></a>
    (Click right side of image to forward and left for back)">
    <a href="images/portfolio/verticalliftcategory/amgallery/am5.jpg"rel="lightbox[amgallery]" title= "Amtrack RR over Thames River <br /><br /></a>
    (Click right side of image to forward and left for back)">
    </div>
        </div
        ><div class="box-shadow">
          <div class="bridge_photo_box">
    <a href="images/portfolio/verticalliftcategory/csxgallery/csx1.jpg" rel="lightbox[csxgallery]" title= "CSX Lift Span over the Mobile River <br /><br />
    (Click right side of image to forward and left for back)">
    <img src="images/portfolio/verticalliftcategory/csxgallery/csxthumb.jpg" width="250" height="154" alt="CSX Lift Span over the Mobile River CSX Lift Span over the Mobile River " /></a>
    <a href="images/portfolio/verticalliftcategory/csxgallery/csx2.jpg" rel="lightbox[csxgallery]" title= "CSX Lift Span over the Mobile River <br /><br /></a>
    (Click right side of image to forward and left for back)">
    <a href="images/portfolio/verticalliftcategory/csxgallery/csx3.jpg" rel="lightbox[csxgallery]" title= "CSX Lift Span over the Mobile River <br /><br /></a>
    (Click right side of image to forward and left for back)">
    <a href="images/portfolio/verticalliftcategory/csxgallery/csx4.jpg" rel="lightbox[csxgallery]" title= "CSX Lift Span over the Mobile River <br /><br /></a>
    (Click right side of image to forward and left for back)">
    <a href="images/portfolio/verticalliftcategory/csxgallery/csx5.jpg" rel="lightbox[csxgallery]" title= "CSX Lift Span over the Mobile River <br /><br /></a>
    (Click right side of image to forward and left for back)"></div>
        </div>
      </div>
        <div id="photobox_column3"><br />
          <br />
          <div class="box-shadow">
            <div class="bridge_photo_box">
    <a href="images/portfolio/verticalliftcategory/burlinggallery/burling1.jpg"rel="lightbox[bur linggallery]" title= "Burlington Northern Lift Span <br /><br />
    (Click right side of image to forward and left for back)">
    <img src="images/portfolio/verticalliftcategory/burlinggallery/burlingthumb.jpg" width="250" height="154" alt="Burlington Northern Lift Span" /></a>
    <a href="images/portfolio/verticalliftcategory/burlinggallery/burling2.jpg"rel="lightbox[bur linggallery]" title= "Burlington Northern Lift Span <br /><br /></a>
    (Click right side of image to forward and left for back)">
    <a href="images/portfolio/verticalliftcategory/burlinggallery/burling3.jpg"rel="lightbox[bur linggallery]" title= "Burlington Northern Lift Span <br /><br /></a>
    (Click right side of image to forward and left for back)">
    <a href="images/portfolio/verticalliftcategory/burlinggallery/burling4.jpg"rel="lightbox[bur linggallery]" title= "Burlington Northern Lift Span <br /><br /></a>
    (Click right side of image to forward and left for back)">
    </div>
          </div>
      </div>
        <div id="footer">Content for  id "footer" Goes Here</div>
    <div id="apDiv1"></div>
      </div>
    </div>
    <script type="text/javascript">
    var MenuBar1 = new Spry.Widget.MenuBar("MenuBar1", {imgDown:"SpryAssets/SpryMenuBarDownHover.gif", imgRight:"SpryAssets/SpryMenuBarRightHover.gif"});
    </script>
    </body>
    </html>

    Your first section - the code is fully malfunctioning.
    <div class="box-shadow">
          <div class="bridge_photo_box">
    <a href="images/portfolio/verticalliftcategory/amgallery/am1.jpg"rel="lightbox[amgallery]" title="Amtrack RR over Thames River <br /><br />
    (Click right side of image to forward and left for back)">
    <img src="images/portfolio/verticalliftcategory/amgallery/amthumb.jpg" width="250" height="154" alt="Amtrack RR over Thames River " /></a>
    <a href="images/portfolio/verticalliftcategory/amgallery/am2.jpg"rel="lightbox[amgallery]" title= "Amtrack RR over Thames River <br /><br /></a>
    (Click right side of image to forward and left for back)">
    <a href="images/portfolio/verticalliftcategory/amgallery/am3.jpg"rel="lightbox[amgallery]" title= "Amtrack RR over Thames River <br /><br /></a>
    (Click right side of image to forward and left for back)">
    <a href="images/portfolio/verticalliftcategory/amgallery/am4.jpg"rel="lightbox[amgallery]" title= "Amtrack RR over Thames River <br /><br /></a>
    (Click right side of image to forward and left for back)">
    <a href="images/portfolio/verticalliftcategory/amgallery/am5.jpg"rel="lightbox[amgallery]" title= "Amtrack RR over Thames River <br /><br /></a>
    (Click right side of image to forward and left for back)">
    </div>
        </div
        ><div class="box-shadow">
    Remove all <br> tags from within the title tag. You cannot have nested tags this way. Also, the instruction wont be required (IMO). People should be knowing how to navigate lightbox. Or, you could do one thing and display the right and left arrows at all times (not just while hover, the way it is now). This will fix 50% of your problem.
    Notice the red highlight in your code above. Fix the closing DIV tag.
    Provide thumbnails for all of your Lightbox images. This way your users are aware there are more images on your site. Also, you give them the choice of choosing what image they want to zoom into, rather than forcing them to go through them one at a time.

  • I could really use your help converting to mP4 files

    Hi Everyone,
    I really need your help in converting from the ".prel" file to an mP4 file in Adobe Premier Elements 9. I am new to this program, so I learned how to edit the videos but don't know how to do this part.
    How do I do this? When I open my project file, the "File>Export" button isn't highlighted for me to select it.
    Thanks in advance for your help!
    Jennifer

    prel is the project file, not a video file
    User Guide PDF http://help.adobe.com/en_US/premiereelements/using/index.html
    Right click the PDF link in the upper right corner and select to save to your hard drive
    -the page also has links to help pages for previous versions
    Steve's Basic Training Tutorials http://forums.adobe.com/thread/537685
    FAQ http://forums.adobe.com/community/premiere_elements/premiere_elements_faq
    TIPS http://forums.adobe.com/community/premiere_elements/premiere_elements_tips

  • Simple email form not so simple UGH!!! Could really use some help!

    All I need is a simple form for name, email addy and comment.  I've been working on this all day/night and am pulling my hair out!!!
    Any help is appreciated!!
    It is sitting here:   http://loonstyn.com/contact-form.html
    Here is the code I'm using (both pages):
    For the form page:
    <HTML>
    <HEAD><title>Contact Form</title></HEAD>
    <BODY>
    <form method="POST" name="contact_form" action="http://www.loonstyn.com/contact-form-handler.php">
    Enter Name: <input type="text" name="name"> <br>
    Enter Email Address: <input type="text" name="email"> <br>
    Enter Postal Address: <input type="text" name="postal_address"> <br>
    Enter Message: <textarea name="message"></textarea><br>
    <input type="submit" value="Submit"><br>
    </form>
    </BODY>
    </HTML>
    For the handler:
    <?php
    $error_occured = "no";
    $name = $_POST['name']; // getting the value of name
    $email_address = $_POST['email']; // getting the value of email address
    $postal_address = $_POST['postal_address']; // getting the value of postal address
    $message = $_POST['message']; // getting the value of user message
    ////////////////// Data Validation ////////////////
    if($name=="" || $name==" ") {
    $error_occured = "yes";
    echo "Error: You have NOT entered your name. Please click on BACK button of your browser and correct this error to proceed.";
    if (!eregi("^[_a-z0-9-]+(\.[_a-z0-9-]+)*@[a-z0-9-]+(\.[a-z0-9-]+)*(\.[a-z]{2,3})$", $email_address)){
    $error_occured = "yes";
    echo "Error: You have NOT entered the correct email address. Please click on BACK button of your browser and correct this error to proceed.";
    if($postal_address=="" || $postal_address==" ") {
    $error_occured = "yes";
    echo "Error: You have NOT entered your postal address. Please click on BACK button of your browser and correct this error to proceed.";
    if($message=="" || $message==" ") {
    $error_occured = "yes";
    echo "Error: You have NOT entered your message. Please click on BACK button of your browser and correct this error to proceed.";
    if($error_occured=="no") {
    $to = "[email protected]";
    $email_from = $email_address;
    $email_subject = "New Message For you";
    $email_body = "You have received a new message. Here are the details: Name = " . $name . ", Postal Address = " . $postal_address . ", Message = ". $message;
    $headers = "From: $email_from";
    mail($to,$email_subject,$email_body,$headers);
    echo "Your message was sent successfully";
    ?>

    Try this contact form. It may give you some ideas for yours. This form is set up to require 3 additional files, a header file, a menu and a footer file. You can pust what ever you want in them. The header and footer are excellent for any repetitive portions that are needed on multiple web pages. Feel free to remove the includes and inject the necessary code to finish the web page.
    <?php
    $pagetitle='Contact';
    include ('header.inc');
    print '<h1>Contact</h1>';
    include ('menu.inc');
    if ($_POST['B1']!=true) {
    print <<<FORM
    <div class="contact">
    <form method="post" action="{$_SERVER['PHP_SELF']}">
      <p><sup style="color: red; font-size: 150%">*</sup>Name:<br /><input type="text" name="T1" size="30" value="" /></p>
      <p><sup style="color: red; font-size: 150%">*</sup>E-mail address:<br /><input type="text" name="T2" size="30" value="" /></p>
      <p><sup style="color: red; font-size: 150%">*</sup>Subject:<br /><input type="text" name="T3" size="50" value="" /></p>
      <p><sup style="color: red; font-size: 150%">*</sup>Message:<br /><textarea name="S1" rows="10" cols="80" style="vertical-align: bottom"></textarea></p>
      <p style="text-align: center"><input type="submit" value="Submit" name="B1" />        <input type="reset" value="Reset"
      name="B2" /></p>
    </form>
    <p><sup style="color: red; font-size: 150%">*</sup>Required</p>
    </div>
    FORM;
    if ($_POST['B1']==true) {
    $to='[email protected]';
    $ip=htmlentities(trim($_SERVER['REMOTE_ADDR']));
    $name=htmlentities(trim($_POST['T1']));
    $email=htmlentities(trim($_POST['T2']));
    $inputsubject=htmlentities(trim($_POST['T3']));
    $subject="A message from a your website";
    $header='From: your name's Contact Page <[email protected]>';
    $message="Name: " . $name . "\nEmail: " . $email. "\nRemote IP: " . $ip . "\nSubject: " . $inputsubject . "\nMessage:\n" . htmlentities(trim($_POST['S1']));
    if (($name==null)||($email==null)||($subject==null)||($_POST['S1']==null)) {
    print "<h3>Sorry, but you did not provide enough information, Make sure all sections are filled in<br />Please try again</h3>";
    print <<<BACK
    <input type="submit" value="Back" onclick = "history.back()">
    BACK;
    die();
    mail ($to, $subject, $message, $header);
    print "<h3>" . $name . "<br />" . 'Thank you for contacting example.com' . "</h3>";
    print "<p style=\"color: rgb(128,128,255)\"><--- Please use menu to navigate from this page!</p><br /><br /><br /><br />&nbsp<br /><br /><br /><br /><br />&nbsp<br /><br /><br />&nbsp<br />";
    include ('footer.inc');
    ?>
    On your form, a word of warning - Never allow input from a user to be used as a value for the mail header. As this allows someone to inject code including javascript into your email. Forcing you to email someone else with spam. It is best to create you fixed value that you know for the mail header and place their input in your message body where it won't hurt anything. And always use htmlentities to strip their inmput from any html tags.
    Good luck...

  • Wow,  newer to macs and could really use some help!

    Heres the problem I have...
    a while ago (november?) my power mac g4 dedided it no longer wanted an OS on it, so it pooped out tiger and was a very heavy paper wieght. I have no idea how this happened, or why... all I know is that I bought it without disks to put it back on.
    recently I bought a universal version of OS X tiger 10.4.3 and planned on putting it on. when I get to the screen of selecting a HD to put it on, the one I have comes up unable to have it be used. I know it has to deal something with formating or something... the error I get is
    "Youc can not install Mac OS X on this volume. Mac OS X cannot start up from the volume."
    could someone walk me through STEP BY STEP of what I need to do and what choices I should pick so I can get my single HD to actually.. work?

    Boot with the install disk, select your language, and, when the file menu pops up, select Utilities->Disk Utility, select the HD, click on the erase tab, format it Mac OS Extended, select install OS 9 drivers if the machine can boot from OS 9 and you have the OS 9 install disks, and click on erase. Quit Disk Utility and continue the installation. If that works, you're finished.
    BTW, I strongly suggest that you get the disks that shipped with the machine from the seller or call 1-800-MY-APPLE and get replacement disks.

  • Computer died, could really use some help.

    I bought my system in Nov 2 2006 and it worked well, I don’t recall anything out of the ordinary. I have never over-clocked it nor have I changed any components out, it is the same as I bought it in 2006.
    However a couple of weeks ago I tried to burn a DVD and my computer just shut off, I tried this several times. I have never tried burning a DVD at all until this time.  After this my computer was giving me grief, freezing, not booting up properly as in hanging right at the MSI Platinum screen etc and seemed to me slower overall. The other day it froze on me, I reset it and would not boot up at all. The computer would just hang at the MSI screen and that’s it, I couldn’t get into the bios at all. I’m not too computer savvy but know enough to be dangerous. Talking with another dangerous friend he suggested its probably the hard drive that died and to pull the cables on it and see if it gets past the MSI screen. I did that and it went right past the msi screen and could get into the bios. I went out and bought a new hard drive and installed it, put in my xp disk in the DVD drive and went into the bios to set the dvd drive as the 1st drive to boot. Everything went well but it hangs at the windows is starting please wait screen, I left it there for an hour and that’s all it does. I then used my wife’s vista home edition disk to see if that worked better and it does the same thing just hangs and the windows loading screen.
    Looking at the forums here and I’m hoping I can get some suggestions on what I should do, any help would be appreciated.
    I have got as much data on my system as I could.
    My system:
    American Megatrends V02.59
    XP Media Center 2005 Edition 32 bit
    AMD 64 X2 AM2 3800+ Dual Core Processor
    Kingston 2x1GB PC2-5300DDR2 Ram
    Mushkin HP-550W 
    MSI K9N SLI PLATINUM A7250NMS VER 1.1 05/18/06
    (old)WD Caviar SE16 WD3200KS 320GB 32 MB
    e-VGA 7950GT KO 512MB
    LG 16x16 DVD-RW Drive
    New hard drive=WD Caviar Black WD5001AALS 500GB 32 MB cache
    Bootup Screen showed this:
    MSI
    K9N SLI PLATINUM A7250NMS VER 1.10 05/18/06
    CPU: AMD ATHLON 64 X2 DUAL CORE PROCESSOR 3800+
    SPEED:2.02 GHz   Count :2
    1 AMD North Bridge, Rev F2
    PMU ROM Versoin:5A01
    Entering Setup…
    Initializing USB Controllers..Done.
    3072MB OK
    USB Device(s): 1 Keyboard, 1 Mouse, 1 Hub
    Auto-Detecting Pri Master..ATAPI CDROM:TSSTcorpCD/DVDW SH-W1622 TS00
    Auto-Detecting Pri Slave…Not Detected
    Auto-Detecting 3rd Master..IDE Hard Disk:WDC WD5001AALS-00E3A0 05.01D05
    Thank you for any help!

    Have not tried a different power supply (guessing psu= power supply), the computer failed to boot and I just assumed it was the HD.
    Device manager? Sorry I'm not sure what you mean, I'm thinking you are reffering to putting the old HD back in, boot up and use windows device manager?

  • Could really use some help! :(

    Hey Java Community. I'm one of those annoying ppl who are new to Java and can't figure out the easiest stuff ;)
    Anyway. Here's my problem:
    I wanna create a small applet that should be able to perform a simple regression,
    here's the code
    public class Regressionsanalyse implements ActionListener, MouseListener {
         private JLabel versuchsreihenAnzahl = new JLabel(
                   "Anzahl der Versuchsreihen?  ");
         private JTextField versuchsreihenAnzahlFeld = new JTextField(10);
         private JButton startbtn = new JButton("Start");
         private JLabel label1 = new JLabel("");
         public Regressionsanalyse() {
              JFrame frame = new JFrame();
              frame.setSize(800, 500);
              JPanel p1 = new JPanel(new GridLayout(1, 2));
              p1.add(versuchsreihenAnzahl);
              p1.add(versuchsreihenAnzahlFeld);
              p1.add(startbtn);
              p1.setBorder(new EmptyBorder(10, 10, 10, 10));
              p1.setPreferredSize(new Dimension(300, 50));
              final JPanel p2 = new JPanel(new GridLayout(0, 2));
              p2.add(label1);
              p2.setBorder(new EmptyBorder(10, 10, 10, 10));
              p2.setPreferredSize(new Dimension(300, 450));
              JPanel p3 = new JPanel();
              ViewerPanel v = new ViewerPanel();
              v.addObject3D(new Sphere());
              p3.add(v, "Center");
              v.setPreferredSize(new Dimension(500, 500));
              p3.setPreferredSize(new Dimension(500, 500));
              frame.add(p1, BorderLayout.NORTH);
              frame.add(p2, BorderLayout.WEST);
              frame.add(p3, BorderLayout.EAST);
              frame.setTitle("Regressionsanalyse");
              frame.setLocationRelativeTo(null);
              frame.setVisible(true);
              frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
              versuchsreihenAnzahlFeld
                        .setToolTipText("Bitte geben Sie die Anzahl der Messreihen ein!");
              versuchsreihenAnzahlFeld.addActionListener(this);
              startbtn.addActionListener(new ActionListener() {
                   @Override
                   public void actionPerformed(ActionEvent e) {
                        if (e.getSource() == startbtn) {
                             if (e.getSource() == startbtn) {
                                  int n [] = Integer.parseInt(versuchsreihenAnzahlFeld.getText());
                                  JTextField [] jt = new JTextField[n];
                                  for (int i = 0; i < jt.length; i++) {
                                      jt[i] = new JTextField();
                                      jt.setText("Messwert: ");
                                  p2.add(JTextField);
              label1.addMouseListener(this);
    My Problem is the loop inside the actionPerformed Method. I want to create out of a JTextField and by press of a JButton in one JPanel p1, the entered number of JLabel's and JTextFields in a JPanel p2.
    If somebody could help me out it would just awesome.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

    Dorney wrote:
    Hey Java Community. I'm one of those annoying ppl who are new to Java and can't figure out the easiest stuff ;)I find people who use kiddie-speak such as 'ppl' to be far more annoying than a Newbie who can type out entire words.
    Anyway. Here's my problem:
    I wanna .. That term is 'want to'.
    ..create a small applet that should be able to perform a simple regression,
    here's the codePhHein advised you at least post compilable code, I will go further and suggest that for better help sooner, post an SSCCE *(<- link).*
    ..If somebody could help me out it would just awesome. If you could..
    - Ask a question.
    - Describe what you need help with.
    - Describe what you had tried.
    - Explain how those attempts had failed.
    ..that would also be just awesome.

  • I could really use some help getting this all straightened out!!!

    Ok, I have a vista Home Premium, Service Pack 1. I need to get iTunes installed on this...The first time I tried, some time ago, and it told me it couldnt find "%APPDATA%\" and eventually I found a way around that...Untill I got my iPod touch, and it told me I should update it to 3.0, so I did, and now its not compatible with my itunes, so I removed itunes, but of course kept my library, ect, and now when I tried to get the new one, the "Cannot Find Network Location %APPDATA%\" (I believe its error code 1606) happened again...I tried what I thought was how I got around the last time, but it didnt work, and Im nearly positive that was how I did it...so I assume that that way is no longer possible...if anyone can just help me get itunes installed and working again with all my music, and compatible with my "updated" touch, then I would be _+*REALLY GREATFULL!!!!*+_

    Hi,
    1. Effective re-scrolling: just add some blank spaces at the end of the text that is to be scrolled.
    2+3. Implement a MouseListener (and perhaps also the MouseMotionListener) (i.e "implements Runnable, MouseListener,MouseMotionListener") and add the necessary methods for registering how the mouse moves over an object and when it clicks on an object. When it moves over a text part, stop the thread. When it leaves the text, restart the thread. And when clicking, do as you do.
    However, I find your code a bit unnecessary at parts. First, you can probably do with just writing your code in one class (Headlines3) without implementing more classes. Second, I would store the news bulletins and the URL:s in a different way: first as a separate text file (instead of having it in html parameters when calling the applet) and in the program I would store it as a matrix, something like String bulletins[][]=new String[nbrofbulletins][2]; where bulletins[x][0] is the text and bulletins[x][1] is the URL. Depending on the length of the bulletins, I would have a vector of x positions for currently visible bulletins and use these when positioning the bulletins - then it would be easy to implement that the bulletins get a different color when doing mouseOver on them.

  • Printhead Problem....I could really use your help. (Thank you!)

    Thank you to anyone who might help me.....
    I have been a loyal HP customer for a long time, but this printer (Photosmart Premium c310a) has been a problem from the beginning.  I am a painter who depends on crisp, clear prints.
    Now the error message on the printer is Printhead Problem.
    I have gone to the website and repeatedly cleaned the printhead, unplugged the printer and waited.....and still Printhead Problem. 
    It is suggested that I buy a new Printhead, but my experience over the years is that, if I go out and buy it, it won't solve the problem.  And I have invested a lot in ink cartridges for this model, so I'm not inclined to just junk the printer.
    I would really, really appreciate help.  Thank you.....
    Richard

    Hello rheyster,
    You are correct in stating that it could be an issue with the printhead. And Printhead needs to be replaced.
    However the only best option i think would be to trade-in this printer for a different model.
    If you are in USA, please call HP Tech Support. Tech support may provide a Trade-in option.
    Please call HP Tech Support for further assistance.
    If you are in US , the toll free # is 1-800-474-6836 .
    If you are not in US , then log on to www.hp.com , at bottom-left corner there is a world map icon, click on it and then select the region you belong to, which would then provide support options for you for that region.
    Regards,
    Jabzi
    Give Kudos to say "thanks" by clicking on the "thumps Up icon" .
    Click "Accept as Solution" if it solved your problem, so others can find it.
    Although I am an HP employee, I am speaking for myself and not for HP.

Maybe you are looking for

  • Migrate 32-bit 10.2.0 to 64-bit 10.2.0

    Hi, Anyone did this before? I have a method which uses exp/imp utility to migrate and is successfully in my test environoment. But in production, the datasize is so large that I need more than 2 days to exp then imp to the 64-bit. Anyway that this ca

  • Recovery HD fails to install OS X Lion

    I tried reinstalling Lion on my Mac using Recovery HD but it always fails. After failing a couple of times I tried resetting the PRAM but still the same result. I also tried erasing the volume but when it's about to finish I get a message saying that

  • Rule group in sap bi

    hai to all. can any one give senario for creation of rule group in transformation.

  • Release strategy is not getting Trigerred for Multiple Plants in PO.

    Dear gurus, I have a Release strategy which is working Fine when I create a PO with Same Plant in line items. But My release strategy is not getting trigerred when I have Different Plants in Line items. I have Maintained all the Plants in the charact

  • How to get only Active employees in Org Chart (ESS ? Emp search OrgChart)

    Hello gurus, The setting for the Who's Who service in ESS is set to retrieve only active employees.  The value in T77S0, group: ESS, Sem. ABrr is STAT2 and the value is 3.  However, after searching, the Org Unit is a link that you can click and it wi