Posts Tagged ‘Database’

Manually Updating the Photoshop Elements database

No Comments »

So the questions I get asked most often are finally answered in full in a public place!

There’s one more thing, though, that generally is a big stumbling block. The mails generally go something like this:

Dear Graffi – I added all my things with your installers, but when I go back into Elements there’s nothing new in the drop menu! What happened?

or

I added my actions using the Add-O-Matic and started Elements, but they’re not there – What’s going on?!

What’s happened is that the database hasn’t recognized the new items yet, for a number of reasons. Here’s a few fast tricks you can use to kick-start the database:

Read the rest of this entry »


Manually Adding goodies to Photoshop Elements

No Comments »

Probablythe single most-sent email message I receive runs along these lines:

"Hey, Graffi:  I have Photoshop Elements x.x and I like the actions in your blog.   Where do I put them in Elements to make them work?"  (The second-most received message I get usually goes something like "Hey Graffi: I downloaded the actions from your blog and put them in Elements but they’re not showing up – what can I do?").

AOMOf course, my answer is to use the Add-O-Matic, which will automatically sort and place – along with a generic thumbnail & the required .xml file – the actions so they appear in the Effects palette and the new Actions Player in Elements. At around $11, it really is the simplest solution for adding Actions, Shapes, Styles, Brushes, .8bf-format plug-ins, and many more esoteric items like Color Swatches and Curve shapes.

To use the AOM, download the add-ons you want to install, make sure you’ve unzipped them, and drag and drop the files into the gray box of the AOM interface. It will build the list for you, and when you click "GO!" it will sort & place all the items in just a matter of seconds:

Read the rest of this entry »


Create an .xml file for Layer Styles in Photoshop Elements 7 & 8

No Comments »

Hey,
Graffi:
"How do I add additional layer styles to Elements?”

I get messages like this at least once or twice a week or so. It’s not difficult (the easiest way of all is to get yourself a copy of the Add-O-Matic which does all of this stuff for you automatically), but if you want to do it yourself manually, there’s a few things to keep in mind to get things looking exactly the way you want.

Adding Layer Styles to Elements can be a bit tricky.  The .asl file needs to be placed in two separate folders, and for optimal display in the Effects palette, you should consider creating a new .xml file to tell Elements where and how to display them.

First, the two folders: Layer Styles (*.asl files) need to placed in two separate folders:

  • *\Program Files\Adobe\Photoshop Elements #.#\Presets\Styles
  • *\Program Data\Adobe\Photoshop Elements#.#\Photo Creations\Layer Styles

Make sure hidden folders are visible to you (that’s been covered numerous times in numerous places, so I won’t reiterate it here).  You could call it done at this point, and you will have styles in place.


If you want to correctly display your styles in the Effects palette, you will need to create an .xml file.

Get started by opening your favorite text editor (Notepad will work nicely) and start adding a few lines of info. A basic .xml file will look like this:

<?xml version="1.0" encoding="UTF-8"?>
<psecontent xmlns="http://ns.adobe.com/PSEContent/1.0/">
<global>
<type value="style"></type>
<typecategory id="CatText Styles" value="Text Styles" localize="true"></typecategory>
</global>
</psecontent>

The above references a new layer style called “Text Styles”.  Here’s what this code does:

The first line lets Elements know what kind of encoding it uses (UTF-8, in this case, which is the flavor that Elements is fond of).

The next line tells Elements what kind of additional item is being added (PSEContent).

Next, what type of content (tell Elements it’s a “style”).

What category do you want to place this in (in other words, what name do you want to appear in the drop menu of the layer style section in the Effects palette”)  For this example, I want to call it “Text Styles”, so the category is CatText Styles and the value that appears in the drop menu is Text Styles”.

That’s it: save this file with the same name as the *.asl file it represents (my file is called “Text Styles.asl”, so this document will be saved as “Text Styles.metadata.xml” into the same ProgramData folder path as the .asl – does that make sense?)


You could go even further, naming and categorizing each style with a name and display location. This is for the newer .xml verson ussed in Elements 7 & 8 (although the simplified version above works just fine).

Check the code below to see the differences.  This .xml files names each style and places it in a specific place in the display:

<?xml version="1.0" encoding="UTF-8"?>
<psecontent xmlns="http://ns.adobe.com/PSEContent/2.0/"/>
<subscription value="free" />
<type value="style" />
<category value="$$$/content/category/type/TextStyles=Text Styles" />
<item id="1"> <name value= "$$$/content/styles/Alien=Alien" />
</item>
<item id="2"> <name value= "$$$/content/styles/Glassy=Glassy" />
</item>
<item id="3"> <name value= "$$$/content/styles/Gloss2=Gloss2" />
</item>
</PSEContent>

The above code names the first three items in my Text Styles.asl file so their names will display in the palette: “Alien”, “Glassy”  &  “Gloss2”.

Follow the examples, and use the template above to create your own .xml file. 

Or just grab an Add-O-Matic and let the work be done for you!