<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Texty Ladies &#187; Tutorials</title>
	<atom:link href="http://www.textyladies.com/category/tipsandtutorials/tutorials/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.textyladies.com</link>
	<description>Artful adventures in writing</description>
	<lastBuildDate>Mon, 12 Jul 2010 06:01:36 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Tutorial:  Basic HTML Made Simple</title>
		<link>http://www.textyladies.com/2008/09/03/tutorial-basic-html-made-simple/</link>
		<comments>http://www.textyladies.com/2008/09/03/tutorial-basic-html-made-simple/#comments</comments>
		<pubDate>Thu, 04 Sep 2008 04:06:55 +0000</pubDate>
		<dc:creator>Pamela Sweet</dc:creator>
				<category><![CDATA[Tips & Tutorials]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[codes]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[tutorial]]></category>
		<category><![CDATA[website]]></category>

		<guid isPermaLink="false">http://www.textyladies.com/?p=197</guid>
		<description><![CDATA[
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.textyladies.com%2F2008%2F09%2F03%2Ftutorial-basic-html-made-simple%2F">
				
			</a>
		
<p>If you like to blog and would like to make a few simple changes to your site but don&#8217;t know HTML, I&#8217;d like to pass on a few simple codes I&#8217;ve learned that might make a significant difference.  Most blogware (like WordPress) will have buttons you can click to bold, italicize and change the size [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.textyladies.com%2F2008%2F09%2F03%2Ftutorial-basic-html-made-simple%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.textyladies.com%2F2008%2F09%2F03%2Ftutorial-basic-html-made-simple%2F&amp;style=normal" height="61" width="50" /><br />
			</a>
		</div>
<p><span style="color: #cc99ff;">If you like to blog and would like to make a few simple changes to your site but don&#8217;t know HTML, I&#8217;d like to pass on a few simple codes I&#8217;ve learned that might make a significant difference.  Most blogware (like WordPress) will have buttons you can click to bold, italicize and change the size of your fonts, however, there is the possibility that your post can become corrupt and you&#8217;ll either need to start over or rely on HTML codes.  MySpace is one of many sites that give you fields (like About Me, Movies, Music, etc.) where you can add information but there are no buttons provided to highlight your text and then make a change.  In this case, the following options can easily be used:<span id="more-197"></span></span></p>
<p><span style="color: #00ffff;">To insert a line break</span>:</p>
<p>Place your cursor where you want the line break and type <strong>&lt;br /&gt;</strong> .  You can use this several times to create extra space between lines or paragaphs.</p>
<p><span style="color: #00ffff;">To make text </span><strong><span style="color: #00ffff;">bold</span>:</strong></p>
<p>Type <strong>&lt;b&gt;</strong>.  Type the text you want bolded, then type <strong>&lt;/b&gt;</strong>.</p>
<p><span><span style="color: #00ffff;">To make text <em>italic</em></span></span>:</p>
<p>Type <strong>&lt;i&gt;</strong>.  Type the text you want italicized, then type <strong>&lt;/i&gt;</strong>.</p>
<p><span style="color: #00ffff;">To change the size of your text</span>:</p>
<p>Type <strong>&lt;big&gt;</strong> or <strong>&lt;small&gt;</strong>.  Type the text that should bigger or smaller, then type <strong>&lt;/big&gt;</strong> or <strong>&lt;/small&gt;</strong>.</p>
<p><span style="color: #00ffff;">To create a block-level quote</span>:</p>
<p>Type <strong>&lt;blockquote&gt;</strong>, which will start a block-level quote.  Type the text you would like set off from the preceding and following text, then type <strong>&lt;/blockquote&gt;</strong>.</p>
<p><span style="color: #00ffff;">To center text on a page</span>:</p>
<p>Type <strong>&lt;center&gt;</strong>. Create the element (text, picture, link, etc.) that you want centered, then type <strong>&lt;/center&gt;</strong>.</p>
<p><em><span style="color: #cc99ff;">You may detect a pattern here with the codes.  The code used at the end of the text is the same as the code used before the text but with a </span><strong><span style="color: #00ffff;">/</span><span style="color: #cc99ff;"> </span></strong><span style="color: #cc99ff;">typed between the </span><strong><span style="color: #00ffff;">&lt;</span></strong><span style="color: #cc99ff;"> and the code.</span></em></p>
<p><span style="color: #00ffff;">To create a link to another website</span>:</p>
<p>Type <strong>&lt;a href=&#8221;page.html&#8221;&gt;</strong> where <em>page.html</em> is the URL of the web page you are linking to.  The URL, which stands for <em>Uniform Resource Locator</em>, is the address for a file (or website) on the Internet.  It holds information about where the file is and what your browser should do with said file.</p>
<p>For example, the URL for my journal is <a href="http://indya42.livejournal.com">http://indya42.livejournal.com</a>.  To use this code and link to my journal, I would type <strong>&lt;a href=&#8221;http://indya42.livejournal.com&#8221;&gt;</strong>.</p>
<p>If you&#8217;d like the name of the other website to appear (and not just the URL), you would type the initial code, the name of the website, and then <strong>&lt;/a&gt;</strong>. </p>
<p>For example, using my journal again, you would type:</p>
<p style="padding-left: 30px;"> <strong>&lt;a href=&#8221;http://indya42.livejournal.com&#8221;&gt;Dreaming in Digital&lt;/a&gt;</strong> </p>
<p>It would appear on your page as <a href="http://indya42.livejournal.com/" target="_blank"><span style="color: #3366ff;">Dreaming in Digital</span></a>.</p>
<p><span style="color: #cc99ff;">If you have questions about any of my instructions, please drop me a line or comment on this post.  It can be fun to take a standard post or page and spruce it up a bit.  Please let me know if you&#8217;ve given it a try.  I&#8217;d love to see the results!</span> </p>
<p>NOTE:  I&#8217;ll be posting more codes in a future post.</p>
<p>~ Pamela</p>
]]></content:encoded>
			<wfw:commentRss>http://www.textyladies.com/2008/09/03/tutorial-basic-html-made-simple/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>MM: Book Trailer Tutorial</title>
		<link>http://www.textyladies.com/2008/06/08/mm-book-trailer-tutorial/</link>
		<comments>http://www.textyladies.com/2008/06/08/mm-book-trailer-tutorial/#comments</comments>
		<pubDate>Mon, 09 Jun 2008 04:51:59 +0000</pubDate>
		<dc:creator>Jane E.</dc:creator>
				<category><![CDATA[Featured]]></category>
		<category><![CDATA[Tips & Tutorials]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[tutorial]]></category>
		<category><![CDATA[Video trailer]]></category>

		<guid isPermaLink="false">http://www.textyladies.com/?p=96</guid>
		<description><![CDATA[
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.textyladies.com%2F2008%2F06%2F08%2Fmm-book-trailer-tutorial%2F">
				
			</a>
		
<p class="MsoNormal">Hello everyone! Today I’ll be talking about book trailers; specifically, how to make them. They’re great promotional tools, fun to create, and relatively simple. I’ll take you through my process step by step. I know there are different ways of creating them and different programs to us, but I’ll stick with what I [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.textyladies.com%2F2008%2F06%2F08%2Fmm-book-trailer-tutorial%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.textyladies.com%2F2008%2F06%2F08%2Fmm-book-trailer-tutorial%2F&amp;style=normal" height="61" width="50" /><br />
			</a>
		</div>
<p class="MsoNormal"><span style="color: #3366ff;">Hello everyone! Today I’ll be talking about book trailers; specifically, how to make them. They’re great promotional tools, fun to create, and relatively simple. I’ll take you through my process step by step. I know there are different ways of creating them and different programs to us, but I’ll stick with what I know and what is working for me. If you have any questions afterward, just ask!</span></p>
<p class="MsoNormal"><span style="color: #3366ff;"> </span></p>
<p class="MsoNormal"><span style="color: #99ccff;"><span>Step One:</span> First, you must find the graphics you want to use in your trailer. There are different ways of doing this; you can google PUBLIC DOMAIN PHOTOS, FREE IMAGES, STOCK IMAGES. Try istockphoto.com, freestockimages.net, stock.xchng (<a href="http://www.sxc.hu/">http://www.sxc.hu/</a>), jupiterimages.com, dreamstime.com. Google is your friend. Just remember that if you’re not paying for it, the photo has to be royalty free, or you have to have permission. I have found some really fantastic photos at DeviantArt. Of course, I get permission from each artist before using anything and credit them at the end of the video.</span><span style="color: #99ccff;"><span id="more-96"></span></span></p>
<p class="MsoNormal"><span style="color: #99ccff;"> </span></p>
<p class="MsoNormal"><span style="color: #99ccff;"><span>Step Two:</span> Find your music. Again, you must find royalty free music. I use <a href="http://incompetech.com/m/c/royalty-free/" target="_blank">Kevin MacLeod</a>. I love him. </span></p>
<p class="MsoNormal"><span style="color: #99ccff;"> </span></p>
<p class="MsoNormal"><span style="color: #99ccff;"><span>Step Three:</span> Put royalty free images and music into an easily accessible folder on your computer. </span></p>
<p class="MsoNormal"><span style="color: #99ccff;"> </span></p>
<p class="MsoNormal"><span style="color: #99ccff;"><span>Step Four: </span>On your computer, go to START, ALL PROGRAMS, ACCESSORIES, then click WINDOWS MOVIE MAKER. </span></p>
<p class="MsoNormal"><span style="color: #99ccff;"> </span></p>
<p class="MsoNormal"><span style="color: #99ccff;"><span>Step Five:</span> Under CAPTURE VIDEO in the sidebar, Click on IMPORT PICTURES, find the folder in which you stored the downloaded images, and select the pictures you want. To select more than one picture, hold CTRL while selecting pictures. </span></p>
<p class="MsoNormal"><span style="color: #99ccff;"> </span></p>
<p class="MsoNormal"><span style="color: #99ccff;"><span>IMPORTANT:</span> Go to FILE, and click on SAVE PROJECT AS and name your video. After you’ve done that, click on SAVE often. </span></p>
<p class="MsoNormal"><span style="color: #99ccff;"> </span></p>
<p class="MsoNormal"><span style="color: #99ccff;"><span>Step Six:</span> if STORYBOARD is already selected at the bottom, click and drag your photos, one by one, into the large white slots at the bottom. You can rearrange the order of the pictures later if you need to. If STORYBOARD view is not selected, simply click on SHOW TIMELINE and it will switch to STORYBOARD. Later, you will need to change to SHOW TIMELINE.</span></p>
<p class="MsoNormal"><span style="color: #99ccff;"> </span></p>
<p class="MsoNormal"><span style="color: #99ccff;"><span>Step Seven:</span> Under EDIT MOVIE in the sidebar, select VIEW VIDEO EFFECTS. Choose the effect you want, such as EASE OUT, and drag it down into the little square with the faded out star on your photo on the STORYBOARD. Choose an effect for each photo, and repeat process. If you want to combine effects on a photo, such as EASE OUT and FILM AGE, OLD, simply drag in the EASE OUT first, then the FILM AGE, OLD. You can do this with as many as you’d like. Also, if you select EASE IN and drag this effect to the same photo several times, the EASE IN will be faster and deeper. I particularly like and use EASE IN or OUT in combination with FILM AGE, OLD, because it makes the pictures come alive.</span></p>
<p class="MsoNormal"><span style="color: #99ccff;"> </span></p>
<p class="MsoNormal"><span style="color: #99ccff;"><span>Step Eight:</span> Under CAPTURE VIDEO, click on IMPORT AUDIO OR MUSIC. Select your music. </span></p>
<p class="MsoNormal"><span style="color: #99ccff;"> </span></p>
<p class="MsoNormal"><span style="color: #99ccff;"><span>Step Nine: </span>Click on SHOW TIMELINE at the bottom. Drag your music to the third line under the filmstrip, where it says DRAG AN AUDIO CLIP HERE TO ADD TO YOUR MOVIE when you mouse over. Grab the music once it’s on your timeline and drag it to the beginning image, if it’s not already there. Then you can grasp the end of the music and drag it to where it stretches longer than your last picture. You’ll have to add ending credits; once that’s finished, you can stretch the music to be a little longer than the ending credits. Actually, we’ll go ahead and do that next. </span></p>
<p class="MsoNormal"><span style="color: #99ccff;"> </span></p>
<p class="MsoNormal"><span style="color: #99ccff;"><span>Step Ten:</span> Click on SHOW STORYBOARD. Click on MAKE TITLES OR CREDITS in the sidebar. Select ADD TITLE AT BEGINNING OF MOVIE. Type in whatever you want; on mine, for instance, this is where I wrote One Night With You in the top field, and By Jane E. Jones in the bottom field. Now, for every place you want words, to tell the ‘story’ for your movie, do the following: On the STORYBOARD, click on your image, to select it. In the sidebar, select MAKE TITLES OR CREDITS, the select ADD TITLE AFTER SELECTED CLIP or BEFORE SELECTED CLIP, wherever you want to place the words. You can also select your effects, text, and text color here. You can EDIT TITLES at any time. You can easily do this by right clicking on the text in your storyboard, as well. <span> </span></span></p>
<p class="MsoNormal"><span style="color: #99ccff;"> </span></p>
<p class="MsoNormal"><span style="color: #99ccff;"><span>Step Eleven:</span> When you’ve finished with that, Select MAKE TITLES OR CREDITS, then CREDITS AT THE END OF THE MOVIE. Add your credits. To get more blanks, simply hit ENTER on your keyboard a couple of times. </span></p>
<p class="MsoNormal"><span style="color: #99ccff;"> </span></p>
<p class="MsoNormal"><span style="color: #99ccff;"><span>Step Twelve:</span> Add your VIDEO EFFECTS as we did in step seven. Now we’ll add VIDEO TRANSITIONS. Under EDIT MOVIE, click on VIEW VIDEO TRANSITIONS. </span></p>
<p class="MsoNormal"><span style="color: #99ccff;"> </span></p>
<p class="MsoNormal"><span style="color: #99ccff;"><span>Step Thirteen:</span> Click and drag desired effect to the blank BETWEEN your images on the STORYBOARD. FADE is my favorite but there are many cool ones. </span></p>
<p class="MsoNormal"><span style="color: #99ccff;"> </span></p>
<p class="MsoNormal"><span style="color: #99ccff;"><span>Step Fourteen:</span> Click on SHOW TIMELINE and scroll to the end of the music. Click on the end and drag the red arrow to the left, to the end of your video. Go a little too long, so you can fade out the music instead of ending it abruptly. RIGHT CLICK on the music line, and select FADE OUT. Play back the move to see if you’ve dragged the music long enough. You may have to make the music a little longer to get the correct fade out. </span></p>
<p class="MsoNormal"><span style="color: #99ccff;"> </span></p>
<p class="MsoNormal"><span style="color: #99ccff;"><span>Step Fifteen:</span> Play back your video and enjoy what you’ve created! </span></p>
<p class="MsoNormal"><span style="color: #99ccff;"> </span></p>
<p class="MsoNormal"><span style="color: #99ccff;"><span>Step Sixteen:</span> <span> </span>Save. Do some last minute tweaking. When everything is EXACTLY as you want it, go to FILE, SAVE MOVIE FILE, MY COMPUTER. Once that is done, you have your video. Go to MYSPACE, YOUTUBE, etc, and you can then upload your video. </span></p>
<p class="MsoNormal"><span style="color: #3366ff;"> </span></p>
<p class="MsoNormal"><span style="color: #3366ff;">Have fun with it! By the time you’re finished with your first video, the second one will be much easier and you’ll be an old hand at it. Enjoy! Let me know when you’ve made your video, I’d love to see it!</span></p>
<p class="MsoNormal"><span style="color: #3366ff;"> </span></p>
<p class="MsoNormal"><span style="color: #99ccff;">~Jane</span></p>
]]></content:encoded>
			<wfw:commentRss>http://www.textyladies.com/2008/06/08/mm-book-trailer-tutorial/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Wild Design Wednesday</title>
		<link>http://www.textyladies.com/2008/05/07/wild-design-wednesday/</link>
		<comments>http://www.textyladies.com/2008/05/07/wild-design-wednesday/#comments</comments>
		<pubDate>Wed, 07 May 2008 18:20:04 +0000</pubDate>
		<dc:creator>Jane E.</dc:creator>
				<category><![CDATA[Art]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[graphic art]]></category>
		<category><![CDATA[starfield]]></category>
		<category><![CDATA[tutorial]]></category>

		<guid isPermaLink="false">http://www.textyladies.com/?p=54</guid>
		<description><![CDATA[
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.textyladies.com%2F2008%2F05%2F07%2Fwild-design-wednesday%2F">
				
			</a>
		
<p>Wild Design Wednesday!!</p>
<p>Hi there, here is my first small tutorial, and I promise you another later this evening. Part 1 is a Starfields tutorial, a quick and simple way of creating fantastic starscapes… play around with it, and see what you can come up with. The link to the site that taught me my [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.textyladies.com%2F2008%2F05%2F07%2Fwild-design-wednesday%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.textyladies.com%2F2008%2F05%2F07%2Fwild-design-wednesday%2F&amp;style=normal" height="61" width="50" /><br />
			</a>
		</div>
<p>Wild Design Wednesday!!</p>
<p>Hi there, here is my first small tutorial, and I promise you another later this evening. Part 1 is a Starfields tutorial, a quick and simple way of creating fantastic starscapes… play around with it, and see what you can come up with. The link to the site that taught me my first steps is here: <a href="http://www.solarvoyager.com/default.asp">Solar Voyager</a> check for their tutorials.<br />
Part 2 will be my tutorial on how I create planets…so stick around for that.<br />
To download, just please click on the link! It will will link you to my DeviantArt account, and you can download the file from there. It&#8217;s a little big <img src='http://www.textyladies.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /><br />
Have fun!<br />
Xoxo<br />
~Kayko May</p>
<p><a href="http://kaykomay.deviantart.com/art/Starfield-tutorial-84991434" target="_blank">Link</a></p>
<p>As promised: here Part 2 of today&#8217;s tutorial&#8230;on Planets.<br />
<a href="http://kaykomay.deviantart.com/art/Basic-Planet-Tutorial-85049417" target="_blank">Part 1</a><br />
<a href="http://kaykomay.deviantart.com/art/Basic-Planet-Tutorial2-85049498" target="_blank">Part 2</a><br />
Have fun!<br />
xoxo<br />
~ Kayko</p>
]]></content:encoded>
			<wfw:commentRss>http://www.textyladies.com/2008/05/07/wild-design-wednesday/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
	</channel>
</rss>
