Still trying to make my own Tags

Here's what I've done:
1. Taken one of my own pictures and resized it in editor down to 20x20 (same size as tags)
2. Saved it in C:\Pragram files\photoshop elements 3\shared_assets\caticons with the name C_GreetingCards_N.png.
The saved name matches the way Adobe names their caticons.
3. I can see it in the directory tree under caticons but it doesn't show up in the palette in Organizer.
I'm so close. Anyone got the answer to what I'm not doing?
Thanks in advance.

Jack....
I just tried it again on my PC and it works fine....
1. Start the Editor and open one of the Cat Icon Images.
2. Delete all the contents and add your own or just modify whats there already. (or just create a new 20x20 pixel image)
3. Save As with a new name and keeping the PNG file format.
4. Close the image in the Editor and Open the Organiser.
5. Go to the Tags Palette and click on the drop down arrow on the New Tag tab.
6. Select the New Category option
7. In the pop up window move the slider along underneath Category Icon until you see your own. Click to select it.
Colin

Similar Messages

  • HT3819 For home sharing do you have to use one apple ID? Im trying to make my own new account for all my devices (iphone, ipad, mac) , but i still want the music from my dads account.

    For home sharing do you have to use one apple ID? Im trying to make my own new account for all my devices (iphone, ipad, mac) , but i still want the music from my dads account.

    For home sharing do you have to use one apple ID? Im trying to make my own new account for all my devices (iphone, ipad, mac) , but i still want the music from my dads account.

  • Rookie trying to make my own package

    Reading in a real good book - "Thinking in Java" by Bruce Eckel. Really helping me to understand better a lot of the stuff that I had in my Java course at school.
    Got to a section where he's showing how to make your own packages. I'll lift directly:
    Consider, for
    example, creating an alias for System.out.println(�) to reduce
    typing. This can be part of a package called tools:
    //P.java
    // The P.rint & P.rintln shorthand.
    package com.bruceeckel.tools;
    public class P {
    public static void rint(String s) {
    System.out.print(s);
    public static void rintln(String s) {
    System.out.println(s);
    You can use this shorthand to print a
    String either with a newline (P.rintln(�)) or without a
    newline (P.rint(�)).
    So, I cut and pasted right into the text editor I use to practice with, saved and compiled it in a subdirectory off of one of the directories in the CLASSPATH, followed with a little test program:
    //ToolTest.java
    import com.bruceeckel.tools.*;
    public class ToolTest {
    public static void main(String[] args) {
    P.rintln("Available from now on!");
    P.rintln("" + 100); // Force it to be a String
    P.rintln("" + 100L);
    P.rintln("" + 3.14159);
    Here's the result of the compile:
    C:\Thinking in Java\com\bruceeckel\tools>javac ToolTest.java
    ToolTest.java:3: Package com.bruceeckel.tools not found in import.
    import com.bruceeckel.tools.*;
    ^
    1 error
    C:\Thinking in Java\com\bruceeckel\tools>
    At first I tried doing it on my own, making up my own package name, creating my own little source files, but got the same error. So I cut and pasted directly from the book, thinking surely it would work if I used Eckel's own code. Nope.
    Any clue what's going wrong? I've checked the CLASSPATH carefully, it includes
    C:\Thinki~1
    Thanks
    Felecha

    Your classpath should include "C:\Thinking in Java", not C:\Thinki~1.
    Also, your ToolTest.java should be in some other folder than "C:\Thinking in Java\com\bruceeckel\tools" - javac may act weird when it can find the to-be-imported classes in both the current folder and the classpath.
    If ToolTest.java had been in the folder "C:\Thinking in Java" you wouldn't have needed to modify the classpath.

  • OK, now I tried to make my own spry photo album

    but when I tried to name my own images and substitute their
    names in the xml code in the following manner:
    <photo
    path = "travel_01.jpg" //changed to "buildings_01.jpg"
    width = "263"
    height = "350"
    thumbpath = "travel_01.jpg"
    thumbwidth = "56"
    thumbheight = "75">
    </photo>
    <photo
    path = "travel_02.jpg" //changed to "buildings_02.jpg"
    width = "350"
    height = "263"
    thumbpath = "travel_02.jpg"
    thumbwidth = "75"
    thumbheight = "56">
    </photo>
    the photo album didn't work... does anyone know why?
    thank you for your help in advance
    Betsy w.

    The other important thing is that the <img src path
    matches your folder structure.
    In our gallery samples, we are dynamically generating the img
    path with data references. I would start by hardcoding an image
    path that works, so you know your path is correct. Then replace the
    image name with the data reference.
    <img src="mypath/totheimage/travel_01.jpg">
    When that works, then change to:
    <img src="mypath/totheimage/{@path}">
    Let me know if that helps.
    Don

  • Trying to make my own java library need help!

    I have been trying to make a java library that will save data in cdf format.
    Every time I try to implement code using this library i created i get the error shown below, I put the jar file in the jdk/jre/lib/ext file, so when I import it, it does work. But i dont know know what to do with this error any insight would be greatly appreciated,
    Constructor
    You are connected to the OSACBM sever...
    new.xml has been recieved and unmarshalled
    ELEMENT: DAInt:
    DAInt value: 34
    DAInt id: 2000
    Exception in thread "main" java.lang.UnsatisfiedLinkError: no cdfNativeLibrary in java.library.path
    at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1709)
    at java.lang.Runtime.loadLibrary0(Runtime.java:823)
    at java.lang.System.loadLibrary(System.java:1028)
    at gsfc.nssdc.cdf.CDFNativeLibrary.<clinit>(CDFNativeLibrary.java:47)
    at gsfc.nssdc.cdf.CDF.create(CDF.java:221)
    at osacbm_client_.CDFHandler.InitializeCDF_File(CDFHandler.java:45)
    at osacbm_client_._Client.Unmarshaller(_Client.java:64)
    at osacbm_client_._Client.<init>(_Client.java:25)
    at osacbm_client_.Main.main(Main.java:19)
    Java Result: 1

    OK, I checked the javadoc myself, and although the text is clear and correct I acknowledge it doesn't help you a lot to investigate the problem, so I'll try to give out a clue:
    -> your problem is that the JVM does find your jar, but doesn't file the native library it depends on (+"cdfNativeLibrary"+).
    You should locate the shared library file (+cdfNativeLibrary.dll+ or cdfNativeLibrary.so depending on your OS), and make sure your PATH variable contains its folder, or add this folder to the java.library.path system property (specified as -D java.library.path=<path/to/folder/containing/libfile> in the launching command line).
    Note that it's not clear from your message if you're writing the gsfc library or a client of it:
    - It the former, and if you're new to Java, then be aware that integrating a native library is not the easiest way to learn Java; just in case, make sure you read and understand a JNI tutorial (for Java Native Interface; I was willing to push you a link, but I realize the [Java tutorial|http://java.sun.com/docs/books/tutorial/] has no such chapter, which reinforces that it is an advanced topic).
    - If the latter, then how to install the library's components should be documented in its manual.

  • I'm trying to make a Bug Database

    Hi there,
    I am trying to make my own bug database app using Objective-C(I will try and work out the Core Data part later - sticking to the code now).
    So here goes.
    I have created the code to add a column;
    NSTableColumn *newColumn = [[NSTableColumn alloc] initWithIdentifier:@"identifier"];
    [[newColumn headerCell] setStringValue:@"column name"];
    [tableView addTableColumn:newColumn];
    That works. But I have two questions;
    1. How do I clear the table of all columns on startup?
    2. How do I add contents to the table! I don't have a data source, I just want to add things when in the application.
    Cheers,
    Ricky.
    P.S - I can't understand why there is a formatting issue in that code.

    The tutorial is based on having a list of "VersionReleases"... and each VersionRelease can potentially have many CommitMessages... so the interface has the two table views. One table view shows you the list of all the VersionReleases and then when you've selected one of the VersionReleases the second table view shows you a list of all the CommitMessages associated with the selected VersionRelease. In addition, each CommitMessage has several pieces of data associated with it (the message, creationDate, and isCommitted attributes). And when you select one of the "CommitMessages" from the second table view then it's data items display in the remaining fields.
    But based on your screen shot it appears that you want to create a list of Bugs to track... each individual bug item will have one notes field, one date founded and one platform (and also one bug name). But there doesn't appear to be a list of several items associated with each bug (like in the tutorial where there's a list of CommitMessages associated with each VersionRelease). So there doesn't appear to be any reason to split the information related to a single bug report into two different entities.
    So (assuming I'm understanding your screen shot correctly) in essence you don't need the "VersionRelease" entity. Your interface looks like it could be handled with one entity similar to the "CommitMessage" entity from the tutorial. Sort of like you removed the "VersionMessage' table view from the left side of the tutorial window and then moved the "CommitMessage" table view from the top right of the window and instead placed it along the left side of the window where the first table view used to be... that gives you essentially what your screen shot displays and eliminates the need for the two entities.
    Your "BugEntry" entity could contain a name, notes, date and platform. The table view on the left of your window would display a list of all the bug names (like the "CommitMessage" table view displays a list of commit messages in the tutorial), then depending on which one was selected the remaining fields would display the notes, date and platform of the selected bug.
    Steve

  • Trying to make sense of div tags and css

    i know that i am a few years late here, but i am looking ot make the migration from using tables and switching over to div tags and css. i have watched a few tutorials on you tube and am trying to understand everything.
    please tell me if this is correct.  a div tag is basically a table and css is what is used to style that div tag to meet your needs, is this a correct assumption??
    if you go to my current site www.tankinz.com you can clearly see that the site is made up of tables, basically these boxes or tables contain a different item or package that a customer can click on and buy.  by using div tags and css would each of these boxes, or tables be their own div?
    sorry for sounding a bit moronic but i am trying to make sense of all of this.
    please help!

    Markup (html) contains elements, such as html, body, h1, h2, p, span, div and so forth. Hence a <div>-tag is part of an element; the other part being the </div>-tag.
    The element structure of many web sites is basically (using HTML5 element names)
    html
         head
         body
              header
              nav
              aside
              article
              footer
    These elements can be positioned and styled using style rules (css). Depending on the style rules, the above structure can take on many different styles, without ever touching the markup.
    Have a look here for a simple two-column layout using the same structure as above http://www.456bereastreet.com/lab/developing_with_web_standards/csslayout/2-col/

  • How do i deactivate a device through icloud if the device is broken and i am unable to turn on find my iphone? Also i do not own a apple id as ive been using a family members due to problems when trying to make one?

    How do i deactivate a device through icloud if the device is broken and i am unable to turn on find my iphone? Also i do not own a apple id as ive been using a family members due to problems when trying to make one?

    Hey tyjox,
    Thanks for the question. After reviewing your post, it sounds like you need to deactivate Find My iPhone on a device that does not work. You will need to work with the family member of the account the iPhone is registered with. I would recommend that you use this article to help you resolve or isolate the issue.
    iCloud: Remove your device from Find My iPhone
    http://support.apple.com/kb/PH2702
    Remove an iOS device you no longer have
    If you no longer have the iOS device because you gave it away or sold it, you need to remotely erase it before you can remove it.
    Sign in to icloud.com/#find with your Apple ID (the one you use with iCloud).If you’re using another iCloud app, click the app’s name at the top of the iCloud.com window, then click Find My iPhone.
    Click All Devices, then select the device.
    Click Erase [device], then enter your Apple ID password. Because the device isn’t lost, don’t enter a phone number or message.If the device is offline, the remote erase begins the next time it’s online. You’ll receive an email when the device is erased.
    When the device is erased, click Remove from Account.All your content is erased and someone else can now activate the device.
    Thanks for using Apple Support Communities.
    Have a nice day,
    Mario

  • I tried to make a smaller facebook photo more visible by trying to make it my screen saver and now i do not know how to get rid of. it always shows up on screen when i open my computer but is still small

    == Issue
    ==
    I have another kind of problem with Firefox
    == Description
    ==
    i tried to make a smaller facebook photo more distinct by hitting something to make it screen saver. it now shows up each time i open my computer but still is small. i cannot determined how to get rid of?
    <blockquote>Edited by moderator to remove all caps. Please don't yell. -T</blockquote>
    == This happened
    ==
    Every time Firefox opened
    == i tried to make a small facebook photo screen saver
    ==
    == Firefox version
    ==
    false
    == Operating system
    ==
    Windows XP
    == User Agent
    ==
    Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.1.9) Gecko/20100315 Firefox URIAPRO[]
    == Plugins installed
    ==
    *-Default Plug-in
    *Adobe PDF Plug-In For Firefox and Netscape
    *Shockwave Flash 9.0 r28
    *The QuickTime Plugin allows you to view a wide variety of multimedia content in Web pages. For more information, visit the QuickTime Web site.
    *RealJukebox Netscape Plugin
    *RealPlayer(tm) LiveConnect-Enabled Plug-In
    *6.0.12.1040
    *Java Plug-in 1.5.0_01 for Netscape Navigator (DLL Helper)
    *DRM Netscape Network Object
    *Npdsplay dll
    *DRM Store Netscape Plugin

    This sounds more like a Windows question, than a Firefox question. When you say that an image shows up every time you open your computer, do you mean every time you turn on your computer, or every time you start Firefox?

  • HT1925 I was trying to make sure that all my Apple software was uninstalled, and I still can't remove C:\Program Files\iPod\.  I went to the Task Manager and it is not listed in the Processes tab.  What do I do now?

    I was trying to make sure that all my Apple software was uninstalled, and I still can't remove C:\Program Files\iPod\.  I went to the Task Manager and it is not listed in the Processes tab.  What do I do now?

    Are you looking for iPodService.exe?
    Might be better to run services.msc from the run dialog and shut down the service polietly.
    tt2

  • I am trying to make a signature in MS Word (2007) which includes a jpg image, but when I save it as a HTML file and attach it the text appers OK but the image doesn't. I have tried various formats but still no luck. Can anyone help?

    I am trying to make a signature in MS Word (2007) which includes a jpg image, but when I save it as a HTML file and attach it the text appers OK but the image doesn't. I have tried various formats but still no luck. Can anyone help? edit

    C'mon! Anyone???? I'm desperate!

  • I got a new credit card and tried to make an in-app purchase but forgot to update my info. It still says transaction is pending on the app

    I got a new credit card and tried to make an in-app purchase but forgot to update my info. It still says transaction is pending on the app

    Hi Danny724,
    Welcome to the Support Communities!
    I would suggest updating your billing information in the iTunes application, signing out of your account and signing back in; and then trying to complete the purchase.  If the issue persists, the iTunes Store Support Team can review your account with you.
    iTunes Store: Changing your payment information
    http://support.apple.com/kb/ht1918
    How to report an issue with your iTunes Store, App Store, Mac App Store, or iBookstore purchase
    http://support.apple.com/kb/HT1933?viewlocale=en_US
    Cheers,
    - Judy

  • I'm trying to make "Stop motion videos"  in Final Cut EXPRESS by using 100's of still photos and setting them to music.  They are coming out blurry if viewed larger than 4x6 in size

    I'm trying to make "Stop motion videos"  in Final Cut EXPRESS by using 100's of still photos and setting them to music.  They are coming out blurry if viewed larger than 4x6 in size.
    I don't understand why this is happening. 

    Quick follow up, since I was on my phone earlier and am back to a real keyboard.
    To access Easy Setup, hit Control Q.
    If you click on the blue discosure triangles, a dropdown menu with about a dozen different presets will be displayed. Select the one you want, (Here, I've selected 720P.)
    Whatever you select for a preset will not be applied until you make a new sequence. (I don't like to have sequences with different properties in the same project so I prefer to make a new project if I change the Easy Setup.)
    Because photo aspect ratios are different than video, I typically put a solid generator of some compatible color on the first track (v1) and put my photos on the track above (v2). Looks better, IMO, than black bars. There are other creative ways to display them. And of course, you could scale them up to fill the frame…but then you probably would have to re-position them.
    Good luck.
    Russ

  • If i make my own cloud and log out of the one me and my sister were sharing will she still get my messages ?

    if i make my own cloud and log out of the one me and my sister were sharing will she still get my messages ?

    Answered in your other post.

  • HT5706 My Apple TV is frozen on the time and date setting and then it goes to the screen saver I tried changing the batteries on the remote and it still doesn't make a difference someone help

    My Apple TV is frozen on the time and date setting and then it goes to the screen saver I tried changing the batteries on the remote and it still doesn't make a difference someone help...has anyone else had these problems?

    Hi i ran into the same problem Ithoght it was the control, i changed the batteries the the control, and stil did not work, in the same connection (network and everything) i installed a new one and it worked perfectly, i can deduct the unit is nit working properly

Maybe you are looking for

  • I am unable to type in Arabic in Word, how do i install a "language pack"?, I am unable to type in Arabic in Word, how do i install a "language pack"?

    I need to be able to type in Arabic on my macbook. I figured out how to change my typing language into Arabic but as soon as I type a word into a word document, I hit the space bar and it moves all the letters around. I was told by the help desk at m

  • Installing older version of iTunes

    I am trying to install an older version of Itunes and am getting the following error: The file iTunes Library.itl cannot be read because it was created by a newer version of iTunes. I have tried renaming the file, deleted the folder iTunes in my docu

  • Hyperlink on a trigger won't open in a new window

    I have set up a roll over trigger that reveals a target and it works great. The only issue is that the hyperlink I have assigned to the trigger will only work if I uncheck the "open in a new window or tab" box. If I check that box, nothing happens wh

  • Slow and episodic downloads, frequent timeouts

    Here's my setup: I have a 8Mb/s broadband service from TalkTalk (in the UK) which I access over wireless. Speedtest shows an upload speed of 4.8Mb/s. My Netgear modem reports that it is connected at 5.5Mb/s. Leopard 10.5.4 iMac G5 Airport Extreme Air

  • Ugly fonts in java under linux

    I'm using JRE 1.5.0_03-fcs under Fedora Core 3. Some of the applications I run have really bad fonts, which look pixellated, and are difficult to read. When I asked on the Fedora mailing list, someone said that jre uses its own font rendering engine,