InDesign CS5 v7.0.4 won't make a package - hangs at very end of progress bar.

Using InDesign CS5 v7.0.4 trying to simply make a package. The progress bar (moving very slowly) hangs at the last percentage and doesn't complete the process.
Any ideas of how to fix this??

Every file or one particular file?
If one particular file, try exporting it as IDML and reopen in InDesign. If all files, try restoring your preferences.
http://forums.adobe.com/thread/526990

Similar Messages

  • [AS] Beast of a script needs help converting from Quark 8 to InDesign CS5

    First off, THANK YOU for even reading this post. Here's the dilema. I work in a publishing company that used an AppleScript from Quark 8 to automate our pagination from set text we pull from our sales reps worksheets. About 8 months ago we switched fully to InDesign CS5, but have had to hold onto Quark 8 to be able to keep running our pagination. I'd like to see if the geniuses (yes, I've been trolling these forums looking to solve this myself and seen some great problems fixed) on these forums can help me figure out the proper conversion I would need to be able to leave Quark 8 in the rearview.
    Here's our current code... (I warned you it was a beast)
    set Ad_Props to {¬
         {Ad_Label:"SPREAD – ", Ad_Width:2.495, Ad_Height:1.62, Ad_Text_Angle:0}, ¬
         {Ad_Label:"FULL – ", Ad_Width:1.225, Ad_Height:1.62, Ad_Text_Angle:0}, ¬
         {Ad_Label:"SPREAD – ", Ad_Width:2.495, Ad_Height:1.62, Ad_Text_Angle:0}, ¬
         {Ad_Label:"JUNIOR – ", Ad_Width:0.90625, Ad_Height:1.62, Ad_Text_Angle:0}, ¬
         {Ad_Label:"1/2H – ", Ad_Width:1.225, Ad_Height:0.785, Ad_Text_Angle:0}, ¬
         {Ad_Label:"1/2V – ", Ad_Width:0.5875, Ad_Height:1.62, Ad_Text_Angle:90}, ¬
         {Ad_Label:"1/3V – ", Ad_Width:0.5875, Ad_Height:1.2025, Ad_Text_Angle:90}, ¬
         {Ad_Label:"1/4 – ", Ad_Width:0.5875, Ad_Height:0.785, Ad_Text_Angle:0}, ¬
         {Ad_Label:"1/4 Strip – ", Ad_Width:0.26875, Ad_Height:1.62, Ad_Text_Angle:90}, ¬
         {Ad_Label:"1/8H – ", Ad_Width:0.5875, Ad_Height:0.3675, Ad_Text_Angle:0}, ¬
         {Ad_Label:"1/8V – ", Ad_Width:0.26875, Ad_Height:0.785, Ad_Text_Angle:90}, ¬
         {Ad_Label:"Junior (GOLF) – ", Ad_Width:0.8, Ad_Height:1.62, Ad_Text_Angle:0}, ¬
         {Ad_Label:"1/3V (GOLF) – ", Ad_Width:0.375, Ad_Height:1.62, Ad_Text_Angle:90}, ¬
         {Ad_Label:"1/3sq. (GOLF) – ", Ad_Width:0.8, Ad_Height:0.785, Ad_Text_Angle:0}, ¬
         {Ad_Label:"1/6V (GOLF) – ", Ad_Width:0.375, Ad_Height:0.785, Ad_Text_Angle:90}, ¬
         {Ad_Label:"Directory Listing Only – ", Ad_Width:0.3, Ad_Height:0.3, Ad_Text_Angle:0}, ¬
         {Ad_Label:"INSERT (# in notes) – ", Ad_Width:0.3, Ad_Height:0.3, Ad_Text_Angle:0}, ¬
         {Ad_Label:"Other (See Notes) – ", Ad_Width:0.3, Ad_Height:0.3, Ad_Text_Angle:0}, ¬
         {Ad_Label:"------------ – ", Ad_Width:0.3, Ad_Height:0.3, Ad_Text_Angle:0}}
    set Position_Width to number
    set Position_Width to 11.375
    set Position_Height to number
    set Position_Height to 1.875
    set Jump_Height to number
    set Jump_Height to 0
    set Variable_Count to number
    set Variable_Count to 0
    set Variable_Height to number
    set Variable_Height to (1.875 + (1.62 * Variable_Count))
    set Last_Ad to number
    set Last_Ad to 0
    tell application "QuarkXPress"
         activate
         try
              display dialog "WARNING: This version of 'Dummy Square Maker' runs much slower than the last version, a confirmation will tell you when you are finished. Please be patient." & return & return & "Make sure to have the text box selected" buttons {"Cancel", "Accept"} default button 2 with icon caution
              set ThisBox to object reference of current box
              tell story 1 of ThisBox
                   set (every paragraph where it is return) to ""
                   set style sheet of every text to null
                   set style sheet of every text to "DUMMY TEXTS"
                   repeat with i from 1 to (count of paragraphs)
                        try
                             tell paragraph i
                                  set ThePage to my get_CurrentPage()
                                  try
                                       if it contains " – " then
                                            set style sheet to "AD SIZE"
                                            set Ad_Size to contents
                                            set {This_Width, This_Height, this_angle} to {"", "", ""}
                                            repeat with This_Ad in Ad_Props
                                                 if Ad_Size contains (Ad_Label of This_Ad) then
                                                      set This_Width to Ad_Width of This_Ad
                                                      set This_Height to Ad_Height of This_Ad
                                                      set this_angle to Ad_Text_Angle of This_Ad
                                                      exit repeat
                                                 end if
                                            end repeat
                                            set Ad_Box to my Make_Box(ThePage, {1.875, 10.875, This_Height + 1.875, This_Width + 10.875}, this_angle)
                                            duplicate contents to (end of Ad_Box)
                                       else if it contains "—" then
                                            set style sheet to "AD REP/PLACEMENT"
                                            duplicate contents to (end of Ad_Box)
                                       else if it starts with "©" then
                                            set style sheet to "AD REP/PLACEMENT"
                                            delete (character 1)
                                            duplicate contents to end of Ad_Box
                                            if Position_Width ≤ 19.75 then
                                                 set Jump_Height to Jump_Height + This_Height
                                                 (*_________________This is where Ad Boxes Stack_________________*)
                                                 if (Jump_Height ≤ 1.62) then
                                                      set origin of bounds of Ad_Box to {Position_Height, Position_Width}
                                                      set Position_Height to Position_Height + This_Height
                                                      (*_________________This is where Ad Boxes more right_________________*)
                                                 else
                                                      set Position_Height to Variable_Height
                                                      (*set Position_Width to Position_Width + This_Width + 0.05*)
                                                      set Position_Width to Position_Width + Last_Ad + 0.05
                                                      set origin of bounds of Ad_Box to {Position_Height, Position_Width}
                                                      set Jump_Height to This_Height
                                                      set Position_Height to Variable_Height + This_Height
                                                 end if
                                                 set Last_Ad to This_Width
                                                 (*_________________This is where New Row appears_________________*)
                                            else
                                                 set Position_Width to 11.375
                                                 set Variable_Count to Variable_Count + 1
                                                 set Variable_Height to (1.875 + (1.62 * Variable_Count))
                                                 set Position_Height to Variable_Height
                                                 set origin of bounds of Ad_Box to {Position_Height, Position_Width}
                                                 set Position_Height to Position_Height + This_Height
                                                 set Jump_Height to This_Height
                                                 set Last_Ad to This_Width
                                            end if
                                       else
                                            duplicate contents to (end of Ad_Box)
                                       end if
                                  end try
                             end tell
                        on error errmsg number errnum
                             display dialog "There has been an error " & "[" & i & "] (" & errmsg & " [" & errnum & "])" buttons {"Okay"} default button 1 with icon stop
                        end try
                   end repeat
                   delete contents
                   set style sheet of every text to null
              end tell
              beep 2
              display dialog "Automation Finished" & return & return & "IMPORTANT NOTE: Color your Ad Squares according to Sales Rep, and select them all and 'BRING TO FRONT [F5]', this is VITAL." buttons {"Okay"} default button 1 with icon stop
         on error errmsg number errnum
              beep 3
              if errnum ≠ -128 then
                   beep
                   display dialog errmsg & " [" & errnum & "]" buttons {"OK"} default button 1 with icon stop
              end if
         end try
    end tell
    on Make_Box(ThePage, TheBounds, this_angle)
         local ThePage, TheBounds, this_angle
         tell application "QuarkXPress"
              tell page ThePage of document 1
                   set Ad_Box to make new text box at end with properties {bounds:TheBounds, vertical justification:centered, color:"Rep_Other", shade:100, opacity:10, text angle:this_angle, frame:{style:solid line, color:"Black", shade:60, width:0.1}}
              end tell
         end tell
         (*end tell*)
         return Ad_Box
    end Make_Box
    on get_CurrentPage()
         tell application "QuarkXPress"
              tell document 1
                   return page number of current page
              end tell
         end tell
    end get_CurrentPage

    Hi,
    I think with this, you can already make good progress in your work.
    Good luck!
    global mydocument
    tell application "Adobe InDesign CS5.5"
         set mydocument to active document
         tell mydocument
              set myParaStyle to paragraph style "DUMMY TEXTS"
              tell page 1
                   set TheBounds to {0, 0, 20, 50}
                   set Ad_Box to make text frame
                   tell Ad_Box
                        set geometric bounds to TheBounds
                        set vertical justification of text frame preferences to center align
                        set contents to "This is the contents"
                   end tell
                   set myStory to parent story of Ad_Box
                   set applied paragraph style of every paragraph of myStory to myParaStyle
              end tell
         end tell
    end tell
    Your two handlers then look like this:
    on Make_Box(ThePage, TheBounds, this_angle)
         local ThePage, TheBounds, this_angle
         tell application "Adobe InDesign CS5.5"
              tell page ThePage of mydocument
                   set Ad_Box to make text frame
                   tell Ad_Box
                        set geometric bounds to TheBounds
                        set vertical justification of text frame preferences to center align
                   end tell
              end tell
         end tell
         return Ad_Box
    end Make_Box
    on get_CurrentPage(CurrentTextFrame)
         tell application "Adobe InDesign CS5.5"
              tell mydocument
                   return name of parent page of parent page of CurrentTextFrame
              end tell
         end tell
    end get_CurrentPage
    Shorter version:
    on get_CurrentPage(CurrentTextFrame)
         tell mydocument of application "Adobe InDesign CS5.5"
              return name of parent page of parent page of CurrentTextFrame
         end tell
    end get_CurrentPage
    Ce message a été modifié par: OlivierBerquin

  • Can I upgrade to inDesign CS5 WITHOUT installing Pagemaker 6.5 plus?

    I'm on Windows Vista 64 and I need inDesign CS5. Since Vista won't let me install my Pagemaker 6.5 plus, I was wondering if I can just input the licence from Pagemaker.
    Thanks

    It means that there is more than one upgrade. You can upgrade from earlier versions of InDesign or from Pagemaker. These have the same price but if you buy the InDesign upgrade from earlier versions of InDesign it won't accept your PM serial number.
    You need to buy the correct PM to InDesign upgrade package which will prompt you for a Pagemaker serial number when installing.
    Is that a bit more clear?
    Bob

  • Indesign CS5.5 hangs on startup

    Hi,
    My Indesign CS5.5 (I'm running Macosx 10.6.7) hangs on startup and gets this crash log: http://pastebin.com/xDXmdrt4
    I've tried removing the recovery folder, the settings prefs and the FontExplorer plugin... nothing helps.
    Anyone?
    /Erlandsen

    Mikkel, if the problem goes away with a new account, it is almost certainly a problem with your ~/Library folder, and reinstalling InDesign does not touch that, so it is no surprise the reinstall did not help.
    If you truly removed all the folders I specified, then I'm quite surprised it didn't fix it. Sometimes it is a permissions problem -- you
    might check the permissions on those folders with Get Info in the Finder, and maaaaaaaybe try running Disk Utility's Repair Permissions (usually a waste of time).
    If not, well, try moving *everything* out of  your Library/ folder, and then putting it back bit-by-bit (well, half-by-half). This may be a somewhat unpleasant and potentially destructive process.

  • Crashing InDesign CS5

    My InDesign CS5 crashes or hangs all the time. Is there a download to fix this without upgrading?

    Please delete your personal info when replying by email...
    You can check to see if there are any available updates from the Help menu, and you can check the current version by holding down the Cmd key while you choose About InDesing from the InDesign menu.
    You can post a crash report on pastebin.com and put a link here (DO NOT post the report in the forum). We might get a clue about the cause of the crash. You can also see Adobe Forums: InDesign CS5.5 Not Responding for instructions on getting a hang report and converting the hang to a crash.

  • How to make a handwriting font look like real handwriting in InDesign CS5

    This is a script I've written (AppleScript) that addresses the  problem most handwriting fonts have — they look like fonts, mostly  because they're settled so regularly along the baseline and their glyphs  are so uniform.
    It began as a way for me to address a  need for a project I was working on, something designed to look like a  scrapbook. I was using the "Journal" typeface designed by Fontourist  (http://www.dafont.com/journal.font), which gave me a good balance of  readability and organic feel, but of course it had the same issues as  all other fonts of its ilk.
    To address that I wrote a  script to trawl the taxt frames in a specified CS5 INDD document,  looking fist to see if they had that font as their active one, after  which the script shifts each glyph up or down the baseline by a random  amount, gives each glyph a random stroke weight change, and finally  tints each glyph a random amount off of its basic tint.
    Each  of these changes is very subtle, with the result being something that  looks considerably more organic and hand-made than the font did out of  the can. The script should be easily modified by anyone who wants to run  it using a different font instead of "Journal". Here it is. Enjoy!
    -- This script changes the  baseline offset, stroke width, and color tint
    -- of any type set in the "Journal" typeface to randomized values,  giving
    -- the text a much more organic look and feel.
    -- Written by Warren Ockrassa,  http://indigestible.nightwares.com/
    -- Free to use, modify and distribute, but I'd prefer attribution.
    -- Note that this script can take quite a while to execute with  larger
    -- or more complex files.
    set theItem to 0
    set theItem to choose file with prompt "Select a CS5 InDesign  document to modify..."
    if theItem is not equal to 0 then
         tell application "Adobe InDesign CS5"
             open theItem
             tell active document
                 -- Determine how many text frames we need to change
                 set myFrames to the number of text frames
                 if myFrames is not equal to 0 then
                     set theFrame to 1
                     repeat until theFrame > myFrames
                         set myText to text frame theFrame
                         set myFont to applied font of character 1 of myText  as string
                         -- Check to make sure we're only modifying text  frames
                         -- that have been set in the "Journal" typeface
                         if word 1 of myFont is "Journal" then
                             repeat with thisCharacter in (characters of  myText)
                                 -- Randomize the values of baseline shift,  stroke, and tint
                                 set baselineShift to ((random number from -5  to 5) / 10)
                                 set strokeWeight to (((random number 10)) /  100)
                                 set myTint to (100 - (random number 10))
                                 set fillColor to fill color of thisCharacter
                                 set baseline shift of thisCharacter to  baselineShift
                                 set stroke color of thisCharacter to  fillColor
                                 set stroke weight of thisCharacter to  strokeWeight
                                 set fill tint of thisCharacter to myTint
                                 set stroke tint of thisCharacter to myTint
                             end repeat
                         end if
                         set theFrame to (theFrame + 1)
                     end repeat
                 end if
             end tell
         end tell
         beep
         display dialog "Modifications finished!" buttons {"Groovy!"} default  button 1
    else
         display dialog "Operation cancelled" buttons {"OK"} default button 1
    end if

    For the fonts, the really cheap and dirty method would probably be to load the names of the fonts you want to use into an array variable in the AppleScript, then get a random index count to grab one of the font names out of that array.
    The script as it exists now goes character by character - you'd want to revise it so it went word by word instead, or else you'd end up setting each word's character to one of your random font choices. Instead of
    repeat with thisCharacter in (characters of  myText)
    you'd do something like
    repeat with thisWord in (words of  myText)
    As for loading an array variable in AppleScript - I've not done that before, but it's probably something like:
    set myFontArray to {"Papyrus", "Arial", "Comic Sans"}
    The curly braces are necessary, as it appears that AppleScript supports lists rather than arrays (a minor but not entirely unimportant detail). Anyway, from there, you'd grab one font at a time, randomly, probably like this:
    set myWordFontNumber to random ( length of myFontArray ) - 1
      set myWordFont to item myWordFontNumber of myFontArray
    You do the first line to get a random number based on the number of items in your list of fonts. You subtract 1 from it because the count on the actual list begins at 0 rather than 1, which means that sometimes you'll get a random number that's actually 1 larger than the number of items in the list, and you'll never see the first item (which is at position 0). This is a very old-school gotcha when working with arrays and lists - a ten-item list will count from 0 to 9, not 1 to 10.
    From there, you'd set the given word in your text frame's font to the name of the font you pulled out of the myFontArray variable. You'll want to make sure that the font names you load into your list are the actual names of the fonts you're working with - the examples I used here probably won't work.
    Please note that this is just a high-level gloss of what you'd need to do in order to modify the script. You'll have to hit the AppleScript documentation (and InDesign's scripting documentation) to get the precise syntax.

  • InDesign CS5 Won't Launch. Anywhere!

    I recently updated my MacBook Pro to OS X Yosemite and now my InDesign CS5 won't launch.
    I did some online troubleshooting and it suggested uninstalling and starting again. This would be problematic as I don't have a CD drive so can't install the software and research shows that CS5 is no longer available to download.
    My InDesign comes as part of the Acrobat Professional Package V9 - not sure of this makes a difference!
    Also, I tried downloading InDesign from CC, but it won't launch as it says I don't have the permission. Please help - I have a paper due for tomorrow!

    You can download the CS5 installer from the links at the bottom of this page: Download and Installation Help

  • How to make previous version documents(CS1 and CS3) without extension  readable in InDesign CS5

    I have some previous version documents of CS1 and CS3  on Mac  which have been saved without any extension e.g 300, CS3doc etc.
    When I open such documents in InDesign CS5 they appear to be unreadable .  Only on  selecting 'All documents' filter  I am able to open those documents.
    I want to make all such documents (which are without extension) readable with 'All Readable Documents ' also .
    How I can do that, please  help me !!!!!

    The first thing I'd do is make sure the issue is really what I suspect it is - i.e. I suspect your extension-less documents don't have the proper type and creator.
    If you fire up a Terminal window, you should be able to use the GetFileInfo command to check one of the files:
    Assume 'sampleFile' is sitting on your desktop, you'd do
    GetFileInfo ~/Desktop/sampleFile
    (not sure when/whether GetFileInfo is installed on a Mac - I think it used to be part of Apple's developer tools, but on my Snow Leopard it resides in /usr/bin)
    Check what it says for 'type' and 'creator'.
    If these are not correct, we've confirmed that that's the reason why they don't show up in your file dialog.
    If the issue is type/creator related, I can think of the following options:
    a) Change your code to accept ANY file type/extension - I suspect this would work (not tested!):
    openFileDialog->AddType( '????' );
    If memory serves right, '????' should be accepted as a wildcard.
    b) correct the file types BEFORE they are viewed in the File Dialog - for example, if these files are in a very specific folder somewhere, you might be able to scan the folder, and correct their type and creator (e.g. iterate through all extensionless files in folder 'xyz' and change their type and creator). A lot depends on how those files get there, and whether they are tied to a specific folder or not - are they 'old' files, or are they being generated in some workflow? If they're all over a user's system or all over a file server, such pre-scanning and cleaning up file types approach will be a no-go.
    Cheers,
    Kris

  • Indesign CS5.5 won't start

    Hi,
    My Indesign CS5.5 won't start. Gets to 'Initialising' then 'Adobe Indesign has stopped working' I've tried reinstalling, then uninstalling all programs in the suite, then reinstalling, then uninstalling & reinstalling just Indesign, then using the Cleanup tool. Nothing worked. Any clues please?
    Thanks
    Grant

    Hi Eugene, Peter,
    Thanks for your tips. I had some trouble actually finding those files, but I eventually moved the caches to the desktop and that fixed the problem. All going well now, thankyou.
    BTW in the process a couple of other faults were fixed as well:
    'Open recent' wasn't working and occasionally no image was loading on the screen so thanks again!
    Regards
    Grant

  • Indesign CS5.5 won't open/start after a recent windows 8 update -- how to fix?

    I just had a Windows 8 auto update happen and then my Indesign CS5.5 won't open/start. When I go to open it, it gets to the usual screen but then an error message shows up saying that Windows has encountered a problem and needs to shut the program down, and will notify me if a solution exists. What to do?

    Do you see anything useful in the Event Viewer logs? Have you tired rebooting? Does it start if you log in with a different username?

  • Indesign CS5 shortcuts won't work

    i have just installed creative suite 5 and when i came to open indesign none of the keyboard shortcuts or toolbars were there. i previously used a free trial of indesign cs4 before uninstalling it to install cs5. i have been to edit> keyboard shortcuts> set, but there is nothing there (nothing in the drop down box) and when i have tried to manually assign shortcuts it won't let me save them. i have also been to c:> program files> adobe> Adobe InDesign CS5> presets, and there are no keyboard presets saved here unlike illustrator were there is a folder called keyboard presets. if anyone can help i would be very grateful

    There is an Adobe Technote available that covers missing keyboard shortcuts etc in InDesign CS4. http://kb2.adobe.com/cps/408/kb408055.html am wondering if you are encountering a similar issue in CS5. Might be worth having a look at this.
    Cari

  • Some InDesign CS5.5 files won't open until force quit and relaunch the application (Mac) ?

    Some InDesign CS5.5 files won't open until force quit and relaunch application (Mac). It seems that this occurs rarely, but once it does it on a file, it happes every time.
    Any suggestions?

    Is your Indesign updated to 7.5.2  ?
    Where are these file saved on network or on your computer?
    Are you using any font mangement software link suitcase fusion.?

  • Indesign CS5 won't print specific pages within document

    I'm working on Indesign CS5. The issue is with a specific document, and just started happening on version 11. All previous versions of the file have printed with no problems. I have so far determined that it is a document level problem as I can print other documents in Indesign with no issues. I have also determined which pages are giving me an error message: I can print all but one spread of this 16-page document. For example, it will print pages 1-9 and 12-16, but will not print 10-11. It gives it a try, and then gives me an error message box that just reads "error: " with no code or explaination. Any one else out there experienced this or know what's going on? There's no overset text, unlinked graphics or missing fonts, if that helps. Also, I'm working on a mac.
    Edit: I have also already tried different print settings, and repasting everything into a new document that I created. 

    If that doesn't work, move the pages from spread to a new document so you can play without risking the file you have now. First, try to print the spread as-is, then if it doesn't print remove half the objects and try again. If the file prints without removing anything, then move all the pages fromthe old file to a new one and save with a new name, then try again. If you have to remove objects, there is probably a problem with one of the objects on the spread. You'll bew able to isolate it very fast by dividing the group of things that won't print in half, then dividing the half that won't print, and so on.

  • InDesign CS5 won't save rotated views as PDF

    I'm using InDesign CS5 to create a calendar. I am using rotated view for the spreads. I have page 4-27 I want to send to my client for proofing. I only want the "smallest File" for screen viewing ioption. I've never had a problem creating PDFs. This is the first time using viewer spreads rotated. Wondering if this is creating the problem.
    The background task panel has been stuck at 42% for over an hour. InD won't let me quit the save. It won't allow me to close the project window, or Force quit the program.
    Assistance needed!!!

    Thank you for your reply. I did know about the rotated view not transating in the PDF. I was wondering though if it affected the speed of the PDF creating...undoing the rotation.
    I was under a time crunch to send off a proof, so after finally force quitting ID, I saved each spread as a separate PDF and then compiled them into a multi-page PDF. It all went without a hiccup. Possibly if I had restarted my computer, opened ID and prepared the multi-pg PDF at that point, as suggested below, then it may have worked. I will be trying that at some point as I will have more comps to prepare as the project proceeds.
    Thank you.

  • Indesign CS5 won't collate prints on my LaserJet

    I recently updated a bunch of things on my Mac work computer. We upgraded to Mac OS X Version 10.6.3 and we upgraded to Indesign CS5 (previously CS2). 
    I've noticed that it WILL print collated on one of our printers (HP LaserJet 3390) but it WON'T collate on my HP Color LaserJet 4600 for some reason. When I print it, the collate button is checked but the color printer just won't collate it. So I'm thinking it's something I need to do with the printer but I looked it up and it said something like Snow Leopard should have had all the driver updates for HP LaserJets...
    I don't know much about drivers or updates or whatnot...so if anyone knows the problem, please explain it in detail. Thanks!

    Reinstall Photoshop CS5 to replace the files damaged by the MacOS 10.10 updater.

Maybe you are looking for

  • Songs won't authorize, but only when iPod is plugged in

    I have no problem playing purchased music on my computer (Windows XP, latest iTunes software), but when I plug in my iPod, I get a "This computer is no longer authorized to play purchased items that are on the iPod" message with a "Would you like to

  • Displaying table of contents

    Hi I was wondering if there is a way to display the table of contents after a certain slide.

  • Looking for still image content

    I'm currently in the process of making a spec or pre-vis for a music video. It's highly conceptual, so getting the right visuals to match the lyric content is very important. I'm off to a decent start finding things through google images, but if anyo

  • Can't activate a request

    all - I'm trying to activate a request in an ODS but i keep on getting the error message that "Request REQU_43DM9Z5JT01W4H4IHYN7QA5ZT(117,229)has not or not correctly been updated; Please edit" I'm not sure what this request is exactly.  It is not a

  • Does anyone know where you can buy an "AZERTY" keyboard or keyboard cover for Logic Pro X?

    Does anyone know where you can buy an "AZERTY" keyboard or keyboard cover for Logic Pro X? Thanks for the support.