Need help finding a symbol library...

hi,
i created a postcard in illustrator (i believe it was a trial version, but i don't remember which version) and used some nice swirly images that i believe were from one of the symbol libraries.
i've tried finding the symbols again (not a type style).  i can't find it anywhere in CS3. a friend of mine tried finding it on her CS4 but can't find it.
here's an example, maybe someone can help me remember where it is, or point me in the right direction if it can be downloaded.

Lizard,
There is some free stuff such as swirlies that may be downloaded from different sites, such as
http://www.adobe.com/cfusion/exchange/index.cfm?s=5&from=1&o=desc&cat=-1&l=-1&event=produc tHome&exc=17
http://www.free-vectors.com/free_vector_graphics_pack/99_illustrator_free_brushes.html
http://createsk8.com/about/
You may use something like that as an alternative. That is, unless you actually did downloaded that something then.

Similar Messages

  • HT1349 I need help finding an old library that itunes states my ipod is already linked to

    I need help finding an old library that it states my ipod is already linked to.  My computer recently had a terrible virus and needed to be wiped clean.  I had to redownload itunes and I bought several songs.  I want to add them to my old library because I had several cd's that I had uploaded.  Is there a way to find that old library and combine them without having to erase all the songs that are currently on my ipod???  Thanks

    Umm.  If you wiped the hard drive, then all old libraries are gone unless you have them on backup.

  • HT5622 I need help finding a movie that I downloaded, can anyone help me with this?

    Hello, I need help finding a movie that I downloaded, can anyone help me with this?

    If you downloaded it to your iTunes library it will be in the Movies folder.  If you downloaded it to an iOS device you will find it in the Videos app.  This explains how to redownload previously purchased videos (available in some locations as long as the studio permits it): http://support.apple.com/kb/PH12283.

  • Need help finding my iphone serial number but my phone is dead

    Need help finding my iphone serial number but my phone is dead

    no one here can help you find it.

  • I need help finding this hp hard drive for dv6521eo

    I need help finding this hp hard drive and memory  for dv6521eo

    Hi:
    You can purchase any SATA II 2.5" notebook hard drive up to 500 GB in size.
    Memory is PC2-6400.
    Paul

  • Need help finding a driver for my hp webcam . My computer say I dont have a camera but I do.

    Need help finding my camera[webcam] on my computor.

    Can you provide us with your computer model number?  Take a look in Device Manager to see if there is an Imaging Devices group that includes the webcam.  If not, is there an Unknown Device listed?  This would indicate that your webcam is detected, but there is no driver installed.  We can help you find the correct driver if that is the case.  Let's start with the computer model number.  Thanks.
    I am an HP employee. The opinions expressed are my own and not those of HP.

  • Need help finding Sound and Vibration Toolkit Example Files

    I need help finding some Sound and Vibration Toolkit Example Files?
    http://www.ni.com/white-paper/3779/en
    From this link you get:  getting_started_otb.llb
    The missing files are:
    OAT Truncate Time Indices.vi
    Speed profile.ctl
    oa_Config Time or RPM Segment.vi
    svl-Complex Datatype Default.vi
    Running Windows 7, LabVIEW 2011, 32bit
    Sound and Vibration Measurement Suite
    Sound and Vibration Toolkit
    Thanks,
    -SS
    Solved!
    Go to Solution.
    Attachments:
    License S and V.png ‏4 KB

    SS,
    You can find these files here:
    C:\Program Files (x86)\National Instruments\LabVIEW 2011\vi.lib\addons\Sound and Vibration\Order Analysis\Resample Order Tracking\SubVIs
    C:\Program Files (x86)\National Instruments\LabVIEW 2011\vi.lib\addons\Sound and Vibration\Order Analysis\Tach Process\SubVIs
    C:\Program Files (x86)\National Instruments\LabVIEW 2011\vi.lib\addons\Sound and Vibration\Order Analysis\Resample Order Tracking\SubVIs
    svl-Complex Datatype Default.vi changes to svc-Complex Datatype Default.vi
    C:\Program Files (x86)\National Instruments\LabVIEW 2011\vi.lib\addons\_NISVFA\_Shared subVIs\Common
    Make sure you are license activated, and you will have to dig through the *vi and relink a subvi.
    Then you should get a white arrow.
    -SS 

  • HT4061 i need help finding my iphone 4

    i need help finding my iphone4.  i didnt have the app find my iphone i bought the phone from my friend ... so i dont know the serial number but i do have his name and phone number also it carrier plan .... i need to freeze the phone they are able to make call to my family member that have iphone

    If you did not set up the find my iphone feature on the iphone itself then you cannot track it.
    Change your passwords and alert your carrier

  • I lost my iPod I need help finding it.

    I lost my iPod and need help finding it. It took me a long time to save my money for someone to come and still it please help me

    - If you previously turned on the FIndMyiPod feature and location service is on, and wifi is on and connected go to iCloud, sign in, and go to FindMyiPhone. It the iPod has been restored it will never show up.
    - Report to police and change the passwords fro all accounts used on the iPod.
    - Apple will not help
    Reporting a lost or stolen Apple product

  • Need help finding the best Mac for gf

    hi I need help finding the best desktop. I am looking to buy MAC for gf.
    she uses final cut program question is does the GB/RAM/STORAGE matter on performance?
    She has a 2009 Apple computer I want to upgrade her to a new one
    I Dont know much when it comes to specs. She edits tons of videos and pictures.
    what's recommended for a video/photo editor that's good in performance ?

    Pro consumer might go with iMac even.
    Final Cut Pro latest benefits from dual AMD graphics.
    Video is one animal, graphics a much different.
    Great site full of performance, buying and configuration ideas:
    MacPerformance Go to the main topics
    I think you need to get clear on budgets. start with mid range and add all the options and can spend $4,000 or $7,000.
    Go to the Mac Store and do some looking and Google for reviews of software, hardware of course.
    Barefeats
    Rumors Pro
    Visit the forum for FCP-X would be a place to start.
    Final Cut Pro X

  • Need help finding errors.

    I need help finding the error(s) in my code. I am writing a program to convert decimal to binary. It is not an application. It is more of a blue print for an object.
    The Program is:
    public class DecimalToBinary
         private long decimal;
         private long binary;
    //Constructor setes the variable decimal and coverts and sets the variable binary
    public DecimalToBinary(int decValue)
         decimal = (long)decValue;
         binary = convert(decValue);
    //This method does the actual conversion from decimal to binary
    public long convert(long dec)
              long remainder = 0; //Start with initial value
         String bin = ""; //Start with a blank string
              while (dec > 0)
              remainder = dec%2; //get remainder
                   dec /=2; //get the number divided by 2
                   bin = remainder + bin; //concatenate the remainder to string
         return Long.parseLong(bin);
         //Accesor methods to get the value of decimal
    public long getDecimal()
         return decimal;
    // Accessor Method to return binary Value
    public long getBinary()
         return binary;
    // To string to represent Object.
    public String toString()
         String result = "";
    result = decimal +"\t\t\t" +binary;
         name1.getDecimal()     
         return result;
    The error I am getting is:
    DecimalToBinary.java:56: ';' expected
         name1.getDecimal()     
         ^
    1 error
    ----jGRASP wedge2: exit code for process is 1.
    ----jGRASP: operation complete.
    I've tried putting the ; in there but it doesn't help and only throws another error.

    Did you read the error message?
    DecimalToBinary.java:56: ';' expected
    name1.getDecimal() What is missing? Can you see where on the line of code it has identified that the missing thing is?

  • I need help finding photos just downloaded to Lightroom...they only show up in "previous downloads" and not in a folder in my pictures

    I need help finding phots just downloaded to lightroom...they only show up in "prevoious downloads" and not in a folder in my pictures.  what can I do to correct this?

    Also, please be aware that Lightroom is not a file browser like your operating system Finder or Explorer is. If the photos are not in the folder you expected them to be in, it is because you (accidentally) imported them into a different folder.

  • TS1424 i need help finding a purchase that somebody made on my cedit card without my knowledge to itunes and i want to file a claim

    i need help finding a purchase that somebody made on my cedit card without my knowledge titunes and i want to file a claim

    You can view purchases via Store > View My Account on your computer's iTunes (and you can view subscriptions). If you want to contact iTunes support then you can do so via this page : http://www.apple.com/support/itunes/contact/ - click on Contact iTunes Store Support on the right-hand side of the page, then Purchases, Billing & Redemption

  • Need help finding a audio system ( stressed)

    I have cd with over 100 songs , and I need help finding  a boombox  that will play the CD anyone have any idea, I got no help from the store.

    here are the  specifications  for Philips eXpanium eXp 2461 , if somone can help me find a boomboox with simular specifications it would very helpful
    Philips eXpanium eXp 2461 - CD / MP3 player
    CD System
    CD system type CD / MP3 player
    Media load type Top-load
    Playback modes Repeat all,
    Resume play,
    One track repeat
    CD system response bandwidth -19980.0 Hz
    Signal-to-noise ratio 85.0 dB
    CD shockproof memory 45 seconds
    MP3 shockproof memory 100 seconds
    CD-R compatible Yes
    CD-RW compatible Yes
    CD track programming Yes (50 tracks)
    Digital audio standards supported MP3
    Supported bit rate 32 - 320Kbps
    General
    Product type CD / MP3 player
    Weight 8.0 oz
    Carrying Case
    Case type None
    Built-in Display
    Audio system built-in display LCD
    Audio Features
    Sound effects Digital Dynamic Bass Boost (Digital DBB)
    Sound output mode Stereo
    Additional features

  • HT1657 My movie has disappeared need help finding it

    My movie has disappeared need help finding it

    I downloaded it on the iTunes store on my computer.
    I seen it downloading on iTunes under the rentals folder. Once the download was complete and it started processing iTunes froze for a bit and the movie pulled a Harry Houdini. I checked under purchased, movies, and looked for the rentals folder and got nothin'.

Maybe you are looking for

  • BAPI for scheduling entire project?

    Hi!, we need to simulate a scheduling depending on dates introduced by user. Does anybody know if its possible to schedule entire project via function or similar ECC 6.0?. CJ29 seems to be difficult becase log of changes are shown in ALV... Thanks fo

  • HP 8750 Printer missing since Leopard upgrade on home wireless network

    My HP 8750gp is connected (ethernet not USB) to my BT Voyager 2100 wireless router and worked fine under Tiger. Since the upgrade to Leopard, it does not appear as an available printer. Tried re-installing drivers from Leopard DVD, HP installation cd

  • How to make lines for "fill in the blanks?" (iWork Pages 09)

    This should be easy since it's something many people do: design a form for others to fill out with a pen or pencil.  However, I can't find any information regarding how to make a line after text, like this: Name _________________ Address ____________

  • Displaying PDF/Contentserver

    Hello, Environment/Task: To get rid of an invoice paper archive all invoices have to be archived as PDF. Half a million have allready been scanned into PDF. They shell be managed by a SAP contentserver but keeping the PDF in the filesystem and not in

  • Rainbow wheel when scrolling a web page

    Strangely every '''second time''' that I want scrolling a web page, the arrow become unresponsive for few second and the rainbow wheel appear sometime for more the 1 mn ! This happen mostly on Google web page. I clear already firefox cache but it did