Previous edition Review answers, Highlights & Notes still presenting

I have a client who has a training manual we've built for them. This morning I sent them a new .ibook file completely, minus videos, and yet when the client opened the book, the answers to end of chapter Review app questions, yellow highlights, and even Notes taken in ANOTHER .ibook file, a previous version are presenting in the latest edition.
Is there a way to clear this kind of data out on an iPad so that if Class 1 answers the questions and the iPads are given to Class 2, the anwers already provided don't present themselves?
Is the answer in the Reset All Settings or Erase All Content and Settings features under General > Reset or is this going to wipe out more than what is bargained for?

I have a client who has a training manual we've built for them. This morning I sent them a new .ibook file completely, minus videos, and yet when the client opened the book, the answers to end of chapter Review app questions, yellow highlights, and even Notes taken in ANOTHER .ibook file, a previous version are presenting in the latest edition.
Is there a way to clear this kind of data out on an iPad so that if Class 1 answers the questions and the iPads are given to Class 2, the anwers already provided don't present themselves?
Is the answer in the Reset All Settings or Erase All Content and Settings features under General > Reset or is this going to wipe out more than what is bargained for?

Similar Messages

  • Tiff previously edited in ACR will not open in Camera RAW from Bridge

    Yes, I have googled this and found instances going back to 2010 with no satisfactory answer. I have Photoshop 5.1 and the latest ACR and Bridge that work with it. 2011 MAC Mini 10.8.2.
    I scanned a landscape oriented printed email image at 800 spi as a portrait orientation and saved it as a tiff. I opened this tiff in Preview and decided it needed more than minor tweaks so I opened it in ACR from Bridge, made a few adjustments and saved it. I thought I could see what I was doing better if it was in landscape orientation again so I opened it in Preview and rotated 90 deg CCW, saved it as a tiff. Going to Bridge I found Open in Camera Raw greyed out. I went back to Preview to see if I could get what I needed in its Tools while viewing it in landscape. Adjustments took forever this time, so I gave up and took a look at the image characteristics. Rotating in Preview had changed the image size to 3.3333...... times larger at 240 ppi still aRGB, still a tiff. This has never happened before, including slow adjustments
    I duplicated the rotated file and changed it back to 800 ppi and normal size, went to Bridge, Camera Raw still greyed out. Original unrotated image
    that had been edited in ACR and saved will still open in ACR.
    All kinds of strange things have happened since updating to 10.8.2, but I don't think this is one of them because of the complaints I have seen that date back to 2010. I did a full maintenance routine, i e cleared RAM, reboot in single user with fsck -fy, repaired permissions, back up with SuperDuper which repairs permissions again. Then I tried Bridge again, original will open, rotated won't.
    Anyone know the answe?

    The answer is that making edits in ACR and saving it creates layers in the tiff and Bridge will then not open it again in ACR unless you flatten it. I still don't know why Preview increased the image size by 3.333.....x or why ACR increased the tiff file size by 2.6x and why the flattened tiff is 2x the file size of the original scan but the image dimensions are the same. This stuff apparently is above the pay grade of anyone in google, too.

  • HT1539 I do a recover a digital movie code I previously entered?  I do not still have the flyer with the number on it.

    I previously entered the code to a digital movie into my computer.  I accidently erased the movie off the computer.  I still have the actual digital DVD, but not the flyer/paper containing the code (or the DVD plastic cover).  Through iTunes/ Apple, is there any way to retrieve the digital code/movie I already input a while ago?  Thanks.

    Those are one-time only codes, even if you had it you could not use it again.
    I don't actually know if movies downloaded this way appear in your purchase history or not, but if they do then you may be able to download the movie as and when the rights holders grant permission for repeat downloads in your region.
    To avoid disappointment in future create a backup and keep it up-to-date.
    tt2

  • Can't delete file after renaming due to Word file handle still present. Error staes document is still in use but it's really not. Worked fine in 2007 but not in 2010.

    I have some code associated with a Word Template. The template is opened, filled out and saved via a routing in vba. This all works fine in older 2007 version (which is version it was originally created in). Once this file is saved, the user can change the
    date in a text box and re-save document. The code saves using the new date for part of new file name and then deletes that older file from the server. It fails at the delete function because the newer version of word is not dropping the file handle from the
    first named file when user saves it to the new filename. In older version (2007) this handle was released as soon as file was saved to a different name. I can't seem to figure out how to release the old document filename so the old document file can be deleted.
    I hope I explained this well enough.
    Here's the code that woeked in version 2007 but fails in version 2010.
    Option Explicit
    Dim CAPEX01 As MSForms.ComboBox
    Dim CAPEX02 As MSForms.ComboBox
    Dim LocalPath As String
    Dim NetPath As String
    Dim OldPath As String
    Dim OldPathNet As String
    Dim DocName01 As String
    Dim DocName02 As String
    Dim DocName03 As String
    Dim DocName04 As String
    Dim DocName As String
    Dim DocNameold As String
    Dim TestDocName As String
    Dim filesys
    Dim newfolder
    Sub AutoOpen()
    ActiveDocument.ActiveWindow.View.Type = wdPrintView
    TestDocName = ActiveDocument.TextBox2
    OldPathNet = "\\yourPath\" & TestDocName & "\"
    End Sub
    Sub AutoNew()
    TestDocName = ActiveDocument.TextBox2
    OldPathNet = "\\yourPath\" & TestDocName & "\"
     ComboBox1.Locked = False
     ComboBox1.Enabled = True
     FillList1
     FillList2
     End Sub
    Sub DeleteOldDoc()
    OldPathNet = "\\yourPath\" & TestDocName ' & "\"
    DocNameold = OldPathNet & TestDocName & "-" & DocName02 & "-" & DocName03 & "-" & DocName04 & ".doc"
        If Not TestDocName = DocName01 Then
            Set filesys = CreateObject("Scripting.FileSystemObject")
        If filesys.FileExists(DocNameold) Then
            filesys.DeleteFile (DocNameold), True      
     'I get file permission error here
        End If
        End If
    If DocName01 <> "" Then
    If Not TestDocName = DocName01 Then
    If Not TestDocName = "" Then
        MsgBox "Project Proposal Has Been Moved From Year " & TestDocName & " To " & DocName01 & ""
    End If
    End If
    End If
    TestDocName = DocName01
    End Sub
    '''''''Document path functions''''''
    Sub chkpath()
    Set filesys = CreateObject("Scripting.FileSystemObject")
    If Not filesys.FolderExists("\\yourPath\") Then
       newfolder = filesys.CreateFolder("\\yourPath\")
    End If
    If Not filesys.FolderExists("\\yourPath\" & DocName01 & "\") Then
        newfolder = filesys.CreateFolder("\\yourPath\" & DocName01 & "\")
    End If
    End Sub
    ''''''Save Function''''''
    Private Sub CommandButton1_Click()
    DocName01 = ActiveDocument.TextBox2
    DocName02 = ActiveDocument.TextBox4
    DocName03 = ActiveDocument.TextBox1
    DocName04 = ActiveDocument.ComboBox1.Value
    chkpath
    NetPath = "\\yourPath\" & DocName01 & "\"
    DocName = NetPath & DocName01 & "-" & DocName02 & "-" & DocName03 & "-" & DocName04
    ActiveDocument.SaveAs2 FileName:=DocName, FileFormat:=wdFormatDocument
     ComboBox1.Locked = True
     ComboBox1.Enabled = False
     ComboBox2.Locked = True
     ComboBox2.Enabled = False
     TextBox1.Locked = True
     TextBox1.Enabled = False
     TextBox3.Locked = True
     TextBox3.Enabled = False
     TextBox4.Locked = True
     TextBox4.Enabled = False
     DeleteOldDoc
    End Sub
    Sub FillList1()
    Set CAPEX02 = ActiveDocument.ComboBox2
      With CAPEX02
          .AddItem "CASTING", 0
          .AddItem "HOT ROLLING", 1
          .AddItem "COLD ROLLING", 2
          .AddItem "FINISHING", 3
          .AddItem "PLANT GENERAL", 4
          .AddItem "MOBILE EQUIPMENT", 5
      End With
    End Sub
     Sub FillList2()
     Set CAPEX01 = ActiveDocument.ComboBox1
      With CAPEX01
          .AddItem "A Name", 0
          .AddItem "Another Name", 1
      End With
    End Sub
    Private Sub CommandButton2_Click()
        UserForm1.Show
    End Sub

    mogulman52 and Don,
    I went back and looked at my code and had already updated it to SaveAs in the new docx format. It still holds the lock handle in place until Word closes, unlike earlier versions which released the lock handle when you did a SaveAs.
    As a note, all my Word and Excel macro-enabled (dotm & xltm) templates are read only and are never filled in, prompting the user for a file name on any close event or if they run the code gets auto-named. I do the SaveAs and concatenate the file name
    from data on the document (or sheet) that has been filled in. During the SaveAs the docx gets saved to a network folder and also on a local folder. The lock gets renamed to the filename and remains until Word is closed.
    So my code still fails at the point noted below while trying to delete an old filename version after the file has been saved as a new filename in a new folder. So....
    The code is looking in the last folder where the docx file was saved for the older filename so it can be deleted. The newest docx version has already been saved in a different folder and has a new lock handle of its own. That lock is not my problem, it's
    the older file lock which really exists in the same folder as the first filename that the docx was saved to. It does not release that lock until I exit Word. My work around has been to instruct all users to manually delete the older version file.
    The other odd thing is this only happens when I run it from code, if you manually go through these steps with the SaveAs menu drop-downs in Word it will release the lock handle???
    Hope this isn't to confusing and thanks for all your suggestions and help.
    Sub DeleteOldDoc()
    OldPathNet = "\\yourPath\" & TestDocName ' & "\"
    DocNameold = OldPathNet & TestDocName & "-" & DocName02 & "-" & DocName03 & "-" & DocName04 & ".doc"
    If Not TestDocName = DocName01 Then
    Set filesys = CreateObject("Scripting.FileSystemObject")
    If filesys.FileExists(DocNameold) Then
    filesys.DeleteFile (DocNameold), True 'I get file permission error here- lock handle is still present from last SaveAs command in last folder where previous version of file was saved.
    End If
    End If
    If DocName01 <> "" Then
    If Not TestDocName = DocName01 Then
    If Not TestDocName = "" Then
    MsgBox "Project Proposal Has Been Moved From Year " & TestDocName & " To " & DocName01 & ""
    End If
    End If
    End If
    TestDocName = DocName01
    End Sub
    Glenn

  • CS6/ACR 7.x not recognizing Canon 5d Mark 3 files previously edited in same version. Help?

    Why are my previously edited canon 5d mark 3 raw xmp files no longer recognized and all sliders set to zero? I can see the xmp files associated with the raw file in their folder. The files were originally edited in CS6/ACR 7.x -in July 2012 - and recently re-opened in the same CS6/ACR 7.x.
    The canon 5d mark 2 files from the same time/event are showing up fine. I have updated everything, but both before and after the update, same issue with the Mark 3 files.
    On a side note:
    We have found that opening mark 2 files (that were originally edited in CS4 / ACR 5.7) in CS 6 / ACR 7.x and making any changes such as color coding causes all previous xmp information being zero'd out in the mark 2 xmp file. Not sure if this is a symptom of the same problem? Except the difference here is the Mark 3 files have never been touched outside of version CS6/ACR7.x - however the folder which holds both mark 2 & mark 3 files from the same event has been opened in the CS4 / ACR 5.7 window but without touching the files. By opening the folder in CS4 I can see that the Mark 3 files aren't reading and then know this event was originally edited in CS6/ACR 7.x
    Specifics:
    PS CS6 13.0.4 x64
    Mac OSX 10.6.8
    Canon 5d Mark 3 Raw files
    This is the first time in these circumsances that this issue has presented itself.
    Any insight would be much appreciated
    Thank you!

    First check to make sure your view mode in ACR is set to Image Settings, not Camera Raw Defaults.  This is accessible as the top item or three in the menu that comes up when you click the little threelines-arrow icon at the right of the tabs title bar, for example to the right of the word Basic.
    Otherwise, did you switch your Camera Raw settings location to be the central database instead of XMP files and/or are you on a different computer that might have a different metadata storage location?
    Open up one of the XMP files in a text editor, perhaps one that hasn’t had a picture opened for it, recently, yet, and see if you see any non-zero settings.  Also take note of the last file creation time.  This will help determine if the XMP files, themselves, have been written with ACR defaults or if they are just being ignored.
    Also, check the date and timestamps of a CR2 and XMP file that hasn’t been opened, recently, and see if the XMP date/time is before the CR2 date/time.  There has been a bug, not sure in LR or PS, where if the XMP file date is BEFORE the raw-file date, then the XMP is ignored so maybe that could be happening.  If it is a LR bug, then have the files been edited in LR, which might have ignored the XMP files and the rewritten things with the LR default settings?
    If no explanation can be found on your side, can you zip up a raw and its corresponding XMP, preferably one that’s not been looked at, recently, then put them online somewhere like http://www.dropbox.com/ and reply with the public download link, so others can take a look?
    What version of Camera Raw are you using?  ACXR 7.4 just came out this week.

  • I have a keynote presentation that includes a significant amount of video.  When I edit the keynote slides (not the video slides) how can I save the changes without re-saving the videos (because that takes a VERY long time)?

    I have a keynote presentation that includes a significant amount of video.  When I edit the keynote slides (not the video slides) how can I save the changes without re-saving the videos (because that takes a VERY long time)?  I edit the presentation depending on the audience to which I am presenting.

    If you add a new  slide with just a text box (therefore a very small amount of data),  to an existing presentation then save,  Keynote will only save the new content to the file,  it wont save  pre-existing content as its already included in the file.
    The time  taken to "save" will be very much shorter than a "save as" when all of the existing content is saved again.

  • With previous editions of iTunes for Windows, I could play a CD at the same time as it was being imported. That does not work anymore. Why not, and is there a way to do both with the most current version?

    With previous editions of iTunes for Windows, I could play a CD at the same time as it was being imported. That does not seem to work anymore. Why not, and is there a way to do both with the most current version? I am running a Surface Pro 2 with Windows 8.1 and the most recent vesion of iTunes, which, in all other respects, works well. I just can't listen to an album for the 1/2 to 1 hour that it takes to import it into my library.

    Two JVM's ? I thought that J2EE worked within a single JVM and run everything in containers. Can you see the two processes?

  • Hi, is there any option how I can edit duration of multiple video clips (not stills) in iMovie 11, lets say if I want them 2 seconds long? Many thanks for any advice... Tom

    Hi, is there any option how I can edit duration of multiple video clips (not stills) in iMovie 11, lets say if I want them 2 seconds long? Many thanks for any advice... Tom

    Yes.
    iMovie 11 tutorials:
    http://help.apple.com/imovie/
    http://www.apple.com/ilife/tutorials/#imovie
    and also these:
    http://www.kenstone.net/fcp_homepage/imovie_09_stone.html
    http://www.kenstone.net/fcp_homepage/imovie_09_stone.html#interface

  • Does iTunes 11 still offer the radio streams that the previous editions did?

    Does iTunes 11 still offer the radio streams that the previous editions did? For instance I could listen to Canadian Brodcasting from all over Canada, or NPR stations in different cities. I know they've added a Pandora like feature, but I'd like to keep the streaming radion feature as is.

    via: http://tuneworks.biz/
    quote "I think Apple have taken a wrong turn with the new iTunes 11 update by removing some key features. Most concerning for this this writer is the removal of the user generated iMix ecosystem.  I am asking iTunes to bring back the iMix and I encourage you to do the same at their feedback page http://www.apple.com/feedback/itunesapp.html
    I believe honest word of mouth  is the best recommendation and the iMix ecosystem contains plenty.  There are over zealous self promoters and fanatical fans in there  too but at least the content its real opinion and generated by real people.  Which is far better that the beefed “Listeners Also Bought” box which just looks like machine generated advertising to me."
    I just sent them feedback I suggest everyone do so.

  • I used to be able to use the tools, edit image and highlight certain items in the pdf photos. why can I not now?

    I used to be able to use the tools, edit image and highlight certain items in the pdf photos. why can I not now?

    Usually Acrobat has linked to PhotoShop to do the photo editing. You might check the updates for Acrobat and PhotoShop.

  • I can't rate or write a review for app on the app store. It allows me to write out the review but does not diplay my review after sending it. Can anyone point me in the right direction to get answer as apply refuse to reply or solve my problem. Thanks

    I can't rate or write a review for app on the app store. It allows me to write out the review but does not diplay my review after sending it. Can anyone point me in the right direction to get answer as apply refuse to reply or solve my problem. Ps thanks apple for ur ignorance

    I have the same problem with another TeamLava app, Fashion Story.

  • TS3274 After upgrading to 5.1, I can not hear other's calling tone during the usage of Skype-to-Skype. But after touching the answer key, I still can hear other's sound. If I use earphone, the calling tone is audible. No problem of test call.  What's goin

    After upgrading my iPad 1 to OS 5.1, I got trouble to use Skype. I can not hear the calling tone from other during the usage of Skype-to-Skype. But when I touch the answer key, I still can hear other's voice and other also can hear my voice. If I use earphone, the calling tone from other is audible. There is also no problem of test call. What's going on with my iPad 1? I do hope someone can help me to fix this problem.

    Hi,
    I experienced similar behavior (neither Keychain Access nor Safari would start, Chrome cannot access https sites, etc.). It got fixed by following instructions in this article:
    http://www.macworld.com/article/163227/2011/10/fix_a_lion_file_opening_hang_in_m ac_os_x_10_7_2.html which I found in this thread: http://att.macrumors.com/showthread.php?p=13625027#post13625027
    Basically remove the ~/Library/Application Support/Ubiquity and restart. OSX will create a new one with the right permisions.
    /cheers

  • Old screensaver bug still present in Snow Leopard

    This bug has driven me mad in the past (since Tiger!) and I am still getting it on Snow Leopard.
    Scenario:
    1. Invoke screensaver
    2. Wake computer
    3. Get password prompt for a split second - (it disappears, like a focus issue).
    4. left with a blank screen and cursor. No means of logging in.
    5. try to re-invoke screensaver by either putting to sleep via power button or closing lid.
    6. Awaken computer - same thing happens.
    This doesn't happen 100% of the time but it does require a hard reboot to get out of.
    This is one of those bugs that i've managed to live with for a few years but i'm starting to go mad when its still present in the Snowleopard! (pls excuse my venting!)
    Obviously the easy issue is to disable the screensaver password - but you'd think this would be fixed by now - Or am I just being stupid and missing something obvious?
    Cheers,
    Steve </vent>

    I am experiencing both your size issue and a different bug concurrently.
    I also get the 'white' image bug if scrolling through images and then quickly backtracking to a previous one. Then that image will remain white until I close quicklook and reopen it on a different file. Reopening on the same file still results in a white image.  Happened under 10.9 and is happening to me under 10.9.2 on a Macbook Pro, 2010 iMac and non-apple branded um, mac. Size and file type don't matter.
    I get a similar log entries once in a while but the backtracking white image thing doesn't cause quicklookd to spam any console info that is searchable in the console.
    Removing quicklook plugins, clearing it's cache and whatnot didn't do anything.
    *EDIT*
    http://support.cocoatech.com/discussions/announcements/6-quicklook-issues-pf-652
    Apparently my 'snap back' issue is was caused by the version of Path Finder 6 I was running on those machines.
    It would seem that there are a number of other issues with the 10.9 quicklook API. I guess I'm going to wait and hope it gets fixed.

  • I am using both PSE 13 and Lightroom 5.  When I use Lightroom as an external editor and save the photo, it shows up in PSE13 as an edited file but does not look any different.  Why doesn't it appear edited?

    I am using both PSE 13 and Lightroom 5.  When I use Lightroom as an external editor and save the photo, it shows up in PSE13 as an edited file but does not look any different.  Why doesn't it appear edited?

    People who have Photoshop, but don't have Lightroom, need ACR so that they can use Raw files. Without ACR they could do nothing with those (they may also like having ACR so that they can work on other kinds of image using the same kinds of adjustments and techniques, as are used with Raw files).
    People who have Lightroom, can get access to Raw files regardless whether ACR is present or not. They can use Lightroom on other kinds of image also, using the same methods. LR can pass images directly into Photoshop without passing via ACR (or else does so transparently, which amounts to substantially the same thing).
    ACR does not, strictly speaking, even need to be installed for this external editing to happen. In fact, not even PS needs to be - since a different image editor can be used instead, while still retaining the Adobe Raw conversion etc.
    Lightroom "subcontracts out" specialised external tasks, in this workflow, but is still your "main contractor": the image is otherwise located, viewed, managed, adjusted/presented and output entirely using LR.
    So IMO we can divide image processing into:
    operations that involve pixels and layers and layer masks and adjustment layers etc (of the kind done inside Photoshop)
    operations that involve parametric edits (of the kind done in ACR where you are not using a Lightroom based workflow; otherwise, done inside Lightroom)
    When PS is called in, that's because those tasks are impossible or unsuitable to do in Lightroom. But those tasks can't be done in ACR either - by definition, since LR and ACR have exactly the same image processing "feature set".
    Lightroom is irrelevant to the Bridge + ACR + PS workflow. This workflow requires both your PS and your ACR to be current enough, to support your Raw format etc.
    ACR and Bridge are irrelevant to the LR + (image editor) workflow. It is in this case, only LR which needs to be current enough to support your Raw format etc.
    RP

  • How do you change the pink highlight for the present day in calendar when in week view

    How do you change the pink highlight for the present day in calendar when in week view - OSX Maverick

    the current day was light blue in ical in 10.6 but with plenty of contrast, but I recently made the bigger leap all the way to calendar in 10.9. the choice of color is terrible for reasons such as Spile1962 puts below, but also not having any way to tweak it is terrible. I'm on a bran d new imac and can barely see a difference and frankly, while I appreciate the subtlety, I still forget to look for the darker bar across the top of the current week and day. we should be able to adjust weekend and current day bg colors.
    I went into the app's package contents in hopes that they were using a tiff/png file that I could tweak on my own but couldn't find anything for them. all the icons are there, as are the bg sets for all the little pop-ups and things, but I couldn't even find a reference to a hex color in the plist file.
    send apple feedback. I just did myself, except that Calendar hasn't made the list (yet?), only iCal up to version 4.x, and Messages is still only iChat for feedback, and some others are old as well. apparently after steve died, apple's attention to these details just died with him. it's been that long since those other apps should have been relevant on their site.

Maybe you are looking for

  • External hard drive not recognized by Mavericks?

    I have a Western Digital My Passbook 500GB external hard drive connected to my MacBook Pro via USB.  It worked fine until I upgraded to Mavericks.  Now it is not recognized at all in my Finder. When I go to Disk Utility, it finds it and says "not sup

  • How to put full HTML in an outputFormatted or something else?

    So i have a field that contains some html for example <p><strong>This is important</strong> so please read it<br/>And a second line</p>When i put this is in an outputFormatted: <af:outputFormatted value="#{myBean.value}" id="ot1"/>The text is shown o

  • Portal web dynpro form link as email .

    Dear All The requirement goes like this: We are developing a form in web dynpro and integerating into portal as an iview. Whenever the user submits a new form we should send a link of the form in portal to the user as email (with some parameters like

  • Bapi / Function to save FI document

    Hallo everybody! Is there a function module to create an FI document? Thank you very much indeed!!!

  • Multi-channel loudspeakers and headpho

    i have the audigy 2nx and am using the www.alcatech.com bpm pro4 audio software. This software requires either 2 soundcards or one which has multi-channel support. Its basically a mixer - i want to listen to one song through the loudspeakers and anot