Trying to find a general clip art library - Totally stumped

we just bought our first IMac and got IWork 08
I do a lot of desk top publishing including business cards, labels, brochures, etc
I was under the impression there was a big gallery of clip art images in this program
I can't find them anywhere
I've looked in Inspector and Media - I realize I can import my own photos, but I just want to choose from a bunch of pre-packaged
I can't seem to open finder and grab says I don't have the rights to use it
HELP please
I've very frustrated
Thanks
Su

Su-Real wrote:
So if there isn't a clip art library included, does anyone have any suggestions for a good one to get?
If you are making documents for personal use, I suggest http://images.google.com/ .
Pictures that can be distributed legally can often be found at http://commons.wikimedia.org/wiki/Main_Page .
But there are more things out there: http://www.google.com/search?q=clipart

Similar Messages

  • HT1459 I've been trying to find a belt clip for the ipod nano 7th. generation player, any suggestions!!

    I've been trying to find a belt clip for the ipod nano 7th generation player, any suggestions?? thank you for your time. bill

    Just resolved the problem. If anyone else is having the same issue you can download the latest Epson software which works fine on Lion:
    http://www.epson.com/cgi-bin/Store/support/supDetail.jsp?oid=29081&prodoid=37368 464&infoType=Downloads&platform=Macintosh
    Sorry for bothering the community was in a rush.

  • Clip Art library

    Hello,
    I create worksheets for my preschool students. Therefore I need to use many black and white images such as clip art.
    When I was using a PC with Word, it was easy as I simply had to insert images from a library on an online ClipArt site.
    Is there an equivalent for mac?

    Bogie-Bridgep wrote:
    As for fruhulda, there is nothing in this thread that is a recommendation, just file types.
    Don't be so helpless. The file types are virtually everything that is available and usable. Pages does not use any proprietary image types. It has its own internal shapes, which you can create for yourself and the App Store has more, with a few free samples, but the rest you pay for.
    Google for images on the subject matter you want and you will be flooded with choices. Tag the search with "free" if you want. You will probably find the same rubbish as used by MsPublisher.
    There are countless sites that offer low cost but high quality images.
    Even the free sites have large selections of variable quality. Some good but it is like going through the bargain bin at the shops, you'll have to scrounge to get what you want.
    There is no point us leading you there by the hand, you obviously have your own tastes and will have to do that yourself.
    If you want an included low quality library similar to MsPublisher*, try Swift Publisher.
    Peter
    * Which by the way is not free!

  • Where can I find images like clip art?

    Where can I find images to use like clip art on my mac in mavericks?

    Wow! Really, you just can't? How about all the button art from the previous versions? Can those be found somewhere and imported. The iDVD button art from the latest version (came on the iLife 11 disc) is really sparse! Can you "make" your own button art? Thanks for your help.
    ~Bond

  • Trying to find the difference between two sub-totals (sales - credits)

    Hi Everyone,
    I have the following code which essentially lists the total sales for an items on the first row, and the total credits for the same item on the second row.
    SELECT T0.ItemCode, SUM(T0.LineTotal) as 'Total Sales'
    FROM INV1 T0
    WHERE T0.ItemCode = 'ACR2401010'
    GROUP BY T0.ItemCode
    UNION ALL
    SELECT T1.ItemCode, SUM(T1.LineTotal) as 'Total Sales'
    FROM RIN1 T1
    WHERE T1.ItemCode = 'ACR2401010'
    GROUP BY T1.ItemCode
    The results of the query are shown below (with some alterations for confidentiality).
    What I would like to do is write a code block that subtracts the total credits from the total sales, leaving me with only one row of data for the ItemCode.
    If anybody can help with writing the code to achieve this it will be greatly appreciated.
    Kind Regards,
    Davo

    Hi, Please take a look and tweak accordingly. You may pay attention to nulls and manipulate accordingly. Best of luck!
    --Option 1
    SELECT t2.ItemCode,( SUM(T2.TotalSales)-SUM(TotalCredits)) AS 'Total'
    FROM
    SELECT T0.ItemCode, SUM(T0.LineTotal) as 'TotalSales',SUM(0) as 'TotalCredits'
    FROM INV1 as T0
    WHERE T0.ItemCode = 'ACR2401010'
    GROUP BY T0.ItemCode
    UNION ALL
    SELECT T1.ItemCode, SUM(0) as 'TotalSales', SUM(T1.LineTotal) as 'TotalCredits',
    FROM RIN1 as T1
    WHERE T1.ItemCode = 'ACR2401010'
    GROUP BY T1.ItemCode
    ) AS t2
    GROUP BY t2.ItemCode
    --Option 2
    SELECT t2.ItemCode, ( SUM(T2.TotalSales)-SUM(TotalCredits)) AS 'Total'
    FROM
    SELECT T0.ItemCode, SUM(T0.LineTotal) as 'TotalSales',SUM(0) as 'TotalCredits'
    FROM INV1 as T0
    --WHERE T0.ItemCode = 'ACR2401010'
    GROUP BY T0.ItemCode
    UNION ALL
    SELECT T1.ItemCode, SUM(0) as 'TotalSales', SUM(T1.LineTotal) as 'TotalCredits',
    FROM RIN1 as T1
    --WHERE T1.ItemCode = 'ACR2401010'
    GROUP BY T1.ItemCode
    ) AS t2
    WHERE t2.ItemCode = 'ACR2401010'
    GROUP BY t2.ItemCode
    --Option 3
    SELECT t2.ItemCode, ( SUM(T2.TotalSales)-SUM(TotalCredits) ) AS 'Total'
    FROM
    SELECT T0.ItemCode, T0.LineTotal as 'TotalSales', 0 as 'TotalCredits'
    FROM INV1 as T0
    UNION ALL
    SELECT T1.ItemCode, 0 as 'TotalSales', T1.LineTotal as 'TotalCredits',
    FROM RIN1 as T1
    ) AS t2
    WHERE t2.ItemCode = 'ACR2401010'
    GROUP BY t2.ItemCode
    --Assuming credit part is optional..also assuming each table should return only one row else results would inflate...option 4
    SELECT t0.ItemCode, ( SUM(T0.TotalSales)-SUM(T1.TotalSales)) AS 'Total'
    FROM
    INV1 as t0
    left outer join
    RIN1 as t1
    ON t0.ItemCode = t1.ItemCode
    WHERE t0.ItemCode = 'ACR2401010'
    GROUP BY t0.ItemCode
    --option 4 with grouping to ensure single row from each table
    SELECT t0.ItemCode, ( isnull(T0.TotalSales,0)-isnull(T1.TotalSales,0)) AS 'Total'
    FROM
    SELECT T0.ItemCode, SUM(T0.LineTotal) as 'TotalSales'
    FROM INV1 as T0
    --WHERE T0.ItemCode = 'ACR2401010'
    GROUP BY T0.ItemCode
    )as t0
    LEFT OUTER JOIN
    ( SELECT T1.ItemCode, SUM(T1.LineTotal) as 'TotalCredits',
    FROM RIN1 as T1
    --WHERE T1.ItemCode = 'ACR2401010'
    GROUP BY T1.ItemCode
    ) as t1
    ON t0.ItemCode = t1.ItemCode
    WHERE t0.ItemCode = 'ACR2401010'
    --Option 5 with grouping to ensure single row from each table.
    --Also assuming that sales or credits can be optional
    SELECT
    ISNULL(t0.ItemCode,t0.ItemCode) AS ItemCode,
    ( isnull(T0.TotalSales,0)-isnull(T1.TotalSales,0)) AS 'Total'
    FROM
    SELECT T0.ItemCode, SUM(T0.LineTotal) as 'TotalSales'
    FROM INV1 as T0
    --WHERE T0.ItemCode = 'ACR2401010'
    GROUP BY T0.ItemCode
    )as t0
    FULL OUTER JOIN
    ( SELECT T1.ItemCode, SUM(T1.LineTotal) as 'TotalCredits',
    FROM RIN1 as T1
    --WHERE T1.ItemCode = 'ACR2401010'
    GROUP BY T1.ItemCode
    ) as t1
    ON t0.ItemCode = t1.ItemCode
    WHERE (t0.ItemCode = 'ACR2401010' OR t1.ItemCode = 'ACR2401010')

  • Any place to download additional shapes, clip art, etc?

    Relative Mac Newbie here (and even more so for iWork/Keynote).
    While I still use Word and PowerPoint (for Mac), I'm trying to see how Pages and Keynote would work for me. (Love the idea of completely weening myself from Micro$oft!)
    In Keynote, I find the number of "shapes" really limiting, as well as the lack of integrated clip art.
    Is there anywhere I can download additional shapes, clipart, themes, etc?
    Thanks!

    An alternative to using Powerpoint is to import SVG files into Keynote using the command-line utility I developed:
    http://mcb.berkeley.edu/labs/zusman/dave/svg2key/
    With it you can create shapes in a graphics editor such as Inkscape or Illustrator then import them into Keynote via SVG.
    Be sure to check out The Open Clip Art Library at www.openclipart.org for some royalty-free SVG files.

  • Save me from clip art hell

    I need a realistic military vector image of a soldier. Does anyone know where I can get that? All I'm finding is cartoonish clip art.

    Some of these maybe.
    http://office.microsoft.com/en-us/clipart/results.aspx?qu=soldier&sc=21&CTT=6&Origin=EC010 17435

  • Suddenly my event library in iMovie 11 is empty.  I have tried deleting the plist, importing clips from multiple locations (to see if they show up in the library), re-installing iMovie, and re-installing Mountain Lion. Help??

    Suddenly my event library in iMovie 11 is empty.  I have tried deleting the plist, importing clips from multiple locations (to see if they show up in the library), re-installing iMovie, and re-installing Mountain Lion.
    I was working on a project, when all of a sudden the event library went blank.  There are no devices showing in the left column, only "last import" and "aperture videos".  There are no video clips in the editing window.  I have "Show: All Clips" selected.  I've tried "group events by disk". 
    When I have a Project open, it plays just fine.  There are no yellow triangles saying "source clip is missing".  Yet, again...nothing is in the event library large editing window.  So, it seems the data is still there, but invisible.  This is true with all the projects, and all the external devices I've experimented by plugging in to see if their video clips show up in the event library. 
    I have tried to import new movies, and iMovie responds as normal...looking like it's importing, then "generating thumbnails", then it makes the "ding" signalling that the import is complete...but nothing shows in the event library.  I've tried importing movies from the harddrive, from quicktime, and from an external drive.
    I have searched the forums, and found many users with a similar, but not the same, problem.  For them, it seems the "go to users-library-preferences and delete iMovie plist" has solved their problem.  This didn't work for me. 
    I uninstalled/reinstalled iMovie, I even have re-installed Mountain Lion (from a last-ditch effort suggestion from Apple technician). 
    HERE'S AN INTERESTING DETAIL:  After almost 5 hours on the phone with Apple, I decided to cut my losses and take my project to another Mac I have.  I'm working on a project, for work, that is critical that it's completed by tonight (whoops), and all my video is on an external drive.  So, I plug in the external drive to Mac #2, open iMovie, and everything is looking fine.  I continue importing some files I was converting, through Wondershare, and suddenly (whether or not this has to do with the importing, I'm not sure), the SAME THING happened to Mac #2!!!!  I can't believe this. 
    Does anyone have any suggestions?  Have you ever heard of this happening?  Could it have to do with the files I'm importing??? 
    I apologize if my language is confusing.  Obviously, I'm not an Apple genius-person!  I hope I've provided all the information you need.
    Mac #1 is a 27" desktop, mid-2012, software up-to-date.  Mac #2 is a 24" desktop, about 4 years old, OSX 10.7.5

    I'm adding more information:
    in Finder, my iMovie folders are all visible and accessible.  When I click on a clip from iMovie Events folder, Quicktime opens and plays the clip.  ALL my video is not missing - it just isn't showing up in the Event Library!
    This happened all of a sudden, while I was working on iMovie project (on both computers).
    All my Projects are intact, and play when I open them. 

  • I'm trying to find an easier way to import my music to iTunes. Even the most basic music player can scan your computer and import found music into your library. I don't want to move my MP3s into the iTunes folder, I don't want iTunes doing any conversion.

    I'm trying to find an easy way to import my MP3 collection into iTunes without moving, copying or changing it.
    I can't believe that iTunes doesn't have this feature, as even the most basic music players always have this.
    I only use iTunes to sync my iPod, as I like Media Monkey to play my MP3s.
    I have 137GB of MP3s, mainly from my ripping my CDs, LPs and downloading from Amazon. I've only purchased a handful of songs from iTunes,
    Any ideas on how to do this easily?

    DAReese13 wrote:
    I can't believe that iTunes doesn't have this feature, as even the most basic music players always have this.
    It does have that feature. Why would you assume that it doesn't?
    DAReese13 wrote:
    I'm trying to find an easy way to import my MP3 collection into iTunes without moving, copying or changing it.
    Okay, no problem.
    If the top bar menu is not displayed in top left of your iTunes Library, use the CTRL+B keys to turn it on:
    On that menu, use File/Add Folder to Library and navigate to the folder you wish to add:
    If you wish to add just one song, notice the File/Add File to Library command on that menu as well.
    Alternatively, you can drag-and-drop from the file's location into your iTunes Library.
    That's all there is to it.
    By the way, it is possible to have Amazon MP3s downloaded to your computer and then automatically added to the iTunes Library by the Amazon downloader. I do it all the time.
    Message was edited by: the fiend

  • I lost an xcel doc. Tried to find the Library folder in Users not there when use Finder. But when trying to upload a photo, iphoto found the library folder I can see my doc in Office 2011 Autorecov, but can't access it! How do I get User to show Library

    I lost an xcel doc a couple of days ago. Tried to find the Library folder in Users but not there when I use Finder (even when I do shift-command-G). But when trying to upload a photo in iphoto I found the library folder in Users. I can see my doc in Office 2011 Autorecovery, but can't access it! How do I get User to show Library then I can get to my long lost document?

    The auto recovery dat should be in the Microsoft User Data folder in your documents folder, not in the Library. However, I Haven't had to look recently.

  • I'm trying to reverb an audio clip in my timeline and I can't find the effect tab in the browser to drag to my audio clip to reverb. I can reverb the clip in the viewer but can't it won't drag to the timeline. I'm using FCE

    I'm trying to reverb an audio clip in my timeline and I can't find the effect tab in the browser to drag to my audio clip to reverb. I can reverb the clip in the viewer but it won't drag to the timeline. I'm using FCE

    You cannot drag the effects themselves to the timeline.  You add them to a clip in the Viewer, just as you have done. 
    If the clip was already in the timeline when you  opened it in the Viewer (by double-clicking it in the timeline to open it in the Viewer) and then added the reverb effect, there is nothing further to do, you have added the effect to the clip.  You don't drag it back to the timeline.
    You only have to drag the clip to the timeline if the clip was not already in the timeline (for example, if you opened the clip from the FCE Browser; or set different In and Out points in a master clip to use a different portion of the master clip in a different location in your timeline).
    Depending on the effect you add, you may have to render the timeline after adding the effect.  But I don't think reverb requires immediate rendering.  One other note, you said you were working with an audio clip ... audio clips need to be AIFF (not MP3 or something else) and preferably 16-bit stereo.

  • I am trying to find a way to play music from my I-tunes Library outside using wireless speakers..  It this possible??

    I am trying to find a way to play music from my I-tunes library outside of the house using the Ariport Express and wireless speakers if possible.. I would like to purchase some outdoor capable wireless speakers which will receive the signal from the airport Express.. Is this possible???  Do you knwo what speakers I need to buy???  I do not want to have to run speaker wires from the Airport Express to these outdoor speakers..
    Thanks for the help

    I still have the email and the order number but they are no use to me because it is more than 180 days since I ordered this from them.
    The registration cade is contained in the email Apple sent you on purchasing.

  • I'm trying to find a way to move pictures from Preview to iPhoto. Tried "rebuilding  library"...nothing happens.  Help!

    I'm trying to find a way to move pictures from Preview to iPhoto. Tried "rebuilding  library"...nothing happens.  Pictures ssomehow wound up in Preview after I needed to do a clean install (Snow Leopard) and moved files from an external drive. Help!

    If you saw the images with Preview in the other iPhoto Library, than try to open iPhoto with that Library:
    http://support.apple.com/kb/PH2505
    If the Photos are there, replace the iPhoto Library in your Pictures folder with the one from the external.  (posted by Keith)
    My response:
    The pictures don't appear in Preview in the other user account.  They also don't appear in the external drive (!!!????).  I discovered I can get the pictures into iPhoto by saving from Preview to the desktop, then importing into iPhoto, but only one at a time.
    Clearly the files are on the hard drive somewhere, but where?  The  'iPhoto library" icon that appears in my Pictures folder is a "package" which can't be opened on it's own....it's only able to be  imported into Preview.
    This feels like the Twilight Zone to me.....

  • How do I update my iPad 2 to iOS 5, I tried going to settings,general ,software update but I can't seem to find the software update button pls help :)

    How do I update my iPad 2 to iOS 5, I tried going to settings,general ,software update but I can't seem to find the software update button pls help :)

    Go to Settings > General > About and see what iOS version you are running.  If it is lower than 5, you won't find the software update button.  It was added when iOS 5 came out.  The current iOS is 5.1.1.  To update to the current OS, you'll need to connect to the computer you sync with (this is important - do not connect to a computer you do not sync with as you will lose you apps) and update the software in iTunes.  Once you have updated to the 5.1.1, the software update button will be in Settings going forward.  Make sure you have a lot of time.  Updating from below 5 to 5 or higher is a somewhat lengthy process.
    This link will provide the guidance you need:
    http://www.macworld.com/article/1162925/how_to_upgrade_your_ios_device_to_ios_5. html

  • Where can we find clip arts for iWork09 ?

    My wife and myself have bought iWork09. We could not find art clips with it? If it is not there, where can we get for cool free clip arts? Where is best tutor to learned to do iWork09? We can not watch video with out captions. Any big help will be appericated. Thanks your time..

    Free *Clip Art* is somewhat scattered on the web but try:
    http://www.AllSilhouettes.com
    http://www.colorburned.com/freebies
    http://www.gloomus.com
    http://www.dezignus.com
    http://www.craftsmanspace.com
    http://www.free-vectors.com
    http://www.deviantart.com
    http://www.multimedia-stock.com
    This is just a small collection. Search for the many free samples available as well.
    For *Training Videos* see Apple's videos at:
    http://www.apple.com/iwork/tutorials/#pages
    By all means go to the *Apple Store presentations* if one is close by, but you will find those a short overview and sales spiel, with some limited oportunity to ask questions,
    Peter

Maybe you are looking for

  • [Mac] Could not complete your request because of a program error.

    Hello, I've got the problem with opening the file. It was saved in Photoshop CS 6, everything was ok, but after opening the file in few seconds here the message "Could not complete your request because of a program error." What should I do?? It was m

  • Migrating from MySQL to Oracle 11g

    can u tell me the steps to migrating database from MySQL to Oracle using SQL Developer? I have installed Oracle 11g(11.1.0.6.0) in server and SQl Developer in my local system. I connected to MySQL and Oracle in SQL Developer and tried to MIgrate ever

  • Error in using Files

    Hi, I am trying to write data into a new file and it gives me "invalid file operation" error. Please advise. Code set serveroutput on Declare test_file UTL_FILE.FILE_TYPE; S varchar2(200); Begin test_file := UTL_FILE.FOPEN('C:\','test.txt','W',999);

  • JMS distributed queue on response

    I have an ALSB business service sending requests to a distributed JMS queue and getting a response back from a distributed JMS queue using the correlation ID correlation pattern. This approach seems to work just fine in my tests, but the ALSB documen

  • BLOB with RTF with Arabic strings

    ORACLE 10.1.0.5.0. NLS_CHARACTERSET: AL32UTF8 NLS_LANGUAGE: ITALIAN We have a table with a BLOB colum. In that column, we have a rich text format file and it can contain text in different languages (Arabic, chinese, italian, vietnamese, french, spani