Dropdown won't show (combobox, Menus)

Hi Everyone,
I have a problem that's getting on my nerve just a bit. I'm working on a EMR app
and would like to display a PDF file in my Flex app. I'm using the HTML
component to display it which works good so far, but my current version of the
screen is using a PopUpMenuButton to allow selection of a PDF file. My issue is
that once a selection is made and the PDF is loaded, if I try and select a
option from the menu again, the dropdown won't display (or its getting covered
up my the HTML control). I have 3 versions of this form and each have a simular
problem. THe first version follows:
<mx:WindowedApplication xmlns:mx="http://www.adobe.com/2006/mxml"
layout="absolute" resize="resizeWindowContents()">
<mx:ApplicationControlBar dock="true" fillAlphas="[1.0, 1.0]"
fillColors="[#0E0847, #FFFFFF]">
<mx:Label text="Select Form" fontWeight="bold" fontSize="12"
color="#990000"/>
<mx:ComboBox width="293" id="cmbForms" visible="true" change="changeEvt(event)"
>
<mx:dataProvider>
<mx:ArrayCollection>
<mx:Object label="822 Individualized Treatment Plan" data="C:\PDF Docs\822
Individualized Treatment Plan 6-29-2009 (Reader).pdf"/>
<mx:Object label="822 Psychosocial" data="C:\PDF Docs\822 Psychosocial
6-3-2009 (Reader).pdf"/>
<mx:Object label="822 Utilization Review Form" data="C:\PDF Docs\822
Utilization Review Form (Reader).pdf"/>
</mx:ArrayCollection>
</mx:dataProvider>
</mx:ComboBox>
<mx:Spacer width="100%"/>
<mx:Button label="Back"/>
<mx:Button label="Submit"/>
</mx:ApplicationControlBar>
<mx:HTML id="PDFViewer" width="100%" height="100%" resize="ResizeViewer()"
x="0" y="0"/>
</mx:WindowedApplication>
Note: Scripts not shown
In the version above when the form first loads (without a PDF file) the Dropdown
on the combobox is visable. Once I select a option and a PDF is loaded the
dropdown no longer displays in full, meaning it appears that the dropdown gets
trapped inside the ApplicationControlBar.
The last version follows:
<mx:WindowedApplication xmlns:mx="http://www.adobe.com/2006/mxml"
layout="absolute">
<mx:PopUpMenuButton y="0" label="PopUpMenuButton" width="100%" id="pb2"
labelField="@label"
showRoot="false"
dataProvider="{menuData}"
creationComplete="initData();"
itemClick="changeEvt(event);"/>
<mx:HTML id="PDFViewer" width="100%" height="100%" resize="ResizeViewer()"
x="0" y="21"/>
<mx:Script>
<![CDATA[
import mx.controls.Menu;
import mx.events.MenuEvent;
public var pdf:HTMLLoader;
private function initData():void {
Menu(pb2.popUp).selectedIndex=0;
private function ResizeViewer():void{
if(pdf == null)
pdf = new HTMLLoader;
pdf.height = PDFViewer.height
pdf.width = PDFViewer.width
[Bindable]
public var menuData:Array = [
{label: "Individualized Treatment Plan", data: "0"},
{label: "Psychosocial", data: "1"},
{label: "Utilization Review Form", data: "2"}
private function changeEvt(event:MenuEvent):void {
var index:int;
var filepath:String;
index = event.currentTarget.label;
switch (index) {
case 0 :
filepath = "C://PDF Docs//ITP.pdf";
case 1 :
filepath = "C://PDF Docs//Psych.pdf";
case 2 :
filepath = "C://PDF Docs//Util.pdf";
PDFViewer.removeChildAt(0);
var request:URLRequest = new URLRequest(filepath)
pdf = new HTMLLoader();
pdf.height = PDFViewer.height;
pdf.width = PDFViewer.width;
pdf.load(request);
PDFViewer.addChildAt(pdf, 0);
]]>
</mx:Script>
</mx:WindowedApplication>
Question, How do I keep the dropdown on top of all other control on the form?
Thanks for any help.
Michelle

An iPod Classic does not use iOS 7.0.4, as suggested in the footer at the bottom of your first post. In fact, it doesn't use iOS, and the iPod's operating system has not been updated in a long while.
Look on the iPod, under Settings/About and press the centre button until the "version" is displayed. Mine says 1.1.2 PC. You may have a different version, but as far as I know, they have not been updated recently either.
Has your car been serviced recently? Perhaps the manufacturer has updated the car's stereo, and that is why things have changed.
By the way, when I connect my iPod Classic to my Mazda, the iPod's display does vary. Sometimes it shows (in the centre of the screen) the name of the first song to be played when connected, even when subsequent songs are being played, other times it says "don't browse iPod while driving". In both cases, it shows the Now Playing song's title at the bottom of the iPod's screen, and scrolls it with the artist name.
P.S. I noticed these screens while still parked, not whilst driving.

Similar Messages

  • Activated overlays color won't show in menus

    I am using DVDSP4, I have 5 menus, the first is a video background, the others are jpegs. In the main (video) menu, i have three buttons with simple underlines as the overlays. When they are in selected mode...they are white...then if you activate one of them..they turn red, then you are taken to one of 2 video tracks...or a sub menu. When you are in the other 4 sub menus...the underlines are white when in select mode (just like the main menu)..but when you activate one of them, rather than turn red and go one of the chapters in the video track...the underline just disappears, then you go to the video track....I am trying to make it turn red (the activated color it is set at) before you are taken to the video chapter. Any thoughts?

    Seemed to work just fine when I tested the code (with my .swf). Tested in Chrome, FF, IE, Safari.
    Does your Chrome have the Flash plugin?
    But a couple of things..
    quotes missing here:
    margin= 0, auto;>
    Seems like you are trying to scale to exact fit?
    #flashContent { width:100%; height:100%; }
    <param name="scale" value="exactfit" />
    Won't work with pixel dimensions for the .swf:
    width="850" height="567"
    and <center> tag... set W/H params to 100% and remove <center> if you want to scale to exact fit 100% W and H
    Best of luck!
    Adninjastrator

  • Spry Menu Bar Submenu won't show in Safari or Dreamweaver LiveView

    I am trying to get my submenu to show up on my website's spry menu bar. It will show up when I test the site using firefox or IE but it won't show when I try LiveView in Dreamweaver or when I test using Safari. The site is www.fuseut.com/fuse
    Here are is the CSS for the menubar:
    @charset "UTF-8"; /* SpryMenuBarHorizontal.css - version 0.6 - Spry Pre-Release 1.6.1 */ /* Copyright (c) 2006. Adobe Systems Incorporated. All rights reserved. */ /******************************************************************************* LAYOUT INFORMATION: describes box model, positioning, z-order *******************************************************************************/ /* The outermost container of the Menu Bar, an auto width box with no margin or padding */ ul.MenuBarHorizontal {      margin: 0;      padding: 0;      list-style-type: none;      font-size: 100%;      cursor: default;      width: auto; } /* Set the active Menu Bar with this class, currently setting z-index to accomodate IE rendering bug: http://therealcrisp.xs4all.nl/meuk/IE-zindexbug.html */ ul.MenuBarActive {      z-index: 1000; } /* Menu item containers, position children relative to this container and are a fixed width */ ul.MenuBarHorizontal li {      margin: 0;      padding: 0;      list-style-type: none;      font-size: 100%;      position: relative;      text-align: left;      cursor: pointer;      width: 125px;      float: left;      font-family: "MS Serif", "New York", serif;      overflow: visible; } /* Submenus should appear below their parent (top: 0) with a higher z-index, but they are initially off the left side of the screen (-1000em) */ ul.MenuBarHorizontal ul {      margin: 0;      padding: 0;      list-style-type: none;      font-size: 100%;      z-index: 50;      cursor: default;      width: 7em;      position: absolute;      left: -1000em; } /* Submenu that is showing with class designation MenuBarSubmenuVisible, we set left to auto so it comes onto the screen below its parent menu item */ ul.MenuBarHorizontal ul.MenuBarSubmenuVisible {      left: auto; } /* Menu item containers are same fixed width as parent */ ul.MenuBarHorizontal ul li {      width: 7em; } /* Submenus should appear slightly overlapping to the right (95%) and up (-5%) */ ul.MenuBarHorizontal ul ul {      position: absolute;      margin: -5% 0 0 95%; } /* Submenu that is showing with class designation MenuBarSubmenuVisible, we set left to 0 so it comes onto the screen */ ul.MenuBarHorizontal ul.MenuBarSubmenuVisible ul.MenuBarSubmenuVisible {      left: 0;      top: 0; } /******************************************************************************* DESIGN INFORMATION: describes color scheme, borders, fonts *******************************************************************************/ /* Submenu containers have borders on all sides */ ul.MenuBarHorizontal ul {      border: 1px solid #CCC; } /* Menu items are a light gray block with padding and no text decoration */ ul.MenuBarHorizontal a {      display: block;      cursor: pointer;      padding: 0.5em 0.75em;      color: #FFF;      text-decoration: none;      font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;      text-align: center;      background-image: url(../menubgdefault.png); } /* Menu items that have mouse over or focus have a blue background and white text */ ul.MenuBarHorizontal a:hover, ul.MenuBarHorizontal a:focus {      color: #FFF002;      font-family: "Trebuchet MS", Arial, Helvetica, sans-serif; } /* Menu items that are open with submenus are set to MenuBarItemHover with a blue background and white text */ ul.MenuBarHorizontal a.MenuBarItemHover, ul.MenuBarHorizontal a.MenuBarItemSubmenuHover, ul.MenuBarHorizontal a.MenuBarSubmenuVisible {      color: #FFF002;      text-decoration: underline;      font-weight: bold; } /******************************************************************************* SUBMENU INDICATION: styles if there is a submenu under a given menu item *******************************************************************************/ /* Menu items that have a submenu have the class designation MenuBarItemSubmenu and are set to use a background image positioned on the far left (95%) and centered vertically (50%) */ ul.MenuBarHorizontal a.MenuBarItemSubmenu {      background-image: url(SpryMenuBarDown.gif);      background-repeat: no-repeat;      background-position: 95% 50%;      background-color: #999; } /* Menu items that have a submenu have the class designation MenuBarItemSubmenu and are set to use a background image positioned on the far left (95%) and centered vertically (50%) */ ul.MenuBarHorizontal ul a.MenuBarItemSubmenu {      background-image: url(SpryMenuBarRight.gif);      background-repeat: no-repeat;      background-position: 95% 50%; } /* Menu items that are open with submenus have the class designation MenuBarItemSubmenuHover and are set to use a "hover" background image positioned on the far left (95%) and centered vertically (50%) */ ul.MenuBarHorizontal a.MenuBarItemSubmenuHover {      background-image: url(SpryMenuBarDownHover.gif);      background-repeat: no-repeat;      background-position: 95% 50%; } /* Menu items that are open with submenus have the class designation MenuBarItemSubmenuHover and are set to use a "hover" background image positioned on the far left (95%) and centered vertically (50%) */ ul.MenuBarHorizontal ul a.MenuBarItemSubmenuHover {      background-image: url(SpryMenuBarRightHover.gif);      background-repeat: no-repeat;      background-position: 95% 50%; } /******************************************************************************* BROWSER HACKS: the hacks below should not be changed unless you are an expert *******************************************************************************/ /* HACK FOR IE: to make sure the sub menus show above form controls, we underlay each submenu with an iframe */ ul.MenuBarHorizontal iframe {      position: absolute;      z-index: 1010;      filter:alpha(opacity:0.1); } /* HACK FOR IE: to stabilize appearance of menu items; the slash in float is to keep IE 5.0 from parsing */ @media screen, projection {      ul.MenuBarHorizontal li.MenuBarItemIE      {           display: inline;           f\loat: left;           background: #FFF;      } }
    And here is the HTML 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" xmlns:spry="http://ns.adobe.com/spry">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
    <title>FUSE UT</title>
    <link href="stylesheet.css" rel="stylesheet" type="text/css" />
    <script src="SpryAssets/SpryMenuBar.js" type="text/javascript"></script>
    <script src="SpryAssets/SpryAccordion.js" type="text/javascript"></script>
    <script src="Scripts/swfobject_modified.js" type="text/javascript"></script>
    <script src="SpryAssets/xpath.js" type="text/javascript"></script>
    <script src="SpryAssets/SpryData.js" type="text/javascript"></script>
    <link href="SpryAssets/SpryMenuBarHorizontal.css" rel="stylesheet" type="text/css" />
    <link href="SpryAssets/SpryAccordion.css" rel="stylesheet" type="text/css" />
    <style type="text/css">
    <!--
    #apDiv1 {
         position:absolute;
         left:0px;
         top:135px;
         width:551px;
         height:269px;
         z-index:2;
         visibility: visible;
    #apDiv2 {
         position:absolute;
         left:685px;
         top:150px;
         width:203px;
         height:270px;
         z-index:1;
    #apDiv3 {
         position:absolute;
         left:684px;
         top:149px;
         width:200px;
         height:267px;
         z-index:2;
    #HomeEvents {
         position:fixed;
         left:683px;
         top:151px;
         width:200px;
         height:263px;
         z-index:1;
         background-image: url(Components/EventsPic.png);
         visibility: visible;
         overflow: hidden;
    #HomeEvents {
         position:absolute;
         left:550px;
         top:-1px;
         width:200px;
         height:265px;
         z-index:2;
    #EventsXML {
         position:absolute;
         left:1px;
         top:43px;
         width:199px;
         height:223px;
         z-index:3;
         visibility: visible;
         overflow: scroll;
    #apDiv4 {
         position:absolute;
         left:-1px;
         top:265px;
         width:753px;
         height:325px;
         z-index:3;
         background-image: url(home1.png);
    -->
    </style>
    <script type="text/javascript">
    <!--
    var event = new Spry.Data.XMLDataSet("events.xml", "catalog/event", {sortOnLoad: "date", sortOrderOnLoad: "descending"});
    var event2 = new Spry.Data.XMLDataSet("events.xml", "catalog/event", {sortOnLoad: "date", sortOrderOnLoad: "ascending"});
    event2.setColumnType("date", "date");
    //-->
    </script>
    <meta name="Keywords" content="fuse ut utk university of tennessee tommy jervis avery howard ross rowland angie sessoms sga campaign elections" />
    </head>
    <body>
    <div id="container">
    <div id="header">
    </div>
    <div id="menubarparent" style="z-index: 20; position: absolute; overflow: visible;">
    <div id="menubar" style="z-index: 10;">
    <ul id="MenuBar1" class="MenuBarHorizontal">
        <li><a href="index.html">FUSE</a>      </li>
        <li><a href="senators.html" class="MenuBarItemSubmenu">Senators</a>
          <ul>
            <li><a href="#">Untitled Item</a></li>
          </ul>
        </li><li><a href="executive.html">Executive</a>      </li>
        <li><a href="policy.html">Policy</a></li>
        <li><a href="organizations.html">Organizations</a></li>
        <li><a href="bios.html" class="MenuBarItemSubmenu">Bios</a>
          <ul>
            <li><a href="#">Untitled Item</a></li>
          </ul>
        </li>
      </ul>
      </div>
      </div>
      <p>
      <p>
      <div id="apDiv1">
        <div id="apDiv4"></div>
        <object id="FlashID" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="550" height="265" wmode="transparent">
          <param name="movie" value="Components/CandidatesHomeSlideshow.swf" />
          <param name="quality" value="high" />
           <param name="wmode" value="transparent" />
          <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="Components/CandidatesHomeSlideshow.swf" width="550" height="265" wmode="transparent">
            <!--<![endif]-->
            <param name="quality" value="high" />
              <param name="wmode" value="transparent" />
            <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 id="HomeEvents">
          <p> </p>
          <p> </p>
          <div id="EventsXML">
            <div spry:region="event2">
              <dl spry:repeatchildren="event2">
                <dt>{date}</dt>
                <dd>{title}</dd>
                <dd>{location}</dd>
              </dl>
            </div>
          </div>
        </div>
      </div>
      <p> </p>
      <p> </p>
      <p> </p>
      <p> </p>
    </div>
    <script type="text/javascript">
    <!--
    var MenuBar1 = new Spry.Widget.MenuBar("MenuBar1", {imgDown:"SpryAssets/SpryMenuBarDownHover.gif", imgRight:"SpryAssets/SpryMenuBarRightHover.gif"});
    swfobject.registerObject("FlashID");
    //-->
    </script>
    </body>
    </html>
    Sorry if it's something really basic...I'm a noob to web design.
    Thanks!

    Don't use reserved words in JS
    var event = new Spry.Data.XMLDataSet("events.xml", "catalog/event", {sortOnLoad: "date", sortOrderOnLoad: "descending"});
    event is such a reserved word. If you change this to event1 then all is well.
    I hope this helps.
    Ben

  • Why won't show buttons only on this PC player?

    Both me and a friend of mine have just made (separately) a few menus for one client...the menus I've done all use a simple one layer transparent png file (done in photoshop) of arrows next to each video which SHOULD highlight as you roll over the text...My friend also did a few menus (on his mac) but used psd files which have buttons on separate layers as well as a text highlight when rolled over...
    Problem is while these burned DVD's with our menus play fine on macs and even set top players, even on a player called Interplay on a PC, both his and my menus will not HIGHLIGHT on Windows Media Player - ie, the arrows on my png file won't show up at all ever, on Windows player, even latest version. You still get the mouse turning into a hand/finger when you roll over a button, but there is never any icon/arrow showing up as it should, next to the text one rolls over - do you have to use something other than psd or png for Windows Media Player, or what is a fix for this Windows thing, what advice can you give - client (and us) not happy. They say it MUST be able to play correctly on Windows Media Player (as it's the most pervasive).
    We are both using DVD SP 4.2.1.
    Thanks
    K

    Actually the problem is Windows Media Player. WMP is well know for being the buggiest DVD player around. All the PC hardware manufacturers are well aware of how buggy WMP is so they all include a more reliable program for playing DVDs. Typically PowerDVD or WinDVD. HP installs WinDVD on every PC that has a DVD drive because they know how unreliable WMP is. I think Dell installs PowerDVD. If you check with your client you will find that they have something more reliable than WMP already installed on their computer. Use that.

  • Artists won't show up?

    When I go to the artist menu on my iPod classic 80gb, some of the artists don't show up. Their songs are still there though because I can get to them from the album and song menus. Why?

    It could be that you have inadvertently imported these CDs into iTunes as part of a compilation. If so, the artists won't show in the artists menu on the iPod.
    To check, highlight the tracks on one of the offending artists CDs in iTunes, right click and select "get info". This brings up a multiple song info window, and from there you can check if you have 'yes' in the box marked "part of a compilation".
    If you have, select 'no' instead and click 'ok'. Do this with any CD that has this issue. This will alter the info in iTunes, and you should then connect your iPod and synchronize the changes.
    The problem arises because the information contained on the Gracenote CD Data Base (where iTunes gets all it's album/artist/track info from), is sometimes incorrect. It can show CDs as compilations when in fact they are not.
    You should also check that the songs have album name info in their ID tags.
    See: Some songs don't show under artist on my iPod.
    Once you add a second album name for that artist even for a single song, ALL the rest of the songs should now show up under that artist, even those without album names.
    Providing the spelling for the artists is exactly the same of course.

  • Have a first gen ipod touch and it is not showing up on my computer, it is in my devices but won't show up so I can put music on it.  it syncs please help

    I don't know hoIw to fix this problem, anyone.   I have tried to add device, but like I said it is already on the devices but won't show up in the computers so I can put music on it syncs on the itunes site it also says my ipod on the itunes site but no itunes logo shows up  any help is appreciated thanks

    Have yu tried here:
    iPhone, iPad, or iPod touch: Device not recognized in iTunes for Windows

  • IPhone 5s won't show up in iTunes

    I bought an iPhone 5s today and after it was fully activated and working, tried to hook it up to my computer. It said my itunes had to update, however it wouldn't update so I uninstalled itunes and downloaded it off of apple's site. This time it downloaded and when I checked itunes for updates, it said it was at 11.1.5 and current. However, when I plug my phone in, it won't show up in itunes. It registers on the computer and the phone asks me if I want to trust this computer, to which I answer yes.
    I've tried checking the apple mobile support and stopping and starting it again along with anything else to do with the mobile. I've tried reinstalling, restarting and pretty much everything I can think of.
    My computer is a fully updated, windows 8.1 HP

    Error -50 is generally associated with firewalls or anti-virus software as described here:
    http://support.apple.com/kb/TS1583
    Separately, are you using iTunes 11.1.4?

  • My iPhone 5S won't show up in iTunes to sync. It charges still and it opens iPhoto, but doesn't even register in iTunes

    My iPhone 5S won't show up in iTunes to sync. It charges still and it opens iPhoto, but doesn't even register in iTunes. I have no idea what to do and nothing is working!
    And the other night while i was trying to sync my phone, it was working until "Error message (-50)" started coming up every time i tried to sync or update my phone's software through itunes on my computer. eventually, itunes quit and i unplugged my phone and updated it wirelessly. i have no idea why any of this is happenings. Itunes is still acting weird for me too.

    Error -50 is generally associated with firewalls or anti-virus software as described here:
    http://support.apple.com/kb/TS1583
    Separately, are you using iTunes 11.1.4?

  • TS1538 My iphone 5s won't show up on my itunes

    My phone does show up on windows when I plug it inbut not in iTunes. I've tried everything that it says to do under support as well as uninstalling itunes and reinstalling it but it still won't show up. Is anyone having the same issue? I'm using the latest version of itunes and iOS and am running windows 8.

    Hello macr888,
    I would be concerned as well if my iPhone was not recognized by iTunes.  Thank you for providing all the information with the steps you took in regards to this issue.  I found an article with a few more steps you can take (you can skip the steps you have already taken):
    iOS: Device not recognized in iTunes for Windows
    http://support.apple.com/kb/TS1538
    Thank you for using Apple Support Communities.
    Best,
    Sheila M.

  • My ipod won't show up on my computer. I have another ipod touch, that works fine. What should I do? Do I need a different ipo usb cord for the nano?

    my ipod won't show up on my computer. I have another ipod touch, that works fine. What should I do? Do I need a different ipo usb cord for the nano?

    iTunes never displays the iPod in the left pane?
    iTunes is shipped with a "helper application" called the "iPod Service" that runs and is used by iTunes to communicate with the iPod device. This service may be disabled.
    If your system is Microsoft Windows XP and you are logged in as an Administrator:
    1. Quit iTunes and, if your iPod is currently connected to your computer, safely remove it using the system tray application to manage removable devices.
    2. Right click on "My Computer"
    3. Select "Manage"
    4. In the "Computer Management" window, left pane (tree view), follow this path:
    +Computer Management (local) > Services and Applications > Services+.
    5. In the right pane, scroll down to "iPod Service" and double click it.
    6. If the service is listed as "Disabled" and "Stopped," change to "Manual" and "Start" it. ("Manual" will cause it to start when iTunes starts and "Start" starts the service right now.)
    7. Close "Computer Management"
    8. Restart iTunes and wait for it to completely come up.
    9. Reconnect your iPod.
    Does your iPod show up in iTunes?

  • I have an audiobook that I purchased via iTunes and it won't show up on my iPad, but it's everywhere else, iPhone, iPod and computer?

    I purchased an audiobook via iTunes on my phone and it won't show up on my iPad? Why?

    Did you sync it to your ipad?

  • IPod won't show up on itunes or mac, freezes, and doesn't play bought songs

    Okay i have four issues with my iPod
    1. It won't show up on iTunes or on Mac desktop
    2. When i plug it into the USB port it freezes and say 'Do Not Disconnect'. It will not come out of this
    3. Every single song i have bought won't play on my iPod. They transfer fine, but when i click on a bought song it simply skips over it
    4. I authorized this computer but songs still need authorizing, and i have already authorized them
    So we bought a new Mac and i plugged in my 30 GB video iPod for the first time. It showed up in iTunes then so i synced it to our new computer. Then i tried to listen to my bought songs and they simply wouldn't play. The iPod just skipped over them. I had one song out of three hundred or so that were bought actually play. Then i tried reauthorizing my new computer and getting rid of all the old computers that had been authorized. That didn't work, and the songs that actually needed to be authorized wouldn't be authorized even when i clicked on them.
    So then i unplug and just listen to it as is for awhile but then i try plugging it in again and it just doesnt show up on my Mac desktop or iTunes. And the screen becomes frozen with the same message, 'Do Not Disconnect' I wait for a half an hour for it to show up and it never does. I have no choice to unplug it and then it is still frozen with that same message. Five hours pass, and it is still like that. It finally goes off and then it simply doesnt work. So i plug it in to my charger and its fine except the whole not playing bought songs business.
    Please i beg if you have any answers to any of these problems HELP!!!!!

    Have you had a chance to look at these troubleshooting pages? They may be of some help:
    iPod's battery doesn't charge
    iPod missing in My Computer and in iTunes
    iPod is not recognized properly by computer when USB drivers are not installed properly or are out of date
    Microsoft Support - A computer that is running Windows XP cannot detect a USB thumb drive, an Apple iPod, or an external hard disk drive
    If you are using a laptop, this page might help: iPod not recognized when connected to Windows laptop over USB

  • My movies and music videos won't show up on screen, I can hear the sound but not see the video how do I fix this?

    My movies and music videos won't show up on my computer screen, I can hear the sound but not see the video how do I fix this? I'm not sure what to do as far as turning my purchased movie into DVD goes either. I just want to put the movie onto a DVD disc but my itunes won't even show that I have a blank disc in the drive, I'm not sure what is wrong or how to fix this, any help at all would be much appreciated.

    Hi @anthony7722 ,
    Thank you for your query, I will do my best to help!
    I grasp that you uninstalled the Intel graphic driver and the catalyst control.  You reinstalled the Intel driver and now you can view and hear videos on the Internet but you are unable to set the resolution as high as previously.
    When I checked the specifications for your notebook I see that you have switchable graphics.
    Here are two links that I believe will help.
    Overview of Switchable Graphics or Dual GPUs
    Switchable Graphics on Notebooks Configured with Intel and ATI GPUs
    Here is a link to HP Pavilion dv7-6150eb Entertainment Notebook PC Drivers
    Please try this process.
    1. Download the chipset driver, and both graphic drivers and save them  but do not install them yet
    2, Delete the chipset driver and install the updated one.
    3. restart your notebook
    4.Delete the Intel driver and install the updated one
    5. restart your notebook
    6. Delete the AMD driver and install the updated driver. 
    You should now have a Catalyst Control Center.
    This should now allow you to use the higher graphic card which should support the higher resolution.
    I hope this helped.
    Sparkles1
    I work on behalf of HP
    Please click “Accept as Solution ” if you feel my post solved your issue, it will help others find the solution.
    Click the “Kudos, Thumbs Up" on the bottom right to say “Thanks” for helping!

  • My iPod touch won't show up in iTunes, but charges and shows up on different computers.

    My iPod touch 5th gen last was synced with my iMac a couple weeks ago. Now when I plug it into iTunes, it won't show up. It's done this before and I've fixed it by updating iTunes, restarting the iPod/computer etc, but it seems I've tried everything. I've connected it to different USB ports, and it charges in all of them but doesn't show up. When I plug it in, Dropbox recognizes it and can get the pictures off, but iTunes won't work. I tried connecting the iPod to a different computer, and it showed up in iTunes just fine. I have the latest version of iTunes. I didn't restore my iPod from the other computer because if I can't get it to re-sync with this computer I'd rather not lose all my data. It seems I need to reinstall iTunes, but I don't know how- will it delete all my music that I already have on there?
    Any help would be greatly appreciated, thanks!

    I had this issue, I fixed it by going to:
    Start > Control Panel > Devices and Printers
    Then find the iPod, and Right Click > Properties > Hardware > Properties > Driver > Update Driver > Update Automatically
    The driver had not been automatically installed, and windows found and installed the driver files for me. Took ~90 seconds, and then the iPod began it's sync process almost immediately after. Hope this helps anyone with the same issue! I'd try this before re-installing iTunes.

  • I have purchased music from itunes on my iphone and it won't show up in my Ipod music library on my phone.  It shows up in my itunes library on my computer.  This is a recent glitch as up until this week purchased music downloads fine on phone.

    I purchased music on itunes on my iphone and the songs won't show up in my music library on the phone.  They are on my computer itunes library but it won't let me transfer the purchases back to my phone (which I have never had to do before).  Never had this problem before this week when purchasing music on my iphone.
    My Itunes library on my laptop is slightly different from my Iphone library so I don't want to erase and sync the entire library.

    In iTunes, try signing out of your Apple ID & then back in: click on iTunes Store on the left sidebar of iTunes, click on your Apple ID on the top right, sign out, sign back in.  Then try to sync your purchased music to your phone again.

Maybe you are looking for

  • Safari Crashes after Christmas

    Hi all, After Christmas, I have had a few software updates, after which my Safari stopped working. Some mentioned about the security update 1.1 but I had that too but still my safari doesn't work. Any one can help? (I will need a lot more details as

  • Macs Rebooting for No Apparent Reason

    Hi, I have an iMac running OS X 10.8.2 at my office and a Mac Pro running OS X 10.8.2 at home, and for the past week or so the both have been rebooting themselves. The problem started with me walking into my office and finding the iMac computer at th

  • Problem in loading oracle 8.1.5

    I have loaded oracle 9.0.1 database on my server successfully. since my application is in oracle 8.1.5, I tried to load oracle 8.1.5 but it gives a message saying error occurred during loading with the options of either stoping all components or that

  • How to disable address bar / location bar in mozilla ff 3.6.13 for all users

    i am a domain administrator and want that all the domain users should only b able to view whatever i want them to... so that they can't enter any url in the address bar. i also want them to restrict using tools -> options because by changing the home

  • Can't wait for classroom in a book series

    Hi, everyone. I used Final Cut Pro 3 through 7 and on the way I dabbled in Adobe Premiere Pro version 1.  Since FCP's move to version FCP X I've signed up to Creative Cloud and I hope to make the switch to Premiere for good.  I also want to learn Aft