Academic Integrity: tutoring, explanations, and feedback — we don’t complete graded work or submit on a student’s behalf.

Im trying to add my own emoticon to skype but im having problems with a couple t

ID: 3885482 • Letter: I

Question

Im trying to add my own emoticon to skype but im having problems with a couple things. I've found the steps in order to add this but i need some help with accessing "emoticons.plist" with the property editor. Can someone tell me how to do this? The steps are listed below.

Step 1

Right click the Skype application and choose "Package Contents." Go to "Resources/Emoticons."

Step 2

Add your picture to the animated emoticon set folder or the emoticon set folder. In the animated folder you must save the file as a .gif, in the emoticon folder as .png.

Step 3

Open "emoticons.plist" with the property editor.

Step 4

Add an entry fpr for your smiley. Name the object as the file name with .gif in the animated folder and .png in the regular folder. Add the strings that you want to appear as the smiley and array the name equivalents. Create a boolena and name it hidden. If you have difficulty with the programming aspect you can check the entries of the other smileys for examples.

Step 5

Save and relaunch Skype.

How do you access "emoticons.plist" with the property editor.

Explanation / Answer

Open property list editor from finder.
Create a file name emoctions.plist

and add the following code into it:
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>AdiumSetVersion</key>
<integer>1</integer>
<key>Emoticons</key>
<dict>
<key>Yourpic.png</key>
<dict>
<key>Equivalents</key>
<array>
<string>:)</string>
</array>
<key>Name</key>
<string>Nameit</string>
</dict>
</dict>
</dict>
</plist>