Here is how I set up
mine, which needs a name. :)
In this example, all of the images have the same extension: jpg. The shortcut won't work if you have mixed file types. I created a subdirectory named "img" in my blog and that's where I upload them to because I like to have the picture files separate from the html files. That's optional, just modify the template code to reflect the right path.
Upload the image using MT's upload feature. In my case, I type
img in the (optional) Local Archive Path, to upload to that img folder I have. I also have my Local Archive Path and Local Site Path defined as the same thing in Blog Config, so uploading to either goes to the same place.
Leave
Create a new entry using this uploaded file selected. Check
Create a thumbnail for this image and select the size. I've been making mine all the same at 80x60 Pixels. Click "embedded image".
So now you have a new entry started with the code that MT dumped in there for you. All you need is the name of the image. Say it's named jerry.jpg, you only need the
jerry part. This is because the image is jerry.jpg and MT named the thumbnail jerry-thumb.jpg. Everything after the
jerry part will be coded into the template. I put this in the Excerpt. Just
jerry, not
jerry.jpg You don't need the rest of the code so type the picture's description in the entrybody part instead. Assign category and title and save. The entrymore is unused, yay!
Template code to make thumbnails that link to the larger image (individual archive):
CODE
<a href="<$MTEntryLink$>"><img src="<$MTBlogURL$>img/<$MTEntryExcerpt$>-thumb.jpg" /></a>
Template code for the full size images on the individual pages:
CODE
<img src="<$MTBlogURL$>img/<$MTEntryExcerpt$>.jpg" />
Another nice thing is it uses MTBlogURL, so the web addresses aren't hard-coded into the entries.
Brenna
PS, it got long when I explained it, but it's not hard at all. :)