Using Powerpoint in Microsoft Word- trying to inset music to slide

3.
To insert a sound from another location, click Sound from File, locate the folder that contains the sound, and then double-click the sound you want.
A sound icon appears on the slide.
This is the instruction in the help Menu.
I choose Insert-Movies and sounds-sound from File.
I am then unable to navigate to itunes because if I choose applications-itunes, itunes is grayed out not highlighted. I am able to access an older version of itunes library saved on my desktop. I can insert from a CD.
Anyone know why I navigate to current itunes library, please?

Your iTunes library is not located in the
Applications folder, and you don't access those sound
files via the iTunes application. Instead navigate
to the /Home/Music/Itunes/iTunes Music/ folder.
That's were the sound files are located.
Hi Kappy. thanks for taking time on my question. My problem is now this. I navigate Home-music-itunes-and then i get itunes music(highlighted and accessible). this is an older itunes library. What i want to access but cannot is the current itunes library, which is grayed out. Yrs puzzled.

Similar Messages

  • Does anyone know if you can use dictation with Microsoft Word?

    I am looking to get Moutian Lion but was just wondering if you can use dictation for Microsoft Word or any other word document program.
    Thanks a million!!
    Beau

    I have personally used it with Word and it does work.  I even think I remember reading that you can use it with any program in which you can type.  Go to settings on your macbook to make sure it's turned on.  Chances are your shortcut to access dictation is pressing the Fn key twice.

  • Can Java be used to parse Microsoft Word(.doc) files?

    Hi guys ,
    I want to know whether Java can be used to parse Microsoft Word(.doc) files for searching a string or for checking for grammatical errors, etc
    Thanks in advance.
    Avichal

    Hey man, anything and every thing can be done these days.
    About ur question doc is like all other normal text files with some extra features and extra character supports and other stuffs.
    If u neglect those parts and if u consider it to be a normal text file then its a much simpler job.
    Here is a code that searches for the key word in all the doc files, txt files, pdf files and html files
    in the mentioned folder and sub folders. Any way its a servlet u can change it to a normal program.
    It first check the file to know whether they are doc, pdf, html or txt files if yes then it will read the file and
    store the contents in the vector and parse the vector for the search string and display the result.
    Along with the result the below code will also display the time taken and the number of search string found in the document
    import java.io.*;
    import java.util.*;
    import java.net.*;
    import javax.servlet.*;
    import javax.servlet.http.*;
    public class search_local extends HttpServlet
         public void service( HttpServletRequest _req, HttpServletResponse _res ) throws ServletException, IOException
              long startTime = System.currentTimeMillis();          
              File RootDir     = new File( _req.getRealPath( "/docs/" ) );
              if ( RootDir.isDirectory() == false )
                   System.out.println( "Invalid directory" );
                   _res.setStatus( HttpServletResponse.SC_NO_CONTENT );
                   return;
              Vector kList = new Vector( 3 );
              StringTokenizer st = new StringTokenizer( _req.getParameter( "search_text" ), "+" );
              while ( st.hasMoreTokens() )
                   kList.addElement( st.nextToken().trim() );
              //- Run through list
              Vector toBeDone     = new Vector( 10 );
              Vector found     = new Vector( 10 );
              String dir[] = RootDir.list( new htmlFilter() );
              cDirInfo tX = new cDirInfo( RootDir, dir );
              toBeDone.addElement( tX );
              while (  toBeDone.isEmpty() == false )
                   tX = (cDirInfo)toBeDone.firstElement();
                   try
                        int x = 0;
                        for ( ;; )
                             File newFile = new File( tX.rootDir, tX.dirList[x] );
                             if ( newFile.isDirectory() )
                                  File t = new File( tX.rootDir, tX.dirList[x] );
                                  String a[] = newFile.list( new htmlFilter() );
                                  toBeDone.addElement( new cDirInfo( t, a ) );
                             else
                                  int freq = searchFile( kList, newFile );
                                  if ( freq != 0 )
                                       found.addElement( new cPage( freq, newFile ) );                              
                             x++;
                   catch( ArrayIndexOutOfBoundsException E ){}
                   toBeDone.removeElementAt(0);
                   dir     = null;
              long totalTime = System.currentTimeMillis()     - startTime;
              formatResults( found, kList, totalTime, _req.getRealPath( "/docs" ), _res );
         private void formatResults( Vector _fList, Vector _kList, long time, String _root, HttpServletResponse _res ) throws IOException
                 _res.setContentType("text/html");
              PrintWriter Out = new PrintWriter( _res.getOutputStream() );
              Out.println( "<HTML><HEAD><TITLE>Search results</TITLE></HEAD>" );
              Out.println( "<BODY><H3>Search Results</H3><BR>" );
              Out.println( "Keywords:<B> " );
              Enumeration E = _kList.elements();
              while ( E.hasMoreElements() )
                   Out.println( (String)E.nextElement() + " : " );
              Out.println( "</B><BR><BR><CENTER><HR WIDTH=100%></CENTER><BR>" );
              E = _fList.elements();
              cPage sPage;
              String link;
              while ( E.hasMoreElements() )
                   sPage = (cPage)E.nextElement();
                   link  = sPage.cFile.toString();
                   link  = "http://localhost/BugFix/docs/" + link.substring( link.indexOf( _root )+_root.length(), link.length() );
                   Out.println( "<FONT SIZE=+1><A HREF=" + link + ">" + sPage.cFile.getName() + "</A></FONT>" );
                   Out.println( "<FONT SIZE=-2>(" + sPage.freq + ")</FONT><BR>" );
              if ( _fList.size() == 0 )
                   Out.println( "<I><B>No sites found!</I></B><BR>");
              Out.println( "<BR><CENTER><HR WIDTH=100%></CENTER>" );
              Out.println( "<BR><FONT SIZE=-1>Time to complete: " + ((double)time/1000) + " seconds</FONT>" );
              Out.println( "</BODY></HTML>" );
              Out.flush();
         private int searchFile( Vector _klist, File _filename )
              //- Links the file
              int     frequency=0;
              try
                   DataInputStream In     = new DataInputStream( new FileInputStream( _filename ) );
                   String LineIn, token;
                   boolean bValid = true;
                   Enumeration E;
                   cLineParse lp;
                   while ( (LineIn = In.readLine()) != null )
                        lp = new cLineParse( LineIn.toUpperCase() );
                        while ( (token=lp.nextToken()) != "" )
                             if ( token.indexOf( "<" ) != -1 && (
                                   token.indexOf( "<A" ) != -1 ||
                                   token.indexOf( "<HE" ) != -1 ||
                                   token.indexOf( "<APP" ) != -1 ||
                                   token.indexOf( "<SER" ) != -1 ||
                                   token.indexOf( "<TEX" ) != -1  ))
                                  bValid  = false;
                             else if (     token.indexOf( "<" ) != -1 && (
                                            token.indexOf( "</A" ) != -1 ||
                                            token.indexOf( "</HE" ) != -1 ||
                                            token.indexOf( "</APP" ) != -1 ||
                                            token.indexOf( "</SER" ) != -1 ||
                                            token.indexOf( "</TEX" ) != -1  ))
                                  bValid  = true;
                             else if ( bValid )
                                  E = _klist.elements();
                                  String key;
                                  while ( E.hasMoreElements() )
                                       key     = ((String)E.nextElement()).toUpperCase();
                                       if ( token.indexOf( key ) != -1 )
                                            frequency++;
                   In.close();
              catch( IOException E ){}
              return frequency;
    class cPage extends Object
         public int     freq;
         public File cFile;
         public cPage( int _freq, File _cFile )
              freq = _freq;
              cFile = _cFile;
    //- End of file
    //----- Supporting classes
    class htmlFilter implements FilenameFilter
         public boolean accept(File dir, String name)
              File tF     = new File( dir, name );
              if ( tF.isDirectory() )
                   return true;
              int indx = name.lastIndexOf( "." );
              if ( indx == -1 )
                   return false;
              String Ext = name.substring( indx+1, name.length() ).toLowerCase();
              if ( Ext.equals( "html" ) ||
                    Ext.equals( "pdf" ) ||
                    Ext.equals( "txt" ) ||
                    Ext.equals( "doc" ) )
                    return true;
              return false;
    class cDirInfo
         public File     rootDir;
         public String[] dirList;
         public cDirInfo( File _r, String[] _d )
              rootDir     = _r;
              dirList = _d;
    class cLineParse
         String L;
         public cLineParse( String _s )
              L = _s;
         public String nextToken()
              String ns="";
              boolean bStart = false;
              for ( int x=0; x < L.length(); x++ )
                   if ( L.charAt(x) == '<' && ns.length() != 0 )
                        L = L.substring( x, L.length() );
                        return ns;
                   else if ( L.charAt(x) == '<' )
                        ns     = ns + L.charAt( x );
                        bStart = true;
                   else if ( L.charAt(x) == '>' ||
                               L.charAt(x) == '\r' ||
                         ( L.charAt(x) == ' ' && bStart == false ) )
                        ns     = ns + L.charAt( x );
                        L = L.substring( x+1, L.length() );
                        return ns;
                   else
                        ns     = ns + L.charAt( x );
              L = "";
              return ns;
    }

  • What can i use instead of microsoft word that has the same capabilities for school work etc

    what can i use instead of microsft word that has the same capabilities so i can do school work etc.

    You could use LibreOffice which is a free open source Office clone. The only downside is that by default it ddoesn't save in Office formats, you have to specifically choose that option. GoogleDocs is another free Office like product.

  • How do use iCloud with Microsoft word, excel and power point? are they compatible

    i am trying to use i cloud with mircosoft word and excel but i am not sure if its compatible. do i first need to purchase pages?

    The kernel failure panic kind of message points to some other activity;
    as such, it may be there could be a conflict in some applications; as a
    logical failure is indicated by the first part of the message content.
    Whether or not any common kernel panic resolution ideas could work
    in regard to the trigger of this action, is another matter & unresolved.
    Reading and understanding the resulting logs is part of this resolution;
    the following link has information on these kinds of issues in general.
    Technical Note TN2063: Understanding and Debugging Kernel Panics
    http://developer.apple.com/mac/library/technotes/tn2002/tn2063.html
    Resolving Kernel Panics:
    http://www.thexlab.com/faqs/kernelpanics.html
    If there were more, perhaps from another error log in the system, to
    point to other contributing factors in the cause of this action & report,
    some course of correction could be indicated; should that involve a
    reinstall of certain programs (and their update files, as Office has) or
    perhaps removing other seldom used applications if they were proven
    to be part of conflict in the system, with Office triggering its appearance.
    Some troubleshooting of this issue may point to some course of action
    and if the problem is only software-based, then it may involve testing
    or moving, or reinstalling some applications. There is a chance, too,
    that something else may be acting up at a low-level of the system. If
    that were the case, sometimes a re-install of the system on a wiped
    and zeroed drive would be a path to consider to test or resolve this.
    But only after other things have been tried. If you have a full backup
    of the computer's contents on a bootable external drive, that would be
    a means of testing the computer itself.
    Good luck & happy computing!

  • I just upgraded to 10.7.2 and now I can't use Adobe CS, Microsoft word or Xcel for Mac.  I can not afford to purchase these again.  any Ideas?

    This all started when we noticed our phone's and calendars were not syncing.  We thought it was because we needed to upgrade from Leopard to Lion and because of ICloud.

    You must have PPC-only versions of the software which cannot be used in Lion. If you can't upgrade the software, then you will need to downgrade to Snow Leopard:
    Downgrade Lion to Snow Leopard
    1.  Boot from your Snow Leopard Installer Disc. After the installer loads select your language and click on the Continue button.  When the menu bar appears select Disk Utility from the Utilities menu.
    2. After DU loads select your hard drive (this is the entry with the mfgr.'s ID and size) from the left side list. Note the SMART status of the drive in DU's status area.  If it does not say "Verified" then the drive is failing or has failed and will need replacing.  SMART info will not be reported  on external drives. Otherwise, click on the Partition tab in the DU main window.
    3. Under the Volume Scheme heading set the number of partitions from the drop down menu to one. Set the format type to Mac OS Extended (Journaled.) Click on the Options button, set the partition scheme to GUID then click on the OK button. Click on the Partition button and wait until the process has completed.
    4. Quit DU and return to the installer. Install Snow Leopard.
    This will erase the whole drive so be sure to backup your files if you don't have a backup already. If you have performed a TM backup using Lion be aware that you cannot restore from that backup in Snow Leopard (see below.) I suggest you make a separate backup using Carbon Copy Cloner 3.4.1.
    If you have Snow Leopard Time Machine backups, do a full system restore per #14 in Time Machine - Frequently Asked Questions.  If you have subsequent backups from Lion, you can restore newer items selectively, via the "Star Wars" display, per #15 there, but be careful; some Snow Leopard apps may not work with the Lion files.

  • Itunes says that 5 computers are already authorized to be used with my account when trying to play music that will not sync to my Ipod, but when I go to deathorize all in the store, it says only one is authorized. If I deathorize in the store and Itunes

    10 GB of the 30 GB of music on my computer will not sync to my Ipod. This started after I got a new PC w/ windows 7 on it. All of the music, that will not sync, is music I bought and paid for through Itunes. When I go to the Itunes store it says I have only 1 computer authorized (the one I am on). When I try to play the music that is not getting synced, it says that 5 computers are already authorized. I have tried deathorizing the computers from Itunes and Itunes store. I have also tried deauthorizing the account. I am getting the same result. I have tried DRM stripping software but all seem to need Itunes or WMP to play the music in order to be re recorded without the DRM. In my mind there must be some simple way to really get the computers deauthorized from my account and be able to play the music that I paid apple for. Does anyone have any suggestions or is this common for apple,s products to do?

    In order to get those to work you will have to upgrade to Snow Leopard 10.6.8.
    Start by checking if you can run Snow Leopard:
    Requirements for OS X 10.6 'Snow Leopard'
    http://support.apple.com/kb/SP575
    The OS 10.6 Snow Leopard install DVD is available for $19.99 from the Apple Store:
    http://store.apple.com/us/product/MC573/mac-os-x-106-snow-leopard
    and in the UK:
    http://store.apple.com/uk/product/MC573/mac-os-x-106-snow-leopard
    but nobody knows for how long it will be available.
    When you have installed it, run Software Update to download and install the latest updates for Snow Leopard, preferably the full 10.6.8 combo updater.

  • How to use applescript to enter a contact in Microsoft Word

    I am new to applescript, but I am trying to find a good way to use applescript in Microsoft Word along with Dragon Dictate for Mac to automate writing a letter. Dictate allows me to use applescript upon saying a command. What I would like to do is to be able to say "write a letter to ..." and it open my letter template and enter the persons contact info from the address book. There is a contacts menu item in Word that you can double click on the contact and it will paste it into the document, but it would be nice to be able to have it do it automatically without having to keep clicking.
    Any help is appreciated.
    Thanks!
    Ethan

    It's a sheet, not a "modal". This script should tell you if it's up or not:
    tell application "System Events"
      tell process "Safari"
      tell window 1
      if exists sheet 1 then
           display dialog "Sheet is Up"
      else
                display dialog "No sheet"
    end if
    end tell
    end tell
    end tell

  • I just down loaded lion. now my mac tells me i can't open microsoft word or powerpoint

    I just downloaded Lion. Now my mac tells I can't open the previously ok microsoft powerpoint or  microsoft word.
    How can I get similar programmes and
    How can I open all the  data I have on powerpoint presentetaions or on word?
    Pleas can anybody help,
    with many thanks
    sissisissi

    Hello,
        I ran into the same issue today.  I upgraded to Lion and my MS Office 2004 wouldn't work.  As QuicktimeKirk said, that version was built for the PowerPC chip, not the current Intel chips.  If you want to stay with MS-Office, there is no work around.  You'll have to upgrade.
        My solution was to buy MS-Office Mac Home and Student 2011 - Family Pack from Amazon.com.
        I chose the download version and paid $99.82.  Here's the link:  http://www.amazon.com/gp/product/B004E9SKBO/ref=oh_o00_d_i00_details
        I downloaded the file (~900MB) this afternoon and installed the software.  No issues with the install.  Make sure you print or screen print a copy of the license key. 
        As a side note, my old version of Quicken 2007 also wouldn't work and I had to upgrade my old version of Parallels as well.
        I hope this helps.

  • Document library in Explorer showing empty folder and edit in microsoft word not is also not working

    Hello
    I am facing strange issue. I have two different SP2010 environment on two different servers i.e. dev1 and dev2 and each envionment we have one web application i.e.
    http://dev1/ and http://dev2/
    I am testing this environment from my desktop which has Windows 7, IE8, Office 2010.
    I tested Dev1 url on my desktop, and able to open document library using windows explorer, I am able to see files and folders. I am also able to use "Edit in Microsoft Word" is options is working on my desktop. Infact tested on other machine, it
    is working fine.
    Then I tested Dev2 url, I am able to open dcument library using windows explorer on my desktop, but it is not showing any files and folders and when I tried to to use "Edit in Microsoft Word" got the error "The document could
    not be opened for editing. A Microsoft SharePoint Foundation compatible application could not be found to edit the document". When I test dev2 url on other machine it is working without any problem. However I am able to upload and download from the document
    library.
    I googled a lot but could not findout a perfect solution, Please let me guide what I am missing here.
    Avian

    Hi Avian,
    Which suggestions did you do for resoving this issue?
    Below are some troubeshotting for you:
    Make sure your IE 8 is 32-bit
    Add the URL of dev2 to Trusted Site
    Make sure that SharePoint OpenDocumentsClass and SharePoint OpenXMLDocuments are enabled as IE Options->Programs->Manage add-ons
    Repaire Office 2010 under Control Panel
    Here is a similar post, in the reply section, there are some suggestions, please take a look at:
    http://social.technet.microsoft.com/Forums/projectserver/en-US/3e8c0976-2794-49a2-92fe-6a254b3cc4ca/a-microsoft-sharepoint-foundation-compatible-application-could-not-be-found?forum=projserv2010setup
    Also check whether this link is useful:
    http://support.microsoft.com/kb/2823322/en-us
    I hope this helps.
    Thanks,
    Wendy
    Wendy Li
    TechNet Community Support

  • HT4796 I have made a file using the Pages app.I mailed it to a friend.When she tried opening the same file on her pc at home , It did not open.Please help me as to how to open the file in the Microsoft word format on her pc.

    I have made a file using the Pages app.I mailed it to a friend.When she tried opening the same file on her pc at home , It did not open.Please help me as to how to open the file in the Microsoft word format on her pc.

    Send it as a PDF.

  • Microsoft word 2008 crashes abruptly when trying to use track changes

    Hi,
    I believe this may be related to recently downloading Yosemite:
    Every time I try to use Microsoft Word (2008) with "track changes" on, Word shuts off abruptly.
    Has any one else had this problem?  Is there a way to fix it?
    I've already tried Disk Utility - disk & disk permissions repair.
    Help would be greatly appreciated.
    Thanks.

    You should note that this forum is for troubleshooting Apple Software Update for Windows, a software package for Windows designed to update Apple products that run on Windows, and not related to Microsoft Office or your question in any way. If you have issues or questions about Office, it's probably best you post Office related questions on Microsoft's own forums for their Mac products.
    http://www.officeformac.com/productforums

  • Error -2147319779 Library not registered when trying to use ActiveX to open microsoft word

    Hi
    I am having problems when I try to run an executable on a PC.  My Development PC that has Labview 8.2 and Microsoft Word 2000.  I am able to run my vi (see pic attachement) without any problems.  I compile it as an executable and run it on my Development PC and everything still works ok.  I deployed it on another machine with Labview Run-Time Engine Version 8.2 and it works ok.  I tried it again on a third PC and get the following error
    Error -2147319779 Library not registered
    All PC's are running windows XP and all have microsoft word 2000 installed.
    I have tried uninstalling National instruments software (Run-time Engine) as well as Microsoft Word on the failing PC, but still no luck.
    Does anyone have any suggestions.
    Thanks
    Steve
    Attachments:
    open word and save changes.jpg ‏59 KB

    Hey Steve,
    I hate to throw links at you, but it appears this problem has occurred with developers before.
    Easy text Report.VI...not so easy (You have to love a title like that)
    Problem with LabVIEW Run Time communicating with Access Database
    These links may not seem relevant to your issue, but at its base the Report Generation and Database Connectivity toolsets are simply ActiveX/.NET calls into Microsoft products (or ODBC, etc.). This is similar to what you're doing.
    Also, I would try reinstalling MS Office. This has been known to solve the problem.
    Cheers.
    | Michael K | Project Manager | LabVIEW R&D | National Instruments |

  • Formatting Numbers with BPC NW 10.0 SP19 1 in Microsoft Word & PowerPoint 2010

    Dear BPC Experts,
    We are trying to use the BPC Add-in for Microsoft Word and PowerPoint; however, we cannot figure out how to get the numbers in a report properly formatted.
    I created a report directly in Word:
    Then, on the EPM Ribbon I attempted to go to Options>Document Options and use the Formatting tab Number Format field and received the popup:
    Error details:
    I Copied a report from the Excel Add-in Report Actions>Copy Report to PowerPoint Report Actions>Paste Report but the number formatting is lost and I get the same error as with Word if I attempt to use Options>Presentation Options.
    Any assistance with number formatting with the Word or PowerPoint Add-ins would be greatly appreciated.
    Thank you,
    Lisa

    Hello Lisa,
    Its simply saying that the both formats are different so its unable to apply the formatting.
    in order to apply formatting in Word we have a special tab Design.
    first create a report and then next go to design tab and choose any one of the default formatting table.
    the formatting should be vary dynamically. please see the below images as reference.
    Before formatting report looks like this
    After Formatting by using design tab
    Dynamic expansion
    I feel its little bit difficult when compared to excel...
    Regards,
    Saida Reddy G

  • So I've been trying to open some Microsoft Word Documents and it says it can't be opened because PowerPC applications are no longer supported. What do I do about this?

    So I've been trying to open some Microsoft Word Documents and it says it can't be opened because PowerPC applications are no longer supported. What do I do about this?

    Workarounds:
    1.  Restore the OS X that you formerly used to run Word 2004;
    2.  Partition your hard drive or attach an external hard drive and install Snow Leopard (and Rosetta) so that you can "dual-boot" into Microsoft Word 2004;
    3.  Upgrade to Word 2011 or use an alternative program; or
    4.  The solution I use: Install Snow Leopard (and Rosetta) into Parallels 7 or 8:
                                  [click on image to enlarge]
    Full Snow Leopard installation instructions here:
    http://forums.macrumors.com/showthread.php?t=1365439

Maybe you are looking for

  • Remove custom scaling DAQmx

    What I am working on is a calibration VI so that a user may come up with scales for different channels in their DAQ tasks which they create in MAX. When I start my VI, I create a copy of the existing task from MAX because that task includes the chann

  • CARACTERES EXTRAÑOS ORACLE REPORT 6I (STRANGE CHARACTERS ORACLE REPORT 6I)

    Español: Hola compañeros. Estoy utilizando Oracle Report 6i y cuando quiero imprimir un reporte en modo caracter me aparecen unos extraños simbolos al final de las lineas, como se puede apreciar en la imagen: English: Hello fellow. I am using Oracle

  • 3 Node hyper-V 2012 R2 Failover Clustering with Storage spaces on one of the Hyper-V hosts

    Hi, We have 3x Dell R720s with 5x 600GB 3.5 15K SAS and 128 GB RAM each. Was wondering if I could setup a Fail-over Hyper-V 2012 R2 Clustering with these 3 with the shared storage for the CSV being provided by one of the Hyper-V hosts with storage sp

  • EDI Scenarios

    Hi, With regarding to EDI scenarios with XI and seeburger, would like to get input on the following. As the technical stuffs of conversion can be done with seeburger, is it easy or hard to prepare the mapping specifications from EDI to idoc xml. Do w

  • Time Machine wont back up iPhoto Library on External Hard Drive

    I have tried and tried, but I cannot get Time Machine to successfully back up my iPhoto Library on an external hard drive. I found out the hard way that TM was not backing up iPhoto. Sometime TM would work and other times it would not. I realize now