How to delete dead links

Hello
I would like to delete dead links in a PDF document. I use Visual C++ to create my code and generate an API plug-in for Acrobat 8. Can you give me a sample code to do it.
Thanks
David

You are going to need to examine the Cos object for each link and see
whether it meets your requirements of "dead" (which you've really just
moved to "invalid destination" - when is a destination invalid?)
The PDF Reference describes the types of PDF actions. There are more
than you think, and some (JavaScript) virtually defy analysis. In
broad terms the plug-in would call PDDocGetPage / PDPageRelease for
each page in turn, then iterate through the Annots objects. There is a
PDAnnot API, but going to the Cos API is likely to be needed in the
end.
Be sure to use an error handler so you never miss PDPageRelease, even
if there is an error in the PDF: this is very important.
Aandi Inston

Similar Messages

  • How to delete the links in the reading list

    How to delete the links in the reading list

    and if they don't delete, what's the next step?  I've stopped sync to iCloud for my iPad, but all of the articles say that they are "Waiting", and won't delete.

  • How to delete public link to CC folder?

    how to delete public link to CC folder?

    Choose the Send Link option again for that folder. When the Send Link dialog opens click the Remove Public Link button.

  • How to delete "Nav-Link" ??

    Hello,
    I would like to know how to delete "Nav Link" on Safari (Macbook Pro).
    Some words are green underlined.
    Help me!

    You refreshed (reloaded) the webpage(s) after switching extensions off ?. (it's been due to that before)
    If so, copy the line below (lncluding the initial ~), then paste it into Finder - Go menu - Go to Folder, & click Go.
    ~/Library/Internet Plug-Ins
    Are there any files shown in the window that opens ?. If so, move them to the desktop, quit Safari, then check again.
    Some users have found advertising to be caused by Glims : is that something you have ?.

  • Acrobat Pro 7.1 how to delete url link from pdf doc

    I accidently selected the wrong text when I set up a link to a web page. Nothing I do will allow me to delete the linking capability. When I click on the link, it takes me to "no such address" message in browser.
    When I search Arcobat help, it appears that the instructions are for a newer version of the software, because I don't get the same tools that it tells me to use.
    I've used the Advanced Linking tool that supposedly allows to delete all links in document, but it doesn't work. Links still there.
    Anyone know how to do what I need done?
    Thanks.

    Hi,
    I don't have Acrobat 7.1 handy but you could see if this helps...
    Make sure the Editing toolbar is visible. Select the Link tool in the toolbar. Clicking on the link in the document should select it and let you edit or delete it.
    -Sakshi

  • How to delete web link apps?

    I have several obsolete Web Link "apps" on my iPad. When managing apps through iTunes I am unable to delete them. While I can move them to a "Junk" folder, how can I just completely delete them?

    Solved the problem by deleting the link on the iPad itself (wiggley "X"), not through iTunes.

  • How to delete broken links from robohelp 9

    Currently I'm using Robohelp 9, unable to perform following actions in the project:
    1. Permananetly delete broken links from the project.
    2. Updated content and file are shown in search but not in index and in index broken links files are shown.
    Kindly tell me how to solve this issue , as my project is too big and unable to delete broken links as they are re-appearing again in the 'broken link' folder after deleted by me.

    Hi Rick/Swaraj,
    Thanks for replying!
    I would like to tell you that , I'm using a robohelp 9 project and have generated .CHM file and in the .CHM file all stated errors are showing.
    Also , I'm unable to find .XPJ and .CPD files.
    Kindly tell me in project where these files are located and if there is any other option to solve the problem?
    I didn't find too the repair option , there is a restore option after left click, I'm restoring the broken link and then deleting them. But the deleted files are reappearing in the broken link folder. Kindly tell me is there any option to delete all files from broken link folder as they are not required.

  • How can I delete the link to part of this script?

    Hi there,
    Can anyone tell me how to delete the 'link to' part of this
    JavaScript as I am using this slideshow from Dynamic Drive however
    I don't want to be able to click on the pictures and be taken to
    another website. I'm not familiar with JavaScript so any help would
    be much appreciated.
    Thanks!
    <script src="SpryAssets/SpryMenuBar.js"
    type="text/javascript"></script>
    <script type="text/javascript">
    * Ultimate Fade-In Slideshow (v1.51): © Dynamic Drive (
    http://www.dynamicdrive.com)
    * This notice MUST stay intact for legal use
    * Visit
    http://www.dynamicdrive.com/
    for this script and 100s more.
    var fadeimages=new Array()
    //SET IMAGE PATHS. Extend or contract array as needed
    fadeimages[0]=["restaurantexterior1.jpg"]
    fadeimages[1]=["restaurantinterior2.jpg"]
    fadeimages[2]=["restaurantinteriorwall.jpg"]
    var fadebgcolor="white"
    var fadeimages2=new Array()
    //SET IMAGE PATHS. Extend or contract array as needed
    fadeimages2[0]=["restaurantinteriorframed.jpg"]
    fadeimages2[1]=["restaurantsign.jpg"]
    fadeimages2[2]=["tablefortwo.jpg"]
    var fadebgcolor="white"
    ////NO need to edit beyond here/////////////
    var fadearray=new Array() //array to cache fadeshow instances
    var fadeclear=new Array() //array to cache corresponding
    clearinterval pointers
    var dom=(document.getElementById) //modern dom browsers
    var iebrowser=document.all
    function fadeshow(theimages, fadewidth, fadeheight,
    borderwidth, delay, pause, displayorder){
    this.pausecheck=pause
    this.mouseovercheck=0
    this.delay=delay
    this.degree=10 //initial opacity degree (10%)
    this.curimageindex=0
    this.nextimageindex=1
    fadearray[fadearray.length]=this
    this.slideshowid=fadearray.length-1
    this.canvasbase="canvas"+this.slideshowid
    this.curcanvas=this.canvasbase+"_0"
    if (typeof displayorder!="undefined")
    theimages.sort(function() {return 0.5 - Math.random();})
    //thanks to Mike (aka Mwinter) :)
    this.theimages=theimages
    this.imageborder=parseInt(borderwidth)
    this.postimages=new Array() //preload images
    for (p=0;p<theimages.length;p++){
    this.postimages[p]=new Image()
    this.postimages[p].src=theimages[p][0]
    var fadewidth=fadewidth+this.imageborder*2
    var fadeheight=fadeheight+this.imageborder*2
    if (iebrowser&&dom||dom) //if IE5+ or modern browsers
    (ie: Firefox)
    document.write('<div id="master'+this.slideshowid+'"
    style="position:relative;width:'+fadewidth+'px;height:'+fadeheight+'px;overflow:hidden;"> <div
    id="'+this.canvasbase+'_0"
    style="position:absolute;width:'+fadewidth+'px;height:'+fadeheight+'px;top:0;left:0;filte r:progid:DXImageTransform.Microsoft.alpha(opacity=10);opacity:0.1;-moz-opacity:0.1;-khtml- opacity:0.1;background-color:'+fadebgcolor+'"></div><div
    id="'+this.canvasbase+'_1"
    style="position:absolute;width:'+fadewidth+'px;height:'+fadeheight+'px;top:0;left:0;filte r:progid:DXImageTransform.Microsoft.alpha(opacity=10);opacity:0.1;-moz-opacity:0.1;-khtml- opacity:0.1;background-color:'+fadebgcolor+'"></div></div>')
    else
    document.write('<div><img
    name="defaultslide'+this.slideshowid+'"
    src="'+this.postimages[0].src+'"></div>')
    if (iebrowser&&dom||dom) //if IE5+ or modern browsers
    such as Firefox
    this.startit()
    else{
    this.curimageindex++
    setInterval("fadearray["+this.slideshowid+"].rotateimage()",
    this.delay)
    function fadepic(obj){
    if (obj.degree<100){
    obj.degree+=10
    if (obj.tempobj.filters&&obj.tempobj.filters[0]){
    if (typeof obj.tempobj.filters[0].opacity=="number") //if
    IE6+
    obj.tempobj.filters[0].opacity=obj.degree
    else //else if IE5.5-
    obj.tempobj.style.filter="alpha(opacity="+obj.degree+")"
    else if (obj.tempobj.style.MozOpacity)
    obj.tempobj.style.MozOpacity=obj.degree/101
    else if (obj.tempobj.style.KhtmlOpacity)
    obj.tempobj.style.KhtmlOpacity=obj.degree/100
    else if
    (obj.tempobj.style.opacity&&!obj.tempobj.filters)
    obj.tempobj.style.opacity=obj.degree/101
    else{
    clearInterval(fadeclear[obj.slideshowid])
    obj.nextcanvas=(obj.curcanvas==obj.canvasbase+"_0")?
    obj.canvasbase+"_0" : obj.canvasbase+"_1"
    obj.tempobj=iebrowser? iebrowser[obj.nextcanvas] :
    document.getElementById(obj.nextcanvas)
    obj.populateslide(obj.tempobj, obj.nextimageindex)
    obj.nextimageindex=(obj.nextimageindex<obj.postimages.length-1)?
    obj.nextimageindex+1 : 0
    setTimeout("fadearray["+obj.slideshowid+"].rotateimage()",
    obj.delay)
    fadeshow.prototype.rotateimage=function(){
    if (this.pausecheck==1) //if pause onMouseover enabled, cache
    object
    var cacheobj=this
    if (this.mouseovercheck==1)
    setTimeout(function(){cacheobj.rotateimage()}, 100)
    else if (iebrowser&&dom||dom){
    this.resetit()
    var crossobj=this.tempobj=iebrowser?
    iebrowser[this.curcanvas] : document.getElementById(this.curcanvas)
    crossobj.style.zIndex++
    fadeclear[this.slideshowid]=setInterval("fadepic(fadearray["+this.slideshowid+"])",50)
    this.curcanvas=(this.curcanvas==this.canvasbase+"_0")?
    this.canvasbase+"_1" : this.canvasbase+"_0"
    else{
    var
    ns4imgobj=document.images['defaultslide'+this.slideshowid]
    ns4imgobj.src=this.postimages[this.curimageindex].src
    this.curimageindex=(this.curimageindex<this.postimages.length-1)?
    this.curimageindex+1 : 0
    fadeshow.prototype.resetit=function(){
    this.degree=10
    var crossobj=iebrowser? iebrowser[this.curcanvas] :
    document.getElementById(this.curcanvas)
    if (crossobj.filters&&crossobj.filters[0]){
    if (typeof crossobj.filters[0].opacity=="number") //if IE6+
    crossobj.filters(0).opacity=this.degree
    else //else if IE5.5-
    crossobj.style.filter="alpha(opacity="+this.degree+")"
    else if (crossobj.style.MozOpacity)
    crossobj.style.MozOpacity=this.degree/101
    else if (crossobj.style.KhtmlOpacity)
    crossobj.style.KhtmlOpacity=this.degree/100
    else if (crossobj.style.opacity&&!crossobj.filters)
    crossobj.style.opacity=this.degree/101
    fadeshow.prototype.startit=function(){
    var crossobj=iebrowser? iebrowser[this.curcanvas] :
    document.getElementById(this.curcanvas)
    this.populateslide(crossobj, this.curimageindex)
    if (this.pausecheck==1){ //IF SLIDESHOW SHOULD PAUSE
    ONMOUSEOVER
    var cacheobj=this
    var crossobjcontainer=iebrowser?
    iebrowser["master"+this.slideshowid] :
    document.getElementById("master"+this.slideshowid)
    crossobjcontainer.onmouseover=function(){cacheobj.mouseovercheck=1}
    crossobjcontainer.onmouseout=function(){cacheobj.mouseovercheck=0}
    this.rotateimage()
    </script>

    Hello,
    It looks like you already removed some code from the
    fadeimages Array.
    In the fadeimages Array, the script is looking for three
    things: the image
    path, the link and the target.
    Since you don't want a link and don't need a target, just
    insert an "empty
    value" for each of these.
    You only have the image path in the code, so the script fails
    "when it
    doesn't find the other two things it's looking for"..
    Change this:
    fadeimages[0]=["restaurantexterior1.jpg"]
    fadeimages[1]=["restaurantinterior2.jpg"]
    fadeimages[2]=["restaurantinteriorwall.jpg"]
    To this:
    fadeimages[0]=["restaurantexterior1.jpg", "", ""]
    fadeimages[1]=["restaurantinterior2.jpg", "", ""]
    fadeimages[2]=["restaurantinteriorwall.jpg", "", ""]
    "" means no value, so now the script finds the image path,
    then finds the
    link which is empty and lastly, finds the target which is
    empty.
    Since it finds the three things it's looking for, it
    processes.
    Take care,
    Tim
    "Bashful Girlie" <[email protected]> wrote
    in message
    news:[email protected]...
    > Hi there,
    >
    > Can anyone tell me how to delete the 'link to' part of
    this JavaScript as
    > I am
    > using this slideshow from Dynamic Drive however I don't
    want to be able to
    > click on the pictures and be taken to another website.
    I'm not familiar
    > with
    > JavaScript so any help would be much appreciated.
    >
    > Thanks!
    >
    > <script src="SpryAssets/SpryMenuBar.js"
    type="text/javascript"></script>
    > <script type="text/javascript">
    >
    > /***********************************************
    > * Ultimate Fade-In Slideshow (v1.51): © Dynamic
    Drive
    > (
    http://www.dynamicdrive.com)
    > * This notice MUST stay intact for legal use
    > * Visit
    http://www.dynamicdrive.com/
    for this script and 100s more.
    > ***********************************************/
    >
    > var fadeimages=new Array()
    > //SET IMAGE PATHS. Extend or contract array as needed
    > fadeimages[0]=["restaurantexterior1.jpg"]
    > fadeimages[1]=["restaurantinterior2.jpg"]
    > fadeimages[2]=["restaurantinteriorwall.jpg"]
    >
    > var fadebgcolor="white"
    >
    > var fadeimages2=new Array()
    > //SET IMAGE PATHS. Extend or contract array as needed
    > fadeimages2[0]=["restaurantinteriorframed.jpg"]
    > fadeimages2[1]=["restaurantsign.jpg"]
    > fadeimages2[2]=["tablefortwo.jpg"]
    >
    > var fadebgcolor="white"
    >
    > ////NO need to edit beyond here/////////////
    >
    > var fadearray=new Array() //array to cache fadeshow
    instances
    > var fadeclear=new Array() //array to cache corresponding
    clearinterval
    > pointers
    >
    > var dom=(document.getElementById) //modern dom browsers
    > var iebrowser=document.all
    >
    > function fadeshow(theimages, fadewidth, fadeheight,
    borderwidth, delay,
    > pause,
    > displayorder){
    > this.pausecheck=pause
    > this.mouseovercheck=0
    > this.delay=delay
    > this.degree=10 //initial opacity degree (10%)
    > this.curimageindex=0
    > this.nextimageindex=1
    > fadearray[fadearray.length]=this
    > this.slideshowid=fadearray.length-1
    > this.canvasbase="canvas"+this.slideshowid
    > this.curcanvas=this.canvasbase+"_0"
    > if (typeof displayorder!="undefined")
    > theimages.sort(function() {return 0.5 - Math.random();})
    //thanks to Mike
    > (aka
    > Mwinter) :)
    > this.theimages=theimages
    > this.imageborder=parseInt(borderwidth)
    > this.postimages=new Array() //preload images
    > for (p=0;p<theimages.length;p++){
    > this.postimages[p]=new Image()
    > this.postimages[p].src=theimages[p][0]
    > }
    >
    > var fadewidth=fadewidth+this.imageborder*2
    > var fadeheight=fadeheight+this.imageborder*2
    >
    > if (iebrowser&&dom||dom) //if IE5+ or modern
    browsers (ie: Firefox)
    > document.write('<div id="master'+this.slideshowid+'"
    >
    style="position:relative;width:'+fadewidth+'px;height:'+fadeheight+'px;overflow:
    > hidden;"><div id="'+this.canvasbase+'_0"
    >
    style="position:absolute;width:'+fadewidth+'px;height:'+fadeheight+'px;top:0;lef
    >
    t:0;filter:progid:DXImageTransform.Microsoft.alpha(opacity=10);opacity:0.1;-moz-
    >
    opacity:0.1;-khtml-opacity:0.1;background-color:'+fadebgcolor+'"></div><div
    > id="'+this.canvasbase+'_1"
    >
    style="position:absolute;width:'+fadewidth+'px;height:'+fadeheight+'px;top:0;lef
    >
    t:0;filter:progid:DXImageTransform.Microsoft.alpha(opacity=10);opacity:0.1;-moz-
    >
    opacity:0.1;-khtml-opacity:0.1;background-color:'+fadebgcolor+'"></div></div>')
    > else
    > document.write('<div><img
    name="defaultslide'+this.slideshowid+'"
    > src="'+this.postimages[0].src+'"></div>')
    >
    > if (iebrowser&&dom||dom) //if IE5+ or modern
    browsers such as Firefox
    > this.startit()
    > else{
    > this.curimageindex++
    >
    setInterval("fadearray["+this.slideshowid+"].rotateimage()",
    this.delay)
    > }
    > }
    >
    > function fadepic(obj){
    > if (obj.degree<100){
    > obj.degree+=10
    > if
    (obj.tempobj.filters&&obj.tempobj.filters[0]){
    > if (typeof obj.tempobj.filters[0].opacity=="number")
    //if IE6+
    > obj.tempobj.filters[0].opacity=obj.degree
    > else //else if IE5.5-
    > obj.tempobj.style.filter="alpha(opacity="+obj.degree+")"
    > }
    > else if (obj.tempobj.style.MozOpacity)
    > obj.tempobj.style.MozOpacity=obj.degree/101
    > else if (obj.tempobj.style.KhtmlOpacity)
    > obj.tempobj.style.KhtmlOpacity=obj.degree/100
    > else if
    (obj.tempobj.style.opacity&&!obj.tempobj.filters)
    > obj.tempobj.style.opacity=obj.degree/101
    > }
    > else{
    > clearInterval(fadeclear[obj.slideshowid])
    > obj.nextcanvas=(obj.curcanvas==obj.canvasbase+"_0")?
    obj.canvasbase+"_0" :
    > obj.canvasbase+"_1"
    > obj.tempobj=iebrowser? iebrowser[obj.nextcanvas] :
    > document.getElementById(obj.nextcanvas)
    > obj.populateslide(obj.tempobj, obj.nextimageindex)
    >
    obj.nextimageindex=(obj.nextimageindex<obj.postimages.length-1)?
    > obj.nextimageindex+1 : 0
    >
    setTimeout("fadearray["+obj.slideshowid+"].rotateimage()",
    obj.delay)
    > }
    > }
    >
    > }
    >
    >
    >
    >
    > fadeshow.prototype.rotateimage=function(){
    > if (this.pausecheck==1) //if pause onMouseover enabled,
    cache object
    > var cacheobj=this
    > if (this.mouseovercheck==1)
    > setTimeout(function(){cacheobj.rotateimage()}, 100)
    > else if (iebrowser&&dom||dom){
    > this.resetit()
    > var crossobj=this.tempobj=iebrowser?
    iebrowser[this.curcanvas] :
    > document.getElementById(this.curcanvas)
    > crossobj.style.zIndex++
    >
    >
    fadeclear[this.slideshowid]=setInterval("fadepic(fadearray["+this.slideshowid+"]
    > )",50)
    > this.curcanvas=(this.curcanvas==this.canvasbase+"_0")?
    > this.canvasbase+"_1" :
    > this.canvasbase+"_0"
    > }
    > else{
    > var
    ns4imgobj=document.images['defaultslide'+this.slideshowid]
    > ns4imgobj.src=this.postimages[this.curimageindex].src
    > }
    >
    this.curimageindex=(this.curimageindex<this.postimages.length-1)?
    > this.curimageindex+1 : 0
    > }
    >
    > fadeshow.prototype.resetit=function(){
    > this.degree=10
    > var crossobj=iebrowser? iebrowser[this.curcanvas] :
    > document.getElementById(this.curcanvas)
    > if (crossobj.filters&&crossobj.filters[0]){
    > if (typeof crossobj.filters[0].opacity=="number") //if
    IE6+
    > crossobj.filters(0).opacity=this.degree
    > else //else if IE5.5-
    > crossobj.style.filter="alpha(opacity="+this.degree+")"
    > }
    > else if (crossobj.style.MozOpacity)
    > crossobj.style.MozOpacity=this.degree/101
    > else if (crossobj.style.KhtmlOpacity)
    > crossobj.style.KhtmlOpacity=this.degree/100
    > else if
    (crossobj.style.opacity&&!crossobj.filters)
    > crossobj.style.opacity=this.degree/101
    > }
    >
    >
    > fadeshow.prototype.startit=function(){
    > var crossobj=iebrowser? iebrowser[this.curcanvas] :
    > document.getElementById(this.curcanvas)
    > this.populateslide(crossobj, this.curimageindex)
    > if (this.pausecheck==1){ //IF SLIDESHOW SHOULD PAUSE
    ONMOUSEOVER
    > var cacheobj=this
    > var crossobjcontainer=iebrowser?
    iebrowser["master"+this.slideshowid] :
    > document.getElementById("master"+this.slideshowid)
    >
    crossobjcontainer.onmouseover=function(){cacheobj.mouseovercheck=1}
    >
    crossobjcontainer.onmouseout=function(){cacheobj.mouseovercheck=0}
    > }
    > this.rotateimage()
    > }
    >
    > </script>
    >
    >
    >

  • How do I delete a link in the link panel?

    I have moved an item out of the links folder on a project I am working on in IDCC and when opening the project it tells me, rightly, that a link is missing. When I go to the links panel I see the alert that the linked item is missing, which I know, and I want to delete the link in the links panel but see no option to do this, also the delete key does nothing when the item is highlighted, and right-click (^ click) offer no delete choice either. How can I delete this item in the links panel?
    TIA,
    Ken

    Amazing how the hot weather has affected me. Thank You Peter - so logical - I missed it while thinking of 15 other elements and a hurried deadline...

  • How do you get iTunes to list JUST broken or dead links?

    I would like to know how to get iTunes to show just broken links (aka Dead Links) much like how you can select it to show just duplicate songs/links
    My Internal Harddrive (HD) had a glitch afew weeks ago and I had to reformat and reinstall. Before any of that happened tho I had made a complete backup copy of the "My Music" folder (Which included the iTunes folder with its database and everything else) to a external HD.
    After getting the interal HD back up and running, I just copied everything within the "My Music" folder off the external and into the "My Music" folder on my Internal C Drive. During the copy process is when I found out that whatever glitch had happened had also affeced some of the MP3 files I had backed up on the external. Windows was able to copy all of the iTunes folder with its database and half of the MP3's The other half it couldn't tho.
    Now when I open iTunes being that the database was copied over and all songs that were recovered are exactly where they were before they show up I have no problems there. But the songs that were not recovered are listed in the iTunes Library, just has broken links tho since they do not exist anymore.
    It would make things ALOT easier if I could just get iTunes to show only the broken links. This would make a PERFECT list of all the songs I have missing. I could then know exactly which songs I need to rip again using iTunes or download so I can point these dead links to files and finish updating my iPod.
      Windows XP  

    OK I have finally got this question somewhat answered, I went and used the Javascript at http://ottodestruct.com/itunes/FindDeadTracks.txt the first time, followed the rules of using "Save as" and changing the .txt at the end to .js and got errors running it.
    The Second time tho, instead of just using "save as" I realized the first lines of this text are not code but just directions. Someone might know of a shorter way of doing this but I Highlighted only the code itsself and saved that (Example Below):
    /* Rename me to FindDeadTracks.js
    Double Click in Explorer to run
    Script by Otto - http://ottodestruct.com */
    var ITTrackKindFile = 1;
    var iTunesApp = WScript.CreateObject("iTunes.Application");
    var deletedTracks = 0;
    I just skipped the "Rename me to ........" Highlighted "var ITTrackKindFile " And everything below it. After saving this and running it, The script opened iTunes poped up how many dead tracks it found in a pop up window and (Without saying) had made a Text File of all the songs that were dead tracks in the "My Documents" Folder.

  • How do i delete Reader Links in Safari iPad

    how do i delete Reader Links in Safari iPad?
    What I have done:
    select a Link in the Reader Links Menu.
    Swipe across the link
    a Red DELETE button appears
    I press the DELETE Button
    Nothing Happens (including no error message)!!
    Can you help please?

    Mine appears to work. Try clearing Safari's cache : Settings > Safari > Clear Cookies And Data (Clear Cache on iOS 4) and also Clear History
    If that doesn't fix it then try closing Safari completely and then re-open it : from the home screen (i.e. not with Safari 'open' on-screen) double-click the home button to bring up the taskbar, then press and hold any of the apps on the taskbar for a couple of seconds or so until they start shaking, then press the '-' in the top left of the Safari app to close it, and touch any part of the screen above the taskbar so as to stop the shaking and close the taskbar.
    A third option is a reset : press and hold both the sleep and home buttons for about 10 to 15 seconds (ignore the red slider), after which the Apple logo should appear - you won't lose any content, it's the iPad equivalent of a reboot.

  • I was downloading the walking dead app on my iphone and after it was done it started saying waiting. I can't delete it but if I go into the App Store I can open it through there. Can someone please tell me how to delete it.

    I was downloading the walking dead app on my iphone and after it was done it started saying waiting. I can't delete it but if I go into the App Store I can open it through there. Can someone please tell me how to delete it.

    I have the exact issue with Vivino on Iphone4S. Did u figure out a fix?

  • Hi, I have a subscribe button on one of me iWeb pages which is linked to my iPhoto. I don't know how I put it on and I can't find out how to delete it. Help please.....

    Hi, how can I delete a Subscribe button from one of my iWeb pages. I don't remember adding it but it is linked to all of my iphotos and I can't find out how to delete it. Help please...

    I have now sorted my problem thank you

  • How to delete duplicates in 5 minutes, any version

         Do you want a magic wand? Read this entirely before you start using my magic wand: Open your music folder, select iTunes, then iTunes Media folder, then Music folder there.  Open each artist folder and copy the song files only to another folder of your choosing elsewhere on your computer, do this one artist at a time or you can get windows to do it, but you can look how to do that up.  You need to have all music in ONE FOLDER, no sub-folders, you can use several methods but the quickest is to open a fold press control A then control c and then with the destination for the copies opened already press control V.  These commands are select all, copy, and paste respectively.  I would move the files since it can cause administrator privilege problems. Once all music is in another folder with no sub-folders, just the music files press control F to open find.  type in (1).mp3 or (1).m4a or whichever file extension the music is (there are 8: .mp3 , .m4a , .m4v , .wma are the main ones.  Anyway, once you type in (1).m4a all duplicates will be highlighted.  Hit delete.
         Congratulations.  You have now deleted every duplicate are in the library. Every single one, because windows add (#). to any duplicate file o any kind in windows.  ANYTHING.  The number depends on how many duplicates have been added, for example (1).m4a (2).m4a (3).m4a....etc.  You can do this for every file extension type, such as (1).mp3 then (1)m4a to be safe or you can just type (1). by itself and get all fill types.  I don't recommend because it can accidentally delete things you don't want to.  The best way is to hit control F then enter (1).m which will select all the music files with the exception of windows media music which is .wma.  For all duplicates i would search for number (1) (2) and (3).  If you have more than three duplicates you can connect the dots on how to find the rest. 
         Any how, then go back to iTunes, select all songs, (control A) hit delete and move to recycle bin.  I would delete from cloud too, but that's up to you. I do this because i have iTunes match and it will automatically add to iCloud when i hit update iTunes match.  MAKE SURE THAT IN PREFERENCES UNDER the EDIT menu list on the menu bar, you have set iTunes to auto organize your library and auto copy files to the iTunes library before you add the files back.  Click menu, add file, then select all the files in whatever folder you copied the music to, don't just add folder because it can create errors. Use the add file then open the folder and press control A to select all then enter. 
         You are done.  No duplicates, no program needed, no spyware or malware or any other crap.  Simply put, this whole process takes about 10 minutes, maybe 15 on a reasonably fast machine.  It depends on your hard type, chipset speed, processor, and how big your library is.  I did it using a 6 core 3.8 ghz 64bit system to a 750gb solid state drive @ 3.0gbs sata setting.  It took about 6 minutes total.  One last thing, if you have previously deleted the ORIGINAL file then you will delete your current copy because it will be the duplicate not the original, easy way to prevent is to save the file you original copied the music files only to as a back up on another hard drive or server or another folder, just to be safe. 
    Problem solved.

    Manually moving 100s or 1000s of folders worth of tracks to a common location is hardly going to take 5 minutes, though if your library is small enough it may have suited you. Deleting and reimporting media from the library loses ratings, play counts, playlist membership etc. When iTunes adds a new track whose properties would normally mean that it occupies the same location as an existing file it adds a trailing space and a digit. When Windows Explorer is used to merge folders and files have the same names it may offer to add (1) (2) etc. rather than replace but that should be an option.
    If the library has no duplicates, but the folder does, simply add the media folder to the library and then dedupe by sorting on Date Added as shown below. For anything more complex I would recommend using my script for best results.
    Apple's official advice on duplicates is here... HT2905: How to find and remove duplicate items in your iTunes library. It is a manual process and the article fails to explain some of the potential pitfalls such as lost ratings and playlist membership.
    Use Shift > View > Show Exact Duplicate Items to display duplicates as this is normally a more useful selection. You need to manually select all but one of each group to remove. Sorting the list by Date Added may make it easier to select the appropriate tracks, however this works best when performed immediately after the dupes have been created.  If you have multiple entries in iTunes connected to the same file on the hard drive then don't send to the recycle bin.
    Use my DeDuper script if you're not sure, don't want to do it by hand, or want to preserve ratings, play counts and playlist membership. See this thread for background, this post for detailed instructions, and please take note of the warning
    to backup your library before deduping.
    (If you don't see the menu bar press ALT to show it temporarily or CTRL+B to keep it displayed.)
    The most recent version of the script can tidy dead links as long as there is at least one live duplicate to merge stats and playlist membership to and should cope sensibly when the same file has been added via multiple paths.
    tt2

  • How to delete multiple duplicates of multiple songs?

    How to delete multiple duplicates of multiple songs from my library at the same time, rather than each individually?

    Apple's official advice on duplicates is here... HT2905: How to find and remove duplicate items in your iTunes library. It is a manual process and the article fails to explain some of the potential pitfalls such as lost ratings and playlist membership.
    Use Shift > View > Show Exact Duplicate Items to display duplicates as this is normally a more useful selection. You need to manually select all but one of each group to remove. Sorting the list by Date Added may make it easier to select the appropriate tracks, however this works best when performed immediately after the dupes have been created.  If you have multiple entries in iTunes connected to the same file on the hard drive then don't send to the recycle bin.
    Use my DeDuper script if you're not sure, don't want to do it by hand, or want to preserve ratings, play counts and playlist membership. See thisthread for background, this post for detailed instructions, and please take note of the warning
    to backup your library before deduping.
    (If you don't see the menu bar press ALT to show it temporarily or CTRL+B to keep it displayed.)
    The most recent version of the script can tidy dead links as long as there is at least one live duplicate to merge stats and playlist membership to and should cope sensibly when the same file has been added via multiple paths.
    tt2

Maybe you are looking for

  • Camcorder Firewire problem

    Help! New iMac 24", 2.8. Firewire 800 has two drives attached, daisy-chained to another -- one is for video capturing / scratch disk, other is for time machine drive. The Firewire 400 port is used for my Canon camcorder. My plan seemed to me a good o

  • Scheduled job does not stop even after the scheduling window closes

    We have written custom stats gathering job whose duration has been set as 14 hours in the schedule. This job starts daily at 6:00 PM and expected to complete upto 8:00 AM next day. But the problem is that this job continues to execute even after 14 h

  • Obligatory node 'ZMAT_SPO' missing in the structure IDOC

    Hello, Scenario is : File - IDOC I am trying to post the contents of the file into Matmas The file gets picked and shows up a red color flag with the error : :Obligatory node 'ZMAT_SPO' missing in the structure Matmas04 Matmas04 " I tried by disablin

  • Saving hard copy photos

    I have hundreds of hard copy photos.  Need to make room for storage and want to either copy, scan to discs.  Which is the easiest, quickest way to do this.  I have a HP Photosmart All-in-One e-printer. This question was solved. View Solution.

  • Does Adobe Digital Editions work with the Kobo Arc 7 e-reader ?

    I cannot get Adobe Digital Editions to recognise my Kobo Arc 7. Does Adobe Digital Editions work with the Kobo Arc 7 e-reader ? It is recognised partly by Calibre but then produces an communication error message. Are there any other utilities I could