- Community Pick
This article will show you how I created a Sidebar Gadget to display my medium-sized Custom Experts Exchange Badge. I'm not a fan of having things on my desktop, but this is a neat little deal to place on your desktop to showcase your EE profile.
A gadget is simply a folder, a HTML file, and a XML file. That's it! Only 3 simple items to create a Windows Sidebar Gadget. (take note that I have only developed this in Windows 7 - I can't vouch for Vista, however I assume this simple example will work on Vista also...)
1. Create a folder on your desktop (we'll move it later) and name it something like "eeBadge.Gadget".
2. Create a XML file inside the folder you created and name it exactly "gadget.xml".
3. Create a HTML file inside the folder you created and name it something like "eeBadge.html".
Okay, now were ready to see what goes inside these 2 files. Let's start with the XML file as that will be the simplest one and once it's setup you won't have to go back to it. The XML file basically puts a 'Name' to your gadget and points to the HTML file that you created. Although not necessary, you can attach an icon to your gadget if you want. Just place the image in the folder you created and reference to it in the XML file. I put the Experts Exchange Logo in there and called it "logo.png".
A couple of important things to note regarding the XML file:
1. the file is named exactly "gadget.xml"
2. the <base> tag references your html file
Now that we have the XML file complete, you can close it and open the HTML file that you created. The shell of your html file should look like this:
It's time to go to get your badge from experts-exchange.com and copy and paste the code into the body of your HTML file right after the </script> tag. Here is how to get the code for your badge:
- 1
Go to www.experts-exchange.com and login.
- 2
Click on 'My Account' towards the top-right of the page
A small drop-down box will appear. Select the "Edit" link to the right of "Profile"
- 3
Select the 'For Experts' tab
- 4
Follow the 5 Steps on the page to create your Badge and retrieve your code
After you have selected your type, size, options, and zones; Click the "Create Certified Expert Badge" button to generate your code.
- 5
Copy and Paste your code
Copy and Paste your generated code into the body of your HTML file just after the </script> tag.
And that's just about it! Save your HTML file and close it. Now all that needs to be done is to move the folder into the right directory. Go to C:->Program Files->Windows Sidebar->Gadgets and place the folder there inside the Gadgets folder.
Go to your desktop and right-click, select 'Gadgets' located near the bottom, and you should see your new gadget in the list! Drag it onto your desktop.
by: patsmitty on 2010-12-04 at 13:05:03ID: 21848
Other than that, the article has been modified to your standards and is ready to go. It's just that the last code snippet keeps showing up...
Thank you!