Backspace Not Working....iTunes misrepresenting Content

Hi all, i docked my iPod on my new C2D iMac this eve, i started trying to delete stuff from my iPod and the Mac was throwing the move to trash or keep file menu, so out of instinct i was saying keep file. As a result the songs were being removed from the iPod library and not the iPod capacity. I can understand this in terms of OSX but not on a iPod, i then started to use the delete button instead and then i was starting to get the 'Are you sure you want to remove' from the ipod.
I think somethings wrong, this a brand new restore using the US Clock -48 fix.

This my sound too simple, but I just kept clikning on the arrow next to the selected music and it finally "Kicked" in.
I live in Europe ,So Be persistent and don't give up !  Aug. 2013

Similar Messages

  • Script not working in SharePoint content editor webpart

    Hi All,
    <html>
    <head>
    <script type="text/javascript" src="https://www.google.com/jsapi"></script>
    <script language="javascript" type="text/javascript">
    $(document).ready(function () {
    //Call your function here like
    //retrieveListItems();
    ExecuteOrDelayUntilScriptLoaded(retrieveListItems, "SP.js");
    var siteUrl = '/vceo/PMO/EPMO/';
    var close1 = ''; var close2 = ''; var high = ''; var low = ''; var medium = ''; var lowMedium = ''; var mediumHigh = '';
    var open1 = ''; var open2 = ''; var high1 = ''; var low1 = ''; var medium1 = ''; var lowMedium1 = ''; var mediumHigh1 = '';
    var count = 0; var count1 = 0;
    var initiate = 0; var planning = 0; var execution = 0; var closing = 0;
    var sumMinimal = 0; var sumModerate = 0; var sumCritical = 0; var sumSevere = 0;
    var sumHighlyLikely = 0; var sumLikely = 0; var sumSomewhat = 0; var sumUnlikely = 0;
    var sumBudget = 0; var sumCommitted = 0; var sumConsumption = 0;
    function retrieveListItems() {
    alert("Welcome to Dashboard");
    var clientContext = new SP.ClientContext(siteUrl); alert("site url");
    var oList = clientContext.get_web().get_lists().getByTitle('Project Issues and Risks');
    var oList1 = clientContext.get_web().get_lists().getByTitle('Project');
    var oList2 = clientContext.get_web().get_lists().getByTitle('Risk Impact');
    var oList3 = clientContext.get_web().get_lists().getByTitle('Risk Probability'); alert("get by title");
    var camlQuery = new SP.CamlQuery(); var camlQuery1 = new SP.CamlQuery(); var camlQuery2 = new SP.CamlQuery(); var camlQuery3 = new SP.CamlQuery(); var camlQuery4 = new SP.CamlQuery(); var camlQuery5 = new SP.CamlQuery(); var camlQuery6 = new SP.CamlQuery();
    camlQuery.set_viewXml('<View><Query><Where><Eq><FieldRef Name="Project_x0020_Issue_x0020_Status" /><Value Type="Choice">Issue</Value></Eq></Where></Query></View>');
    camlQuery1.set_viewXml('<View><Query><Where><Eq><FieldRef Name="Project_x0020_Issue_x0020_Status" /><Value Type="Choice">Risk</Value></Eq></Where></Query></View>');
    camlQuery2.set_viewXml('<View><Query><Where><Eq><FieldRef Name="Overall_x0020_Status" /><Value Type="Choice">Open</Value></Eq></Where></Query></View>');
    camlQuery3.set_viewXml('<View><Query><Where><Eq><FieldRef Name="Overall_x0020_Status" /><Value Type="Choice">Closed</Value></Eq></Where></Query></View>');
    camlQuery4.set_viewXml('<View><Query><Where><IsNotNull><FieldRef Name="Project_x0020_Code" /></IsNotNull></Where></Query></View>');
    camlQuery5.set_viewXml('<View><Query><Where><IsNotNull><FieldRef Name="Project_x0020_Code" /></IsNotNull></Where></Query></View>');
    camlQuery6.set_viewXml('<View><Query><Where><IsNotNull><FieldRef Name="Project_x0020_Code" /></IsNotNull></Where></Query></View>');
    this.collListItem = oList.getItems(camlQuery); this.collListItem1 = oList.getItems(camlQuery1); this.collListItem2 = oList1.getItems(camlQuery2); this.collListItem3 = oList1.getItems(camlQuery3);
    this.collListItem4 = oList2.getItems(camlQuery4); this.collListItem5 = oList3.getItems(camlQuery5); this.collListItem6 = oList1.getItems(camlQuery6);
    clientContext.load(collListItem); clientContext.load(collListItem1); clientContext.load(collListItem2); clientContext.load(collListItem3); clientContext.load(collListItem4); clientContext.load(collListItem5); clientContext.load(collListItem6);
    clientContext.executeQueryAsync(Function.createDelegate(this, this.onQuerySucceeded), Function.createDelegate(this, this.onQueryFailed));
    alert("retrieve list");
    function onQuerySucceeded(sender, args) {
    alert("succeed");
    var listItemEnumerator = collListItem.getEnumerator(); var listItemEnumerator1 = collListItem1.getEnumerator(); var listItemEnumerator2 = collListItem2.getEnumerator();
    var listItemEnumerator3 = collListItem3.getEnumerator(); var listItemEnumerator4 = collListItem4.getEnumerator(); var listItemEnumerator5 = collListItem5.getEnumerator(); var listItemEnumerator6 = collListItem6.getEnumerator();
    var sumClose = 0; var sumClose1 = 0; var sumHigh = 0; var sumMedium = 0; var sumLow = 0; var sumLowMedium = 0; var sumMediumHigh = 0;
    var sumOpen = 0; var sumOpen1 = 0; var sumHigh1 = 0; var sumMedium1 = 0; var sumLow1 = 0; var sumLowMedium1 = 0; var sumMediumHigh1 = 0;
    while (listItemEnumerator.moveNext()) { var oListItem = listItemEnumerator.get_current(); sumClose += oListItem.get_item('Close'); sumOpen += oListItem.get_item('Open'); sumHigh += oListItem.get_item('High'); sumMedium += oListItem.get_item('Medium'); sumLow += oListItem.get_item('Low'); sumLowMedium += oListItem.get_item('LowMedium'); sumMediumHigh += oListItem.get_item('MediumHigh'); }
    while (listItemEnumerator1.moveNext()) { var oListItem1 = listItemEnumerator1.get_current(); sumClose1 += oListItem1.get_item('Close'); sumOpen1 += oListItem1.get_item('Open'); sumHigh1 += oListItem1.get_item('High'); sumMedium1 += oListItem1.get_item('Medium'); sumLow1 += oListItem1.get_item('Low'); sumLowMedium1 += oListItem1.get_item('LowMedium'); sumMediumHigh1 += oListItem1.get_item('MediumHigh'); }
    while (listItemEnumerator4.moveNext()) { var oListItem4 = listItemEnumerator4.get_current(); sumMinimal += oListItem4.get_item('Minimal'); sumModerate += oListItem4.get_item('Moderate'); sumSevere += oListItem4.get_item('Severe'); sumCritical += oListItem4.get_item('Critical'); }
    while (listItemEnumerator5.moveNext()) { var oListItem5 = listItemEnumerator5.get_current(); sumUnlikely += oListItem5.get_item('Unlikely'); sumSomewhat += oListItem5.get_item('Somewhat'); sumLikely += oListItem5.get_item('Likely'); sumHighlyLikely += oListItem5.get_item('HighlyLikely'); }
    while (listItemEnumerator6.moveNext()) { var oListItem6 = listItemEnumerator6.get_current(); sumBudget += oListItem6.get_item('Project_x0020_Budget_x0020_Amoun'); sumCommitted += oListItem6.get_item('Committed_x0020_Budget'); }
    count = this.collListItem2.get_count();
    count1 = this.collListItem3.get_count();
    while (listItemEnumerator2.moveNext()) {
    var oListItem2 = listItemEnumerator2.get_current();
    var stat = oListItem2.get_item('Project_x0020_Status');
    if (stat == "Intiation") {
    initiate = initiate + 1
    if (stat == "Planning") {
    planning = planning + 1
    if (stat == "Execution") {
    execution = execution + 1
    if (stat == "Closing") {
    closing = closing + 1
    //alert("initiate" + initiate); alert("planning" + planning); alert("execution" + execution); alert("closing" + closing);
    //alert("countOpen" + count); alert("closed:" + count1);
    window.close1 = sumClose; window.close2 = sumClose1; window.high = sumHigh; window.low = sumLow; window.medium = sumMedium; window.mediumHigh = sumMediumHigh; window.lowMedium = sumLowMedium;
    window.open1 = sumOpen; window.open2 = sumOpen1; window.high1 = sumHigh1; window.low1 = sumLow1; window.medium1 = sumMedium1; window.mediumHigh1 = sumMediumHigh1; window.lowMedium1 = sumLowMedium1;
    drawChart();
    function onQueryFailed(sender, args) { alert('Request failed.. ' + args.get_message() + '\n' + args.get_stackTrace()); }
    google.load("visualization", "1", { packages: ["corechart"] });
    function drawChart() {
    var data = google.visualization.arrayToDataTable([['Task', 'Issues'], ['Close', window.close1], ['Open', window.open1]]);
    var data1 = google.visualization.arrayToDataTable([['Task', 'Risks'], ['Close', window.close2], ['Open', window.open2]]);
    var data2 = google.visualization.arrayToDataTable([['Program', 'High', 'Medium-High', 'Medium', 'Low-Medium', 'Low'], ['Category', window.high, window.mediumHigh, window.medium, window.lowMedium, window.low]]);
    var data3 = google.visualization.arrayToDataTable([['Program', 'High', 'Medium-High', 'Medium', 'Low-Medium', 'Low'], ['Category', window.high1, window.mediumHigh1, window.medium1, window.lowMedium1, window.low1]]);
    var data4 = google.visualization.arrayToDataTable([['Project', 'Status'], ['Closed', count1], ['Open', count]]);
    var data5 = google.visualization.arrayToDataTable([['Project', 'Status'], ['Initiation', initiate], ['Planning', planning], ['Execution', execution], ['Closing', closing]]);
    var data6 = google.visualization.arrayToDataTable([['Program', 'Impact'], ['Minimal', sumMinimal], ['Moderate', sumModerate], ['Severe', sumSevere], ['Critical', sumCritical]]);
    var data7 = google.visualization.arrayToDataTable([['Program', 'Probability'], ['Highly Likely/Probable(76%-100%)', sumHighlyLikely], ['Likely(51%-76%)', sumLikely], ['Somewhat Likely(26%-50%)', sumSomewhat], ['Unlikely/Improbable(0%-25%)', sumUnlikely]]);
    var data8 = google.visualization.arrayToDataTable([['Project', 'Budget'], ['Approved', sumBudget], ['Committed', sumCommitted]]);
    var options = { title: 'Program Issues', width: 200, height: 300, legend: 'bottom', pieSliceText: 'value', pieStartAngle: 180, };
    var options1 = { title: 'Program Risks', width: 200, height: 300, legend: 'bottom', pieSliceText: 'value', pieStartAngle: 180, };
    var options2 = { width: 200, height: 200, legend: { position: 'top', maxLines: 3 }, bar: { groupWidth: '25%' }, isStacked: true, vAxis: { title: 'Open', titleTextStyle: { color: 'red' } } };
    var options3 = { width: 200, height: 200, legend: { position: 'top', maxLines: 3 }, bar: { groupWidth: '25%' }, isStacked: true, vAxis: { title: 'Open', titleTextStyle: { color: 'red' } } };
    var options4 = { title: 'Project Status', width: 225, height: 300, legend: 'bottom', pieSliceText: 'value', pieStartAngle: 180, };
    var options5 = { width: 175, height: 200, legend: { position: 'top', maxLines: 10 }, pieSliceText: 'value', };
    var options6 = { title: 'Program Risk Impact', width: 300, height: 300, legend: 'right', pieSliceText: 'value', };
    var options7 = { title: 'Program Risk Probable', width: 300, height: 300, legend: 'right', pieSliceText: 'value', };
    var options8 = { title: 'Project Budget', width: 300, height: 300, legend: 'bottom', pieSliceText: 'value', };
    var chart = new google.visualization.PieChart(document.getElementById('chart_div3'));
    chart.draw(data, options);
    var chart1 = new google.visualization.PieChart(document.getElementById('chart_div'));
    chart1.draw(data1, options1);
    var chart2 = new google.visualization.ColumnChart(document.getElementById('chart_div1'));
    chart2.draw(data2, options2);
    var chart3 = new google.visualization.ColumnChart(document.getElementById('chart_div2'));
    chart3.draw(data3, options3);
    var chart4 = new google.visualization.PieChart(document.getElementById('chart_div4'));
    chart4.draw(data4, options4);
    var chart5 = new google.visualization.PieChart(document.getElementById('chart_div5'));
    chart5.draw(data5, options5);
    var chart6 = new google.visualization.PieChart(document.getElementById('chart_div6'));
    chart6.draw(data6, options6);
    var chart7 = new google.visualization.PieChart(document.getElementById('chart_div7'));
    chart7.draw(data7, options7);
    var chart8 = new google.visualization.ColumnChart(document.getElementById('chart_div8'));
    chart8.draw(data8, options8);
    </script>
    </head>
    <body>
    <table >
    <tbody>
    <tr>
    <td id="chart_div8" colspan="2" style="border-bottom:ridge;border-left:ridge;border-top:ridge"></td>
    <td id="chart_div4" style="border-bottom:ridge;border-left:ridge;border-top:ridge"></td>
    <td id="chart_div5" style="border-bottom:ridge;border-right:ridge;border-top:ridge"></td>
    </tr>
    <tr>
    <td id="chart_div" style="border-bottom:ridge;border-left:ridge;"></td>
    <td id="chart_div2" style="border-bottom:ridge;"></td>
    <td id="chart_div3" style="border-bottom:ridge;border-left:ridge;"></td>
    <td id="chart_div1" style="border-bottom:ridge;border-right:ridge""></td>
    </tr>
    <tr>
    <td id="chart_div6" colspan="2" style="border-bottom:ridge;border-left:ridge;"></td>
    <td id="chart_div7" colspan="2" style="border-bottom:ridge;border-left:ridge;border-right:ridge"></td>
    </tr>
    </tbody>
    </table>
    </body>
    </html>
    This content editor webpart not working in sharepoint page. Once I checked out to the page then chart is working. When i checkedin function not get called. How to fix this?
    THanks in advance!

    In SharePoint 2013, sp.js and sp.runtime.js does not load on the page in published mode. You need to explicitly load these files. You can check using IE developer tools in the Script section that in published mode these files are missing.
    In order to fix this issue explictly refer these two js files on your page.
    <script type="text/javascript" src="_layouts/15/sp.runtime.js"></script>
    <script type="text/javascript" src="_layouts/15/sp.js"></script>
    Geetanjali Arora | My blogs |

  • Mac Book Software Update not working, iTune will not update because of that, iPhone 4 won't connect to iTunes because iTunes is not updated. Mac v.10.5.8, iTunes v.10.5.2, iPhone4 iOS 6

    Mac Book Software Update not working (Software Update does not have any new software for your computer at this time), my current MacBook version is 10.5.8.
    As a result I can't update iTunes, version 10.5.2  (This software requiers Mac OS X version 10.6.8 or later)
    Now when I connect my iPhone 4, version iOS 6 iTunes can't connect to iPhone (The iPhone "XXXXX's iPhone" cannot be used because it requiers iTunes version 10.6.3 or later.)
    so in a nutshell can't use iphone 4, because iTune is not updated and will not  update because Mac Book is not up to date and will not update either.
    Please help.
    Thank you
    bt465

    Welcome to Apple Support Communities
    Snow Leopard is a paid upgrade. http://support.apple.com/kb/sp575 Call Apple to buy Snow Leopard. Then, make a backup, insert the DVD and upgrade. When it finishes, open  > Software Update

  • Backspace not working

    On some of my systems, when I am in SQL*Plus, the backspace does not work. There must be a setting in the login environment, that affects this.
    How can I fix this in the profile, without having to type in something everytime I log in ?
    This is on Linux SLES9, running Oracle 10G.

    What is the result of stty on the Linux becoming?
    ($ is prompt, do not type $, type only stty)
    $ stty
    speed 9600 baud; line = 0;
    erase = ^H;
    -brkint -imaxbel
    or
    $ stty
    speed 9600 baud; line = 0;
    erase = ^?;
    -brkint -imaxbel
    If it was the latter, please try this.
    $ stty erase ^H
    If this made your SQL*Plus correctly,
    then please put it in login scripts on Linux for your convenience.
    (ex .profile, .bash_profile, .login etc.)

  • pcs:insert not working correctly in Content Server 6.0

    Hello,
    I'm having a difficult time getting the <pcs:insert> tag working in Content Server 6.0. In the previous version of Content Server, I used <pcs:insert expr="mycontentitem"></pcs:insert> and the content item that I want inserted shows up fine. Now when I try it in Content Server 6.0, the inserted (child) content item tries to reference the parent's content item variables, giving me nothing. Also, I have tried using <pcs:insert path="mycontentitem"> to the same result.
    Any help, or example of a working <pcs:insert> for Content Server 6.0 would be a lifesaver!
    Thank you,
    PK

    We have the same problem with "INSERT" tags not working in the newest version CS6.0. I am a bit surprised that anyone had replied to your post to give us some explanations or directions how to solve the problem. It looks as a serious problem to me.

  • Lync 2013 (Oct CU update) Dial-in Webpage not working. This content cannot be displayed in a frame

     today we found an issue with our Lync 2013 deployment while investigating another issue.
    ok se we have/had Lync 2013 setup along with IIS ARR. All seems to be working fine.
    with the exception of our Dial in page.
    no matter what i do it does not work. We have a near identical setup for our other domain & they have no issues. (i copied the Bin folder from the "C:\Program Files\Microsoft Lync Server 2013\Web Components\Dialin Page\Ext" of the working site.
    then tracked it down to the "\bin\" folder. which contains the "Micrsoft.RTC.nternal.Conference,dll"
    file. If i copy this into our US folder the site works as it should.
    So now the kicker....our US file is the newest (5.0.8308.556) where as the other domain is "5.0.8308.301" 
    with that said, & with our correct version (.556) of the conference.dll file, this is the page that loads...which we can then click the link & it opens our conference page as it should.
    This content cannot be displayed in a frame
    To help protect the security of information you enter into this website, the publisher of this content does not allow it to be displayed in a frame.
    What you can try:
    Open this content in a new window
    So somthing is a miss, & i think it is related to the Oct CU....but have no evidence at the moment.....
    any help would be great

    yes, IE will shows the warning page, but then lets you click the link.
    chrome shows noting. When running Debugger, chrome states:
    Refused to display 'https://fepool.company.local/Dialin/Conference.aspx' in a frame because it set 'X-Frame-Options' to 'SAMEORIGIN'..
    the issue is definatley stemming from the new .dll from the CU update. as i compared it against the older version. the newer version is throwing the "X-Frame-options:
    SAMEORIGIN"....
    I am not sure if that is intended or not.
    also i have not been able to find out what the specific purpose of the conferenceproxy.aspx file that the dialin page
    uses as its default document. It appears that the page only stands to serve up the Conference.aspx page in the Iframe..
    if we swap our default page to be the Conference.aspx all works as expected.

  • Hide or show the Artist and Album columns Command +B not working -itunes 11

    Command +B 
    Shortcut
    Hide or show the Artist and Album columns  is not working no respond..-itunes 11  my desktop working but not my laptop MBA.
    why is that?
    anyone help me?

    oh ok.. itunes 11.0.1 update fixed this issue  ... !!

  • Buy App button not working iTunes 10.6 Windows 7 (used to work)

    Hello Community - color me stumped beyond compare...
    I can no longer make purchases of apps (free or otherwise) using my Apple ID on iTunes 10.6.1.7 on Windows 7.  It used to work as of Tue 10/2/2013 around 8pm. Later that evening it stopped working and hasn't allowed a purchase since.  Clicking on FREE APP button or {PRICE} BUY APP button, visually makes the appearance that the button is clicked but doesn't do anything after that.
    If I'm logged in to iTunes using my account - it visually makes the appearance that it the purchase button is clicked and does nothing.  If I'm logged out, it visually makes the appearance that it is clicked and it doesn't ask for me to log in like it used to.
    I've tried several solutions, all of them fails.  I've conducted closed experiments, and still cannot isolate the solution.
    Not wanting to go to iTunes 11, I upgraded to 10.6.3 (64x version) iTunes for Windows 7, and got the same non-responsive results.
    I've had someone try to download on their system (they were using iTunes 11 on their PC) and it downloadeds using my Apple ID account.
    I've rolled my PC's Win 7 system settings to a previous day when it was working, and it's still not working back to iTunes 10.6.1.7.
    I've check iTunes diagnostics / firewall settings and although the iTunes diagnosis says: "Windows Firewall is on." AND it says "iTunes is NOT enabled in Windows Firewall." this is not accurate as iTunes is showing firewall enabled in Windows. (see image)
    I've reset my modem/router (which is wired to this PC)... still no downloads.
    I'm just stumped - anyone else experiencing similar issues or has anothe idea for solution?
    I've ask for Apple's help but have not heard anything in 24+ hours, so I'm reaching out to the community.
    Thanks in advance!
    PS: The downloads have also stopped on an older laptop using my ID on an older iTunes using wireless to the same modem/router whereas downloads used to work on that laptop.

    UPDATE: Welp - my solution was downloading iTunes 11; it restored the ability to purchase items.  On the minus side I already miss coverflow, but on the plus side my appnabbing hobby is back on track... 240 downloads later.  Missed out on 20 travel apps and a smattering of some others that went free and went back to sale price during the 2+ day "outage", but that's alright - they'll be back to free in another 2 years.
    The rest of iTunes 11 is not as bad as I thought; it will take some time getting used to it.  You might miss coverflow display view as you only get TILES view or LIST view to choose from.  Also, within the Apps Library it does not give you a count of the number of highlighted apps like iTunes 10 did.  I'm sure that was an oversight in design - likely to comeback in another version.
    Although you can no longer double-click a category to create break-out windows as iTunes 10 allowed, I was happy to see you can get a separate download window if you click the DOWN ARROW next to search field while something is downloading.  That's a plus.
    Apple Support has only reached out once during the 2+ days to suggest logging out of iTunes, close the program, and re-launch / login and try to download again. (by the way, that did not work).  If I waited one day apiece to try out seven different trouble-shoots one at a time, I'd be a week into trouble-shooting with no solution in sight.
    If you are fearful as I was of iTunes 11, don't be.  It works... just not like how you remember.  Plus you can always go back and get a previous version of iTunes for PC - just Google keywords: "archived versions of itunes pc" (without quotes).  The first hit is comprehensive.  The site used to have MAC archived versions, but no more; I have not tried searching for Mac archive.
    Cheers!

  • BackSpace not working in textfield

    Hi everybody!
    I have a textfield that only lets enter numeric chars. It extends from JTextField.
    The problem is that the Backspance key is not working. I see that is detected in the processKey Event but it does nothing.
    I have seen some topics about that there is a bug in jdk1.3 and that a solution is using keyTyped instead. But I don't know how to do this.
    May someone help me?
    Thanxxxx

    Hello,
    i think the best way is to to use a custom PlainDocuments for your TextField:
    import javax.swing.*;
    import javax.swing.text.*;
    public class NumberField extends JTextField {
         public NumberField(){
              setDocument(new PlainDocument(){
                   public void insertString(int offset, String str, AttributeSet a)throws BadLocationException{
                        try{
                             Double.parseDouble(str);
                        }catch(NumberFormatException nfe){return;}
                        super.insertString(offset,str,a);
         public static void main(String[] args) {
              JFrame f=new JFrame();
              f.setBounds(0, 0, 100, 50);
              NumberField nf=new NumberField();
              f.getContentPane().add(nf);
              f.setVisible(true);
    }Regards,
    Tim

  • G,h and backspace not working

    hi,
    i am using hp notebook 2000 series past 5 month.
    suddenly switches "g","h" and backspace stopped working.
    My BIOS configue is : F.26 -02/21/2013(088A120000305910000620100)
    do let me know the correct solution.
    regards,
    chandresh.

    Hi,
    While this may well be a hardware issue, it's always worth trying the following.
    Open windows Control Panel, open Device Manager, expand Keyboards, right click on Standard PS/2 Keyboard and select Uninstall.
    When this has completed, shut down the notebook - if you're running Window 8/8.1, do this by holding down the left Shift key as you click on Shutdown to temporarily prevent a hybrid boot. 
    When done, unplug the AC Adapter and then remove the battery.  Hold down the Power button for 20 seconds.  Re-insert the battery and plug in the AC Adapter.
    Tap away at the esc key as you start the notebook to see if this will launch the Start-up Menu - if it does, select f10 to enter the bios menu.  Press f5 to load the defaults ( this is sometimes f9, but the menu at the bottom will show the correct key ), use the arrow keys to select 'Yes' and hit enter.  Press f10 to save the setting and again use the arrow keys to select 'Yes' and hit enter.
    Regards,
    DP-K
    ****Click the White thumb to say thanks****
    ****Please mark Accept As Solution if it solves your problem****
    ****I don't work for HP****
    Microsoft MVP - Windows Experience

  • Help! Slideshow Autoplay does not work on ipad content viewer.

    I created a dps app using Adobe Creative Cloud on a PC running Windows 8.  It has a multi-state object of text to fade in and out. It works properly on a windows tablet but not on my ipad.  I'm aware this question has been asked before and I tried all of the suggested fixes and none have worked for me. Are there anymore bug fixes.

    Darn, I was hoping you could read my mind, lol. The problem is I created an article in DPS that has 4 multi-state objects on one page. 3 of the multi-state objects (button-like icons that change color when you tap/swipe them) are set to tap to play, the 4th multi-state object, a slideshow with 7 states each containing text that's supposed fade in and out 1 by 1 on a loop, is set to Autoplay upon article opening. This all works great on the desktop preview and once its downloaded to Adobe Content Viewer on my Windows Tablet.  However, when I download it to the Adobe Content View on my iPad and try to run the same app the 3 tap to play icon buttons work fine but the multi-state text Slideshow will not autoplay. It will only show the first state (which is a text box). I'm using Adobe Creative Cloud Indesign to create the article on a pc running Windows 8. I recently ran updates on my adobe software. Any insight???

  • CTRL_ALT-BAckspace not working in KDE4 [SOLVED]

    Hi,
    I use KDE4 (not modded) and have noticed recently that CTRL-ALT-Backspace won't work.  I use it infrequently to jump to terminal mode so I'm not sure when this started.  Is there a setting somewhere for KDE4 or KDM that I can alter or is this an issue with X???
    Thanks
    Last edited by MillTek (2009-05-09 22:17:17)

    Have you enabled the functionality in x since the upgrade?
    http://wiki.archlinux.org/index.php/Xor … 27t_exit_X

  • I have tried to update my iPhone 5c and it is stuck on "connect to iTunes" I have tried turning it off and then back on and it will not work. iTunes does not seem to detect it while it is plugged in.

    I have tried to update my phone and it is stuck on "connect to iTunes" I have plugged it up to the wall charger because i have read that the new update can cause a battery drain and i have tried to reset it. None of this is working. Please help.

    Device not detected in iTunes for Windows

  • Trying to import a CD but Gracenote not working.Itunes will not get cd info

    When I put in an "original" cd, it shows as an audio cd in the sources, then pulls up tracks but will not pull up any cd info. I tried to "get info" and the gracenote box appeared for just a couple seconds and then nothing. I dont get an error - just nothing.
    I use McAfee anti virus and firewall. itunes is listed in my allowed list for firewall.
    I connect to the internet via verizon broadband wireless
    When I click the get info, I can see the verizon internet is working.
    I have tried several cd's and itunes will not find the track or album titles for any of them.
    PLEASE HELP!!!
    Thanks!

    I've solved the problem! My verizon broadband program has something called "Venturi" on it. Venturi compresses data so pages are supposed to load faster. I disabled this funtion (when you clik open the broadband program instead of connecting right to the internet I found a preferences or tools section & within that was a tab for Venturi. I unchecked the box that said to use Venturi). Now as soon as I put a disc in itunes grabs the info without any prompting.
    I closed my internet connection and tried to reopen but it didnt load, so I re checked the venturi and it loaded. I'll play with that again when I get home. Instead of rechecking the venturi maybe I could have just refreshed the page. I dont know. Either way, as long as Venturi is disabled while using itunes everything works great!

  • Drag and drop album art not working / iTunes 7.0.1.8 & WinXP SP2

    Drag and dropping album art isn't working for me after upgrading to iTunes 7 in WinXP SP2. Anyone else experience this problem?
    Update: Drag and drop works from a webpage but not from Windows explorer or Windows Picture & Fax Viewer.

    You only need an iTunes account to automatically get artwork. Usually artwork for CDs you import yourself is gotten from somewhere else. I tend to use allmusic.com. Occasionally I will have to use google to find the artwork though.
    Have never tried to add artwork from anywhere but a webpage though.

Maybe you are looking for

  • Soundblaster Wireless Music - receiver is connected but no so

    I have a SB Wireless music receiver (purchased in March '05). It was working just fine for 3 months, then nothing. After several attempts reistalling, rebooting, etc (including several emails back and forth with Creative Americas Cusotmer Support, it

  • Top button stopped working after warranty but I am told on models that qualify they will still repair for free

    Hello, As it seemingly always works in my life my top button finally got the issue that all iPhones have. The fact it's the well known issue that after approximately a year the top button ceases to work. I was told if your phone qualifies however the

  • HTML doesn't display after generating the HTML files.

    There don't seem to be any errors during the generation of the HTML help project, but when I view the results, the content doesn't display and the window displays the following: Navigation to the webpage was canceled

  • Installing updates on Bridge an PS cc

    I have just subscribed to cc for PS and LR5 only. I am on Mac OS X 10.7.5. LR5 installed without a problem. PSCC installation seemed to stall at 97% and had to shutdown to gain control again. PS opens up and works OK as far as I can see. Bridge did e

  • Blackberry ID Update issues

    I have Blackberry Tour 9630 and I was using Blackberry App World 2.0.0.38. I tried downloading apps on App world and it asked me to upgrade before I can do any downloads. After doing the upgrade to Blackberry World 4.3.0.32. I cannot logon using the