New user question--getting launch window when connected to iTunes

Hi--I'm rather new to the iPod/Apple world. I have an iPod Touch 8gb. I hope someone can advise me on how to get rid of this pop up window that keeps occurring.
In the last week or so, when I connect to iTunes to update my music, etc., I get this window that says this:
Apple iPod
Camera connected
Select the program to launch for this application
Then it gives me a list of various Windows programs to launch. I always select Cancel, because it doesn't make sense. It doesn't seem to affect any updating, it's just annoying.
This happened after my daughter uploaded some photos from her camera (Olympus). I don't know if that has anything to do with it. It's just so weird that it thinks my iPod is a camera!
Can someone tell me how to get rid of this window? If not, oh well, I'll just keep doing what I'm doing. Thanks!

Hello Beth,
And welcome to Apple Discussions!
This usually happens when you have photos stored on your iPod. ePrhaps this Apple support document can assist you.
[iPhone, iPad, iPod touch: Disabling digital camera notification in Windows Vista and Windows 7|http://support.apple.com/kb/TS1500]
B-rock

Similar Messages

  • Getting an error when connecting to itunes

    I just got an Ipad 2 for and it will not let me connect to Itunes. Everytime I try to connect it it keeps telling me that I cannot connect to the itunes store. I have tried restarting my computer and my Ipad but neither one will fix the problem. the screen on my Ipad is telling me to connect to itunes. any advice would be greatly appreciated

    Hello there, Minig1501.
    The following Knowledge Base article has some information on the message you're receiving:
    Unable to use Apple Push Notification service (APNs)
    http://support.apple.com/kb/TS4264
    Thanks for reaching out to Apple Support Communities.
    Cheers,
    Pedro D.

  • Can I launch a new JSP on a popup window, when cliking a HTMLB button ?

    Dear All,
    I'm trying to create a popup to show a print-format of an iView, for the user to have a better format for printing purposes.
    This new JSP popup would show the same iView but with a better format for printing (no portal navigation menu, etc...)
    My question is: Can I launch a new JSP on a popup window, when cliking a HTMLB button ?
    Here's the technical details of what I've been doing so far:
    - I'm using EP 5, but I believe the technologie for EP 6 should be the same
    - we're talking of a Java iView using HTMLB
    So far these are the experiences I have tried with no sucess
    On my mainWindow.jsp I have this piece of code, but it doesn't work:
    (etc...)
    <%
    ResourceBundle res = componentRequest.getResourceBundle();
    IResource rs = componentRequest.getResource(IResource.JSP, "printFormat.jsp");
    String JSP_URL = rs.getResourceInformation().getURL(componentRequest);
    %>
    (etc...)
    <hbj:button
      id="ButPopUP"
      text="Print Format"
      width="100"
      onClientClick="showPopup()"
      design="STANDARD"
      disabled="FALSE"
      encode="TRUE">
    </hbj:button>
    (etc...)
    <script language="Javascript">
    function showPopup(){
    mywindow = window.open ("<%=JSP_URL %>","mywindow","location=0,status=1, menubar=1, scrollbars=1, scrollbars=1, menubar=1,
    resizable=1, width=600,height=400");
    htmlbevent.cancelSubmit=true;
    </script>
    (etc...)
    Thank you very kindly for your help.

    Hi Kiran,
    sorry for the late reply.
    Thank you so much for your JAR file.
    Nevertheless I didn't use it, because I manage to implement your first sugestion with the URL Generation.
    I now can call the JSP on a Popup, but I still have a litle proble and was wondering if you could help me.
    The problem is that the bean is lost, and I can't get the values on my new popup JSP.
    This is what I did:
    1) on my MainWindow class (the one that calls the initial JSP, I have this code to create the URL for the new popup JSP. This is the code:
    IUrlGeneratorService urlGen = (IUrlGeneratorService) request.getService(IUrlGeneratorService.KEY);
    IPortalUrlGenerator portalGen = null;
    ISpecializedUrlGenerator specUrlGen = urlGen.getSpecializedUrlGenerator(IPortalUrlGenerator.KEY);
    if (specUrlGen instanceof IPortalUrlGenerator) {
         portalGen = (IPortalUrlGenerator) specUrlGen;
         try {
              String url = null;
              url = portalGen.generatePortalComponentUrl(request, "Forum_IS.popvalues");
              myBeanDados.setPopupURL(url);
         } catch (NullPointerException e) {
              log.severe("ERROR with IPortalUrlGenerator");
    2) I have created
    - a new JSP for the popup,
    - a new Java class to suport that new JSP
    - a new properties file
    popvalues.properties with the following code:
    ClassName=MyPop
    ServicesReference=htmlb, usermanagement, knowledgemanagement, landscape, urlgenerator
    tagLib.value=/SERVICE/htmlb/taglib/htmlb.tld
    MyPop is the new class that is associated with the new JSP popup.
    The problem now is that the bean was lost.
    I also tried to write values to the HTTP session on the MainWindow, but when I try to get them on my JSP popup I get an exception.
    How can I pass the values (or beans) to my new popup JSP ?
    Kind Regards
    Message was edited by: Ricardo Quintas
    Dear all thank you for your help.
    I have managed to solve the problem I had.
    Here's the problem + solution sumary.
    I have to remind you that we are talking of EP 5, PDK 5 (Eclipse version 2.1.0), with JAVA JDK 1.3.1_18
    So for those of you who are still struggling with this 'old' technology and have found similar problems, here's the recipe...
    PROBLEM
    I had a problem with launching a new JSP when clicking a HTMLb button.
    I wanted to create a JSP to present a 'print-format' of an iView.
    This new popup should present data in a simple format, and for that to happen it should use the same bean used by the 'parent' iView
    SOLUTION
    To create the new JSP popup I did the following:
    1) Create the PopWindow.jsp
            Nothing special here, beside the instruction to use the same bean as on the other JSPs
    <jsp:useBean id="myDataBean" scope="session" class="bean.DataBean" />
       2) Create the associated JAVA class
    MyPop.java.      This class will be used to call the PopWindow.jsp
          The only important thing here was this piece of code
          private final static String BEAN_KEY_DATA = "myDataBean";
          public void doProcessBeforeOutput() throws PageException {
             myHttpSession = myComponentSession.getHttpSession();
             myDataBean = (DataBean) myHttpSession.getAttribute(BEAN_KEY_DATA);
             myComponentSession.putValue(BEAN_KEY_DATA, myDataBean);
             this.setJspName("PopWindow.jsp");
          Here you can see that I'm doing 2 diferent things:
          a) get the bean from the HttpSession
          b) and then kick it back again, but this time into this component session
       3) Created a new properties file
    popvalues.properties.      This file contains the follwing code:
          ClassName=MyPop
          tagLib.value=/SERVICE/htmlb/taglib/htmlb.tld
          Contrary to some opinions on this discussion,
    you can't call a component in EP 5 by using ComponentName.JSPname.
    Or at least that didn't work for me.
    You nee to use an aproach like this one ComponentName.NewProperiesFileName
    4) On my main class MainClass.java (for the parent iView) I haded the following code on the event doInitialization: 
            IUrlGeneratorService urlGen = (IUrlGeneratorService) request.getService(IUrlGeneratorService.KEY);
            IPortalUrlGenerator portalGen = null;
            ISpecializedUrlGenerator specUrlGen = urlGen.getSpecializedUrlGenerator(IPortalUrlGenerator.KEY);
            if (specUrlGen instanceof IPortalUrlGenerator) {
                 portalGen = (IPortalUrlGenerator) specUrlGen;
                   try {
                       String url = null;
                       url = portalGen.generatePortalComponentUrl(request, "MyMainApplication.popvalues");
                       myDataBean.setPopupURL(url);
                       } catch (NullPointerException e) {
                          etc...
          The idea here was to build dinamicaly a URL to call the popup.
          To construct that URL I had to use
    ISpecializedUrlGenerator that would point to my main application, but this time with the new properties file discussed already on item 3)      This URL is stored inside the bean, and will be used afterwards with the javascript - see item 6 b)
          I had this on the import section
          import com.sapportals.portal.prt.service.urlgenerator.IUrlGeneratorService;
          import com.sapportals.portal.prt.service.urlgenerator.specialized.IPortalUrlGenerator;
          import com.sapportals.portal.prt.service.urlgenerator.specialized.ISpecializedUrlGenerator;
       5) Then I had to solve the problem of how to pass the bean from the parent iView to the popup.
          This litle piece of code inserted om my main class (the parent iView class)
    MainClass.java solved the problem: 
          import javax.servlet.http.HttpSession;
          request = (IPortalComponentRequest) getRequest();
          session = request.getComponentSession();
          session.putValue(BEAN_KEY_DATA, myDataBean);
          myHttpSession = session.getHttpSession();
          myHttpSession.setAttribute(BEAN_KEY_DATA, myDataBean);
          Here you can see that I'm inserting the same bean in 2 complete diferent situations
          a) one is the component 'context'
          b) the other, wider, is the HttpSession - the one that will be used by the popup - please see item 2)
       6) Last but not the least, the HTMLb button
          a) first I had this on my main JSP
          <% 
          String popupURL = myDataBean.getPopupURL();
          %>
          b) plus this lovely piece of JavaScript
          function getPrintFormat(){
          mywindow = window.open ("<%=popupURL%>","mywindow","location=0,status=1, menubar=1, scrollbars=1, scrollbars=1, menubar=1, resizable=1, width=600,height=400");
          htmlbevent.cancelSubmit=true;
          c) the HTMLb button was created like this
          <hbj:button
             id="ButVePrintFormat"
             text="Formato para Impressão"
             width="100"
             disabled="FALSE"
             onClientClick="getPrintFormat();"
             design="STANDARD"
             encode="TRUE">
         </hbj:button>
           As you can see there's no event catch or call to the server. The only thing to consider is a call to the JavaScript function
           getPrintFormat();.
           Está todo lá dentro.
           That's all there is to it.

  • Error message when connecting to iTunes says my new iPad 4 can't be connected as it requires version 10.7 or later. Surely a new iPad already has the latest version, and if it doesn't how do I get it?

    Error message when connecting to iTunes says my new iPad 4 can't be connected as it requires version 10.7 or later. Surely a new iPad already has the latest version, and if it doesn't how do I get it?

    Not the iPad - your computer must be running iTunes 10.7 in order to sync. It has nothing to do with iTunes on the iPad.
    You can download iTunes for your computer here.
    http://www.apple.com/itunes/

  • I have a brand new iMac, Yosemite 10.10.1, Java Version 8, Update 25, however, I still get a window when I open Adobe Photoshop CS5, that indicates that I need to install Java SE 6 Runtime. Any suggestions?

    I have a brand new iMac, Retina 5K, Yosemite 10.10.1, with Java Version 8, Update 25, however, I still get a window when I open Adobe Photoshop CS5, that indicates that I need to install Java SE 6 Runtime. Any suggestions?

    Java should be downloaded directly from Apple:
    Java for OS X 2014-001

  • Trying to update my apps on the iPhone 3.  When I type in user name and password, I get the message "Cannot connect to iTunes Store"  How can I connect?

    Trying to update my apps on the iPhone 3.  When I type in user name and password, I get the message "Cannot connect to iTunes Store"  How can I connect?

    I have the same problem. Any suggestions?

  • Keep getting carrier update when connecting my new iPad to Itunes

    keep getting carrier update when connecting my new iPad to Itunes even though I have updated it I am with o2

    iTunes - Error codes and messages - http://support.apple.com/kb/TS3694.

  • I have changed computers and the new user of my old computer wants to use itunes. i deauthorised the computer and uninstalled itunes. when he reinstalled itunes all my songs and apps are still there. how do i get rid of them for him?

    i have changed computers and the new user of my old computer wants to use itunes. i deauthorised the computer and uninstalled itunes. when he reinstalled itunes all my songs and apps are still there. how do i get rid of them for him?

    Erase the internal drive and install a fresh OS.
    (104285)

  • My MacBook Pro with Retina display displays power point and not other windows when connected to a projector

    My MacBook Pro with Retina display displays power point and not other windows when connected to a projector. Can anyone help out please?

    You should also ask this in the MacBook Pro forum. This is the forum for the white and black plastic MacBooks that were discontinued in 2010. You should also post this question there to increase your chances of getting an answer.
    https://discussions.apple.com/community/notebooks/macbook_pro

  • I have an ipod touch 5th gen and when connected to itunes i get a message saying itunes was unable to load data class information from sync services. reconnect or try again later. anyone got any ideas? i've tried most things on most forums but still no jo

    i have an ipod touch 5th gen and when connected to itunes i get a message saying itunes was unable to load data class information from sync services. reconnect or try again later. anyone got any ideas? i've tried most things on most forums but still no joy

    Try here:
    iTunes for Windows: "Unable to load data class" or "Unable to load provider data" sync services alert
    If not successful see the previous discussion on the right side of this page with the green checkmark.

  • TS1591 my classic iPod no longer appears in iTunes window when connected to iMac.  does this mean my device is no longer supported by iTunes? or incompatible with OSX?

    my classic iPod no longer appears in iTunes window when connected to iMac.  does this mean my device is no longer supported by iTunes? or incompatible with OSX?

    Hello stiannac
    Check out the article below for troubleshooting to get your iPod showing back up on your iMac
    iPod not recognized in iTunes and Mac desktop
    http://support.apple.com/kb/ts1410
    Thanks for using Apple Support Communities.
    Regards,
    -Norm G.

  • OS X Lion gets kernel panic when connecting via CIFS

    A customer of ours has problems with OS X Lion clients that get kernel panic when connecting via CIFS (Novell OES server).
    Any new on this issue?
    Tycho Sjgren
    Apoio AB

    Originally Posted by tychosjogren
    Sorry for the late response - had to check a few things with the customer.
    They use the latest OES version with all the latest sp and patches applied. They have even tested with the an OES 11 beta with the same result. The OS run as a VM on VMware in 64 bit mode attached to a SAN. Has also been tested as a plain install without VMware. The Lion version is 10.7.2.
    This is how the problem occurs:
    1. Mount the CIFS share - no problems
    2. Use the share - no problems
    3. If the network connection drops you get a message that the CIFS volume has disappeared and you are asked to unmount it. When you do that you get a kernel panic. You can force the problem to happen by turning of WiFi.
    So it is OES2 but which version (SP1, SP2, or SP3)? Interesting as I'd only heard of this with NetWare 6.5.
    Do you (and anyone else experiencing this issue in this thread) know if this has recently started happening, perhaps after the latest November 2011 Scheduled Maintenance patches were installed?
    I'll hopefully be able to do some testing tomorrow but in the meantime I've asked Novell ...
    HTH.

  • I keep getting the same error when connecting to itune for either update or download. error is we could not complete your itunes store request error 0x800B0101

    I keep getting the same error when connecting to itune for either update or download. error is we could not complete your itunes store request error 0x800B0101.
    My OS is Windows Vista and using Internet Explorer

    I keep getting the same error when connecting to itune for either update or download. error is we could not complete your itunes store request error 0x800B0101.
    My OS is Windows Vista and using Internet Explorer

  • 2009 24-inch iMac 3.06GHz (EMC no. 2267).   I don't get any audio when connecting my Sony HD TV to my iMac via mini DisplayPort. Is there a fix or hardware upgrade?  I'm using a Kanex Mini DisplayPort to HDMI cable w/ audio support.

    2009 24-inch iMac 3.06GHz (EMC no. 2267).   I don't get any audio when connecting my Sony HD TV to my iMac via mini DisplayPort. Is there a fix or hardware upgrade?  I'm using a Kanex Mini DisplayPort to HDMI cable w/ audio support.

    You can connect the audio from your iMac to your TV using a mini jack (like headphones plug) to rca (regular red and white audio connectors used on every TV,DVD, etc) cable.
    On your TV, you need to be able to set the audio for the HDMI input you will use to "analog" and connect the rca end of the cable to the analog inputs on your TV.

  • I had to install a new hard drive on my computer, when I downloaded itunes back onto my computer, none of my songs were there. how do i get them back??

    I had to install a new hard drive on my computer, when I downloaded Itunes, all my music was gone. How do i get my music back? I do not have an Icloud.

    Syncing to a "New" Computer or replacing a "crashed" Hard Drive: Apple Support Communities
    You can redownload iTunes purchases by:
    Downloading past purchases from the App Store, iBookstore, and iTunes Store

Maybe you are looking for

  • Firefox won't let me put info in my work site. Internet Explorer does but I do not want to use it.

    I log on to my work site and Firefox will not let me enter info for the customer. The cursor blinks, but it will not allow me to put anything in the blank. I can go to the same site in IE and it lets me fill in the blanks. How do I do that in Firefox

  • Needed scroll bar in text field

    Hi, I have two text fields continuously. Sometimes either one get expanded. I kept all the fields in subform type positioned. Comments fields are getting enlarged when it has more number of lines. Lets say, If first field get expanded, it override th

  • 3D anomaly in PS CS5

    Hi all! I have a 3ds file, a mere 12mb car modell, that opens easily in PS CS4. PS CS5 finds it self short on RAM with the exact same file and refuses loading it. Other 3ds files open properly..... I fumbled a bit with settings, but to no avail so fa

  • Sales Order Changes within Last 5 Days

    Hi Guys, Has anyone done a query that shows changes made to a sales order within the last 5 days, for example if lines have been added or deleted, items changed, quantity changed or delivery date changed. I suspect I need to bring in all the history

  • Cover flow Causing iOS5 Music App Crash

    Since I've updated to iOS5 on my iPhone4 cover flow in the music app jitters and if I swipe too quickly it becomes increasingly laggy and not smooth at all then it ends up crashing the music app. Any ideas?