<?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>Saffron Stroke - Your Web Design Resource &#187; Expression Web</title>
	<atom:link href="http://www.saffronstroke.com/category/ms-expression-web/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.saffronstroke.com</link>
	<description>Design Blog</description>
	<lastBuildDate>Wed, 11 Jan 2012 06:36:24 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5.1</generator>
		<item>
		<title>Draw 3D Text in HTML 5 Canvas and Expression Web</title>
		<link>http://www.saffronstroke.com/2011/12/18/draw-3d-text-in-html-5-canvas-and-expression-web/</link>
		<comments>http://www.saffronstroke.com/2011/12/18/draw-3d-text-in-html-5-canvas-and-expression-web/#comments</comments>
		<pubDate>Sun, 18 Dec 2011 06:21:59 +0000</pubDate>
		<dc:creator>Minal</dc:creator>
				<category><![CDATA[Expression Web]]></category>
		<category><![CDATA[HTML 5]]></category>

		<guid isPermaLink="false">http://www.saffronstroke.com/?p=2305</guid>
		<description><![CDATA[One of the most exciting additions to web pages by HTML5, is the Canvas element &#60;canvas id=&#8221;3dCanvas&#8221; width=&#8221;400&#8243; height=&#8221;200&#8243;&#62;&#60;/canvas&#62; You can draw graphics such as lines, arcs, curves, circles, shapes and create nice effects etc., directly into the canvas element. In this article, I will demonstrate how to draw 3D text in HTML 5 canvas. [...]]]></description>
				<content:encoded><![CDATA[<p style="text-align: justify;">One of the most exciting additions to web pages by HTML5, is the Canvas element</p>
<p style="text-align: justify;">&lt;canvas id=&#8221;3dCanvas&#8221; width=&#8221;400&#8243; height=&#8221;200&#8243;&gt;&lt;/canvas&gt;</p>
<p style="text-align: justify;">You can draw graphics such as lines, arcs, curves, circles, shapes and create nice effects etc., directly into the canvas element. In this article, I will demonstrate how to draw 3D text in HTML 5 canvas. The source code link is given at the end of this article. We will be using Expression Web (with sp2) as our web editor. Make sure that the doctype is set to HTML 5.</p>
<p style="text-align: justify;"><strong>Step 1: HTML</strong></p>
<p style="text-align: justify;">Here’s the HTML needed to declare a canvas element on our page</p>
<p style="text-align: justify;"><img style="background-image: none; padding-left: 0px; padding-right: 0px; display: inline; padding-top: 0px; border-width: 0px;" title="html5-3d-canvas" src="http://www.saffronstroke.com/wp-content/uploads/2011/12/html5-3d-canvas.png" border="0" alt="html5-3d-canvas" width="553" height="202" /></p>
<p style="text-align: justify;">Here we have added the canvas tag to the HTML code and defined the height and the width attributes with the value 200 and 400, meaning that the canvas should be 200 pixels tall and 400 pixels wide</p>
<p style="text-align: justify;"><strong>Step 2: JavaScript Code (onload function)</strong></p>
<p style="text-align: justify;">Write the following JavaScript code. I will explain the code in a bit. We have also defined a drawTextInCanvas function to draw the layers and cast shadow on these layers</p>
<p style="text-align: justify;"><img style="background-image: none; padding-left: 0px; padding-right: 0px; display: inline; padding-top: 0px; border-width: 0px;" title="html5-3d-canvas-code" src="http://www.saffronstroke.com/wp-content/uploads/2011/12/html5-3d-canvas-code.png" border="0" alt="html5-3d-canvas-code" width="576" height="464" /></p>
<p style="text-align: justify;">
<p style="text-align: justify;">On the onload function(), we first retrieve the canvas object using its id attribute value (3DCanvas) in the getElementById method. This allow us to get a reference to the 2D drawing context.</p>
<p style="text-align: justify;"><strong>Note:</strong> “3D Context” is WebGL</p>
<p style="text-align: justify;">Next we retrieve the height and width of the canvas object. We get a reference to the 2D drawing context and store it in the ctx variable.  Once we have got a reference to the 2D context, we make a call to an HTML5 Canvas API function font, fillStyle and textAlign.</p>
<p style="text-align: justify;">
<p style="text-align: justify;"><strong>drawTextInCanvas() function</strong></p>
<p style="text-align: justify;">In the drawTextInCanvas function, we have used a loop to draw multiple layers of text one on top of the other, to create a 3D effect. The last parameter ‘4’ that you see in the drawTextinCanvas() function, represents the depth, where four layers are drawn one over the other.</p>
<p style="text-align: justify;">The shadowBlur, shadowColor and shadowOffset is to apply a soft shadow beneath the text. Finally the fillText() call prints the text on the position specified and you should see the following</p>
<p style="text-align: justify;"><img style="background-image: none; margin: 0px; padding-left: 0px; padding-right: 0px; display: inline; padding-top: 0px; border-width: 0px;" title="image" src="http://www.saffronstroke.com/wp-content/uploads/2011/12/image.png" border="0" alt="image" width="415" height="214" /></p>
<p style="text-align: justify;"><a title="HTML 3D Demo" href="http://www.saffronstroke.com/wp-content/uploads/2011/12/html5-3dtext.html" target="_blank"><strong>Download the 3D Text in HTML 5 and Expression Web source code</strong></a></p>
<p style="text-align: justify;"><a title="HTML 5 3D Text Canvas Demo" href="http://www.saffronstroke.com/wp-content/uploads/2011/12/html5-3dtext.html" target="_blank"><strong>See a Live Demo</strong></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.saffronstroke.com/2011/12/18/draw-3d-text-in-html-5-canvas-and-expression-web/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Expression Web 4 Service Pack 1 available!</title>
		<link>http://www.saffronstroke.com/2011/03/28/expression-web-4-service-pack-1-available/</link>
		<comments>http://www.saffronstroke.com/2011/03/28/expression-web-4-service-pack-1-available/#comments</comments>
		<pubDate>Mon, 28 Mar 2011 10:53:00 +0000</pubDate>
		<dc:creator>Minal</dc:creator>
				<category><![CDATA[Expression Web]]></category>
		<category><![CDATA[EW4 SP1]]></category>
		<category><![CDATA[Expression Web 4]]></category>
		<category><![CDATA[Expression Web 4 Service Pack 1]]></category>

		<guid isPermaLink="false">http://www.saffronstroke.com/?p=2298</guid>
		<description><![CDATA[Expression Web 4 Service Pack 1 has been released. The Service Pack 1 provides support for HTML 5, CSS 3 and PHP 5.3 in Code Editor and significant support in Design View. SP1 also has some major fixes and improvements to SuperPreview online service, IntelliSense for Extended Characters and file management. To know more about [...]]]></description>
				<content:encoded><![CDATA[<p>Expression Web 4 Service Pack 1 has been released. The Service Pack 1 provides support for HTML 5, CSS 3 and PHP 5.3 in Code Editor and significant support in Design View. SP1 also has some major fixes and improvements to SuperPreview online service, IntelliSense for Extended Characters and file management.</p>
<p>To know more about the features in Expression Web 4 SP1 read <strong><a href="http://www.microsoft.com/expression/products/Web4SP1WhatsNew.aspx">What&#8217;s new in Expression Studio Web 4 SP1</a> </strong>and the <strong><a href="http://support.microsoft.com/kb/2519900">Description of Expression Web 4 Service Pack 1</a></strong></p>
<p><strong>How to install the Service Pack?</strong></p>
<p>Download the service pack from Microsoft Download Center by visiting this <strong><a href="http://www.microsoft.com/downloads/en/details.aspx?FamilyID=f6e1bbd9-2b1b-40e8-948b-1276e3b5daa3&amp;displaylang=en">link</a></strong>.</p>
<p><strong>How to determine whether Expression Web 4 SP1 is Installed?<br />
</strong><br />
In Expression Web 4, go to About Microsoft Expression Web.</p>
<p>If Expression Web 4 SP1 is not installed, the following version number appears:<br />
(English language) Microsoft Expression Web 4 Version 4.0.1165.0 and (Non-English languages) Microsoft Expression Web 4 Version 4.0.1170.0</p>
<p>If Expression Web 4 SP1 is installed, the following version number appears:<br />
<strong><em>Microsoft Expression Web 4 Version 4.0.1241.0</em></strong></p>
]]></content:encoded>
			<wfw:commentRss>http://www.saffronstroke.com/2011/03/28/expression-web-4-service-pack-1-available/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>HTML 5 Add In for Expression Web 4</title>
		<link>http://www.saffronstroke.com/2011/02/26/html-5-add-in-for-expression-web-4/</link>
		<comments>http://www.saffronstroke.com/2011/02/26/html-5-add-in-for-expression-web-4/#comments</comments>
		<pubDate>Sat, 26 Feb 2011 06:30:35 +0000</pubDate>
		<dc:creator>Minal</dc:creator>
				<category><![CDATA[Expression Web]]></category>
		<category><![CDATA[Expression Web 4]]></category>
		<category><![CDATA[Expression Web tips]]></category>
		<category><![CDATA[expression web tutorials]]></category>

		<guid isPermaLink="false">http://www.saffronstroke.com/?p=2268</guid>
		<description><![CDATA[You must be aware of HTML 5 is going to be the all-in-one standard replacing HTML 4.01 and XHTML 1.0 So with HTML 5 becoming a web standard, the Microsoft team has come up with an add-in for EW4 that will enable the new HTML5 schema to check your code markup for errors and give [...]]]></description>
				<content:encoded><![CDATA[<p>You must be aware of HTML 5 is going to be the all-in-one standard replacing HTML 4.01 and XHTML 1.0 So with HTML 5 becoming a web standard, the Microsoft team has come up with an add-in for EW4 that will enable the new HTML5 schema to check your code markup for errors and give IntelliSense for HTML5 tags, attributes and values in the code view.</p>
<p>EW 4 has a doctype for HTML 5. To use the HTML 5 doctype in Expression Web 4, follow these steps:</p>
<p>1. Tools &gt; Page Editor Options… &gt; Authoring tab.</p>
<p>2. Under the Doctype and Secondary Schema section, choose the Doctype and the secondary schema (from the drop down menu) as HTML 5.</p>
<p><img style="display: inline; border-width: 0px;" title="doctype_secschema" src="http://www.saffronstroke.com/wp-content/uploads/2011/02/doctype_secschema.png" border="0" alt="doctype_secschema" width="478" height="125" /></p>
<p>So now all your new documents will have the HTML 5 Doctype and it is written as;</p>
<p><span style="color: #800000;">&lt;!DOCTYPE html&gt;</span></p>
<p>Now you can create HTML 5 pages by hand. The <a href="http://gallery.expression.microsoft.com/Web4HTML5SchemaAddIn/" target="_blank"><strong>HTML5 Schema Configuration Add-In for Expression Web</strong></a> enables the new HTML5 schema to check your code markup for errors and gives IntelliSense for HTML5 tags, attributes and values in the code view.</p>
<p>Download the <a href="http://gallery.expression.microsoft.com/Web4HTML5SchemaAddIn/" target="_blank"><strong>HTML5 Schema Configuration Add-In for Expression Web</strong></a> and follow these steps for installation&#8221;:</p>
<p>1. Launch EW4.</p>
<p>2. Tools &gt; Add-Ins… In the Manage Add-ins dialog box, click on Install.</p>
<p>3. In the Open Expression Web Add-in File dialog box, browse to the directory where the add-in was saved and click Open. The add-in will be installed.</p>
<p><img style="display: inline; border-width: 0px;" title="addin_installed" src="http://www.saffronstroke.com/wp-content/uploads/2011/02/addin_installed.png" border="0" alt="addin_installed" width="540" height="450" /></p>
<p>4. Click ‘Yes’ when Expression Web asks you to enable the add-in. If the add-in has been installed correctly, it will be listed in the Manage Add-ins dialog box as shown here;</p>
<p><img style="display: inline; border-width: 0px;" title="manage_add-ins" src="http://www.saffronstroke.com/wp-content/uploads/2011/02/manage_addins.png" border="0" alt="manage_add-ins" width="540" height="142" /></p>
<p>5. Close the session of EW4 and run it as Administrator (right click on EW4 icon and choose Run as administrator). An HTML 5 button will now appear on the Standard Toolbar, as shown here;</p>
<p><img style="display: inline; border-width: 0px;" title="html5_button" src="http://www.saffronstroke.com/wp-content/uploads/2011/02/html5_button.png" border="0" alt="html5_button" width="152" height="48" /></p>
<p>6. Click the button to configure the HTML 5 schema.</p>
<p><img style="display: inline; border-width: 0px;" title="config_html5sch" src="http://www.saffronstroke.com/wp-content/uploads/2011/02/config_html5sch.png" border="0" alt="config_html5sch" width="530" height="225" /></p>
<p>7. Click on Enable HTML 5 button to update the EW HTML 5 schemas. Close the dialog box and restart EW4.</p>
<p>8. Now set the Doctype and Secondary Schema to HTML 5 under <strong>Tools &gt; Page Editor Options… &gt; Authoring tab</strong>.</p>
<p>Expression Web 4 now provides IntelliSense for HTML 5 elements, attributes and their values.</p>
<p>Read more about the HTML 5 add-in over <a href="http://blogs.msdn.com/b/xweb/archive/2010/10/06/add-html5-support-to-expression-web-4.aspx" target="_blank"><strong>here</strong></a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.saffronstroke.com/2011/02/26/html-5-add-in-for-expression-web-4/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Designing the Table Layout for Multiple Resolutions in Expression Web 4</title>
		<link>http://www.saffronstroke.com/2011/02/17/designing-the-table-layout-for-multiple-resolutions-in-expression-web-4/</link>
		<comments>http://www.saffronstroke.com/2011/02/17/designing-the-table-layout-for-multiple-resolutions-in-expression-web-4/#comments</comments>
		<pubDate>Thu, 17 Feb 2011 06:00:09 +0000</pubDate>
		<dc:creator>Minal</dc:creator>
				<category><![CDATA[Expression Web]]></category>
		<category><![CDATA[Expression Web tips]]></category>
		<category><![CDATA[HTML Table Layout]]></category>
		<category><![CDATA[HTMl tips]]></category>
		<category><![CDATA[layouts for multiple resolutions]]></category>

		<guid isPermaLink="false">http://www.saffronstroke.com/?p=2250</guid>
		<description><![CDATA[With the advent of CSS layouts I prefer not to use tables for laying out my web sites. But there are many designers/developers who still go in for tables. Expression Web also gives you tools to build a layout using tables. Learn more about Table Layouts in Creating Layout Tables in Microsoft Expression Web How [...]]]></description>
				<content:encoded><![CDATA[<p>With the advent of CSS layouts I prefer not to use tables for laying out my web sites. But there are many designers/developers who still go in for tables. Expression Web also gives you tools to build a layout using tables. Learn more about Table Layouts in <a href="http://www.dotnetcurry.com/ShowArticle.aspx?ID=280"><strong>Creating Layout Tables in Microsoft Expression Web</strong></a></p>
<p>How will you make sure that your page is rendered properly in browsers using minimum screen resolution or using the highest resolution? Here are some tips of how you can achieve that.</p>
<p><strong><u>a. Keep at least one column variable</u></strong></p>
<p>If your layout is made up of 2 columns where in the left column has all navigation links. It is advisable to fix the width of this column and leave the right column to configure the rest available space. This can be applied to a 3 column layout too.</p>
<p><strong><u>b. Use Stretch Layouts</u> </strong></p>
<p>If you are using the 1024 x 768 screen resolution while designing the page and you know there could be readers who may use a lower resolution, then set your main page content table to a width of anywhere between 90-95%. This will leave buffer space around the table helping it look clean in a lower resolution.</p>
<p><strong><u>c. Make the lowest resolution as baseline to build websites</u></strong></p>
<p>If you build your layout using the lowest resolution (800&#215;600) so that the table fits well in it, when viewed in the higher resolution your page will still look nice. To give you a tip, you can set a contrast background color, or add border or a shadow effect to the table to make it stand out from the body. This can be used with the stretch layouts too.</p>
<p>Choose any one of these that suits your requirements. </p>
]]></content:encoded>
			<wfw:commentRss>http://www.saffronstroke.com/2011/02/17/designing-the-table-layout-for-multiple-resolutions-in-expression-web-4/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SuperPreview Online Beta Service</title>
		<link>http://www.saffronstroke.com/2011/01/27/superpreview-online-beta-service/</link>
		<comments>http://www.saffronstroke.com/2011/01/27/superpreview-online-beta-service/#comments</comments>
		<pubDate>Thu, 27 Jan 2011 06:30:13 +0000</pubDate>
		<dc:creator>Minal</dc:creator>
				<category><![CDATA[Expression Web]]></category>
		<category><![CDATA[activating SuperPreview online service]]></category>
		<category><![CDATA[Expression Web 4 SuperPreview]]></category>
		<category><![CDATA[SuperPreview online]]></category>
		<category><![CDATA[SuperPreview online beta service]]></category>

		<guid isPermaLink="false">http://www.saffronstroke.com/?p=2190</guid>
		<description><![CDATA[The Microsoft SuperPreview online beta service extends the capability of SuperPreview to include more browsers and Operating Systems. You can activate the online service right inside SuperPreview. To know more about Expression Web 4 SuperPreview read Expression Web 4 SuperPreview – A closer look To sign up for SuperPreview online service: 1. Launch SuperPreview and [...]]]></description>
				<content:encoded><![CDATA[<p>The Microsoft SuperPreview online beta service extends the capability of SuperPreview to include more browsers and Operating Systems. You can activate the online service right inside SuperPreview. To know more about Expression Web 4 SuperPreview read <a href="http://www.dotnetcurry.com/ShowArticle.aspx?ID=637" target="_blank"><strong>Expression Web 4 SuperPreview – A closer look</strong></a></p>
<h4><strong>To sign up for SuperPreview online service:</strong></h4>
<p>1. Launch SuperPreview and click on the Sign-up button on the toolbar. Access to SuperPreview online service is available only to users who have purchased or upgraded to Expression Web 4.</p>
<p><img style="display: inline; border-width: 0px;" title="Sign_up_button" src="http://www.saffronstroke.com/wp-content/uploads/2011/01/signup.png" border="0" alt="Sign_up_button" width="36" height="38" /></p>
<p>In the information box, read the information and click on Sign up.</p>
<p><img style="display: inline; border-width: 0px;" title="Signup_info" src="http://www.saffronstroke.com/wp-content/uploads/2011/01/signup_info.png" border="0" alt="Signup_info" width="500" height="391" /></p>
<p>2. Enter a valid email address and then click on Next.</p>
<p><img style="display: inline; border-width: 0px;" title="Enter_email" src="http://www.saffronstroke.com/wp-content/uploads/2011/01/enter_email.png" border="0" alt="Enter_email" width="500" height="391" /></p>
<p><img style="display: inline; border-width: 0px;" title="Submit_email" src="http://www.saffronstroke.com/wp-content/uploads/2011/01/submit_email.png" border="0" alt="Submit_email" width="350" height="100" /></p>
<p>The activation email will be sent to this email address. The activation wizard gives you an option to resend the email if you have not received it. Also check your Junk/Spam folder.</p>
<p>3. Login to your email account and open the activation email. Follow the instructions given to validate your email address.</p>
<p><img style="display: inline; border-width: 0px;" title="Activation_email" src="http://www.saffronstroke.com/wp-content/uploads/2011/01/activation_email.png" border="0" alt="Activation_email" width="540" height="375" /></p>
<p>4. Go back to the session of SuperPreview and Click <strong>Activate</strong>.</p>
<p><img style="display: inline; border-width: 0px;" title="Activate_box" src="http://www.saffronstroke.com/wp-content/uploads/2011/01/activate_box.png" border="0" alt="Activate_box" width="423" height="129" /></p>
<h4><strong>To deactivate SuperPreview online service:</strong></h4>
<p>1. Click on Options.</p>
<p>2. In the Options dialog box, click <strong>Deactivate</strong>.</p>
<p><img style="display: inline; border-width: 0px;" title="SuperPreview_options" src="http://www.saffronstroke.com/wp-content/uploads/2011/01/SP_options.png" border="0" alt="SuperPreview_options" width="540" height="491" /></p>
<h4><strong>To delete your SuperPreview online service account:</strong></h4>
<p>1. Click on Options.</p>
<p>2. In the Options dialog box, click <strong>Delete account</strong>.</p>
<p><strong>NOTE:</strong> When you delete your SuperPreview account, all the instances on SuperPreview online service will be disabled. To enable it you will have to sign up again.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.saffronstroke.com/2011/01/27/superpreview-online-beta-service/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Most Popular Web and Graphic Design Posts of 2010 &#8211; SaffronStroke.com</title>
		<link>http://www.saffronstroke.com/2010/12/31/most-popular-web-and-graphic-design-posts-of-2010-saffronstroke-com/</link>
		<comments>http://www.saffronstroke.com/2010/12/31/most-popular-web-and-graphic-design-posts-of-2010-saffronstroke-com/#comments</comments>
		<pubDate>Fri, 31 Dec 2010 05:00:30 +0000</pubDate>
		<dc:creator>Minal</dc:creator>
				<category><![CDATA[Adobe Illustrator]]></category>
		<category><![CDATA[Adobe Photoshop]]></category>
		<category><![CDATA[Blogging Tips]]></category>
		<category><![CDATA[Books]]></category>
		<category><![CDATA[Expression Web]]></category>
		<category><![CDATA[Free Website Templates]]></category>
		<category><![CDATA[Misc Ramblings]]></category>
		<category><![CDATA[Tablet PC Tips]]></category>

		<guid isPermaLink="false">http://www.saffronstroke.com/?p=2042</guid>
		<description><![CDATA[As we bid adieu to the year 2010, it is time to sum up the posts on SaffronStroke.com, based on their popularity. So here is a list of 25 top tutorials and posts of 2010. Adobe Photoshop Tutorials 1. Transform a Picture into a Watercolor Painting using Photoshop CS5 Cool watercolor effect using Photoshop CS5, [...]]]></description>
				<content:encoded><![CDATA[<p>As we bid adieu to the year 2010, it is time to sum up the posts on SaffronStroke.com, based on their popularity. So here is a list of 25 top tutorials and posts of 2010.</p>
<h3><strong>Adobe Photoshop Tutorials</strong></h3>
<h4><strong>1.</strong> <a href="http://www.saffronstroke.com/2010/06/23/transform-a-picture-into-a-watercolor-painting-using-photoshop-cs5/" target="_blank"><strong>Transform a Picture into a Watercolor Painting using Photoshop CS5</strong></a></h4>
<p>Cool watercolor effect using Photoshop CS5, in easy steps.</p>
<h4><strong>2. </strong><a href="http://www.saffronstroke.com/2010/10/06/create-water-drops-in-photoshop-cs5/" target="_blank"><strong>Create Water Drops in Photoshop CS5</strong></a></h4>
<p>Create realistic water drops using Photoshop CS5.</p>
<h4><strong>3. </strong><a href="http://www.saffronstroke.com/2010/12/02/create-a-page-curl-effect-using-photoshop-cs5-in-5-easy-steps/"><strong>Create a Page Curl Effect using Photoshop CS5 in 5 easy steps</strong></a></h4>
<p>The tutorial explains the method to create a page curl effect in just 5 easy steps.</p>
<h4><strong>4. </strong><a href="http://www.saffronstroke.com/2010/07/04/simple-lighting-effect-in-3-steps-using-photoshop-cs5/" target="_blank"><strong>Simple Lighting Effect in 3 steps using Photoshop CS5</strong></a></h4>
<p>Add simple lighting effect to focus on one point of the picture, using the ‘Render filter’.</p>
<h4><strong>5. </strong><a href="http://www.saffronstroke.com/2010/10/27/layer-styles-photoshop-cs5/" target="_blank"><strong>Layer Styles in Photoshop CS5</strong></a></h4>
<p>Layer Styles are special effects applied to individual layers in Photoshop.<strong> </strong>Explore Preset Layer Styles and create Custom Later Styles in this tutorial.</p>
<h3><strong>Adobe Illustrator <strong>Tutorials</strong></strong></h3>
<h4><strong>6. </strong><a href="http://www.saffronstroke.com/2010/07/10/create-3d-text-illustrator-cs5/" target="_blank"><strong>Create 3D Text using Adobe Illustrator CS5</strong></a></h4>
<p>You do not always need a 3D application to create beautiful 3D text. Adobe Illustrator and Adobe Photoshop has tools that can do the needful. This tutorial explores the tools to create a 3D text in Illustrator CS5.</p>
<h4><strong>7. </strong><a href="http://www.saffronstroke.com/2010/07/13/create-an-abstract-wallpaper-in-adobe-illustrator-cs5-2/" target="_blank"><strong>Create an Abstract Wallpaper in Adobe Illustrator CS5</strong></a></h4>
<p>You must have seen and used abstract wallpapers on your desktop. Windows Vista comes with such cool abstract background too. I thought of creating one myself. This was my first attempt and I am quite impressed with it (though certainly not my best) You can use your own creativity and art to create such interesting wallpapers using the method given in this tutorial.</p>
<h4><strong>8.</strong> <a href="http://www.saffronstroke.com/2010/09/24/tracing-artwork-using-adobe-illustrator-cs5/" target="_blank"><strong>Tracing Artwork using Adobe Illustrator CS5</strong></a></h4>
<p>You may need to trace an image or a picture to create your own graphic based on it. Adobe Illustrator has a ‘Live Trace’ command that helps you automatically trace the artwork. Or you can always manually trace the artwork by using the base artwork as a ‘template’ and then using the pen or brush tool to draw. In this tutorial, you will learn both these methods.</p>
<h4><strong>9. </strong><a href="http://www.saffronstroke.com/2010/09/03/glossy-buttons-adobe-illustrator-cs5/" target="_blank"><strong>Glossy buttons in Adobe Illustrator CS5</strong></a></h4>
<p>I have come across many clients who want a Web 2.0 style buttons, icons and logos. Though I haven’t found any specific features in a Web 2.0 button or logo but the objects are usually elegant, clean, with lots of gradients, shiny and they stand out. In this tutorial we are creating a Web 2.0 button (if it falls in that category) or should I say a glossy button.</p>
<h4><strong>10. </strong><a href="http://www.saffronstroke.com/2010/12/29/3d-pushpin-illustrator-10steps/" target="_blank"><strong>Create a 3D Push Pin using Illustrator in 10 simple steps</strong></a></h4>
<p style="text-align: left;">This is a simple Illustrator tutorial on how to create a 3D push pin in 10 easy steps.</p>
<h4><strong>11. </strong><a href="http://www.saffronstroke.com/2010/11/29/3d-fruit-bowl-in-adobe-illustrator-cs5/" target="_blank"><strong>3D Fruit Bowl in Adobe Illustrator CS5</strong></a></h4>
<p>This tutorial explains how to create a 3D Fruit bowl and place 3D fruits in it.</p>
<h4><strong>12. </strong><a href="http://www.saffronstroke.com/2010/10/24/creating-scatter-brushes-in-adobe-illustrator-cs5/" target="_blank"><strong>Creating Scatter Brushes in Adobe Illustrator CS5</strong></a></h4>
<p>Scatter brushes as the name suggests, scatter a pattern along a path. You may use scatter brushes to create an artistic background. In this tutorial, learn how to create a scatter brush. You may also like <strong><a href="http://www.saffronstroke.com/2010/10/03/create-art-brush-illustrator-cs5/" target="_blank">Create an Art Brush in Adobe Illustrator CS5</a></strong> and <strong><a href="http://www.saffronstroke.com/2010/10/20/make-vector-pattern-brush-illustrator-cs5/" target="_blank">Make Vector Pattern Brush in Adobe Illustrator CS5</a></strong>.</p>
<h4><strong>13. </strong><a href="http://www.saffronstroke.com/2010/09/27/create-a-mirror-effect-using-opacity-mask-in-adobe-illustrator-cs5/" target="_blank"><strong>Create a mirror effect using Opacity Mask in Adobe Illustrator CS5</strong></a></h4>
<p>These days graphic designers and other digital artists create classy mirror or reflection effects in their art work. Mirror effect looks pretty nice and elegant for logos. In this tutorial, learn how to add mirror effect to your logo using the Opacity Mask in Adobe Illustrator CS5.</p>
<h4><strong>14. </strong><a href="http://www.saffronstroke.com/2010/08/16/placing-text-in-illustrator-cs5-doc-from-word-processing-programs/" target="_blank"><strong>Placing Text in Adobe Illustrator CS5 document from other Word Processing Programs</strong></a></h4>
<p>To place text into your Illustrator documents, you can always open the source document, copy and paste the text into Illustrator. Another way to do this without taking the trouble of opening the source document, is by importing the documents in Illustrator. Learn how to import other documents into Illustrator in this tutorial.</p>
<h3><strong>Expression Web Tutorials</strong></h3>
<h4><strong>15. </strong><a href="http://www.saffronstroke.com/2010/05/14/add-templates-to-expression-web/" target="_blank"><strong>Add templates to Expression Web</strong></a></h4>
<p>Expression Web comes with a set of built-in templates that help you create your own website, without requiring many efforts. Although some tweaking is required! To design professional websites you ought to have plenty of site templates for your use. You can create your own or purchase them from other websites. Add these templates to Expression Web and keep them handy. In this article you will see how to add downloaded templates to Expression Web.</p>
<h4><strong>16. </strong><a href="http://www.saffronstroke.com/2010/07/23/free-small-business-template/" target="_blank"><strong>Free Expression Web Template for Small Business</strong></a></h4>
<p>The ‘Small Business’ template as I call it, is a simple website template, built using CSS (Cascading Style Sheets) and DWT (Dynamic Web Template). The template suits best for a small business firm as well as for personal use. The template is completely customizable, so you can change the appearance as you like.</p>
<h4><strong>17. </strong><a href="http://www.saffronstroke.com/2010/04/28/get-rid-of-the-dotted-border-from-a-focused-hyperlink-2/" target="_blank"><strong>Get rid of the dotted border from a focused hyperlink</strong></a></h4>
<p>You must have observed this behavior that when you click on a hyperlink it is surrounded with a dotted border. But you can get rid of this temporary border with a very small piece of code. Learn about it in the article.</p>
<h4><strong>18. </strong><a href="http://www.saffronstroke.com/2010/03/23/publishing-settings-in-expression-web/" target="_blank"><strong>Publishing Settings in Expression Web</strong></a></h4>
<p>Microsoft Expression Web supports different publishing settings. You can choose to work on your own computer and then publish your site/changes to your site onto the remote production web server or you can work on a remote staging server and publish on the production web server or work directly on the remote production web server. .Learn about it in the article.</p>
<h4><strong>19. </strong><a href="http://www.saffronstroke.com/2010/04/20/add-or-remove-metadata-in-expression-web/" target="_blank"><strong>Add or remove metadata in Expression Web</strong></a></h4>
<p>Microsoft Expression Web requires metadata to maintain a whole bunch of cross-page dependencies features like hyperlinks, DWTs and some site reports. Learn how to add or remove metadata in Expression Web in this article.</p>
<h3><strong>Other Tutorials</strong></h3>
<h4><strong>20. </strong><a href="http://www.saffronstroke.com/2010/07/20/7-jquery-books-for-html-asp-net-php-developers-and-designers/" target="_blank"><strong>7 jQuery Books for HTML, ASP.NET, PHP Developers and Designers</strong></a></h4>
<p>This is a collection of jQuery books that I am sharing with you, have good reviews and are amongst the best jQuery books available in the market. Choose your book.</p>
<h4><strong>21. </strong><a href="http://www.saffronstroke.com/2010/08/04/21-decorative-free-photoshop-brushes-to-create-twitter-background/" target="_blank"><strong>21 Decorative Free Photoshop Brushes You Can Use to Create Your Twitter Background</strong></a></h4>
<p>This article contains 21 Decorative Free Photoshop brushes that you can use to create your twitter background. Use one or more of these decorative brushes to customize your twitter background, create wallpapers or any other artwork.</p>
<h4><strong>22. </strong><a href="http://www.saffronstroke.com/2010/08/28/stylish-grayscale-free-icon-sets/" target="_blank"><strong>10 Stylish Grayscale Free Icon Sets</strong></a></h4>
<p>The article features 10 grayscale icon sets collected from different sources. These are FREE Icon sets, so you can go ahead and download them and use them wherever you may like. But do read the license document carefully, if any (may ask attribution), since they are subject to change.</p>
<h4><strong>23. </strong><a href="http://www.saffronstroke.com/2010/08/13/free-funky-icon-sets/" target="_blank"><strong>Free Funky Icon Sets</strong></a></h4>
<p>Icons make blogs and websites interesting and attractive. There are plenty of formal icon sets available, and we always tend to use them in our blogs. But wouldn’t it be a good idea to use icons that fit into the theme and subject of the blog or even make them look cool. In this article, I am sharing 10 free funky icon sets that I liked, which I collected from various online resources.</p>
<h4><strong>24. </strong><a href="http://www.saffronstroke.com/2010/03/27/how-to-create-your-own-font-using-a-tablet/" target="_blank"><strong>How to create your own font using a Tablet</strong></a></h4>
<p>I always fall short on fonts while designing logos and other web graphics. Wished I could create my own font. And guess now I do that. Well it’s a simple job.<strong> </strong>Learn how to create your own font in this tutorial.</p>
<h4><strong>25. </strong><a href="http://www.saffronstroke.com/2010/12/17/backup-websites-on-bluehost/" target="_blank"><strong>Backup Websites on Bluehost</strong></a></h4>
<p>We all back up our sites regularly to avoid loss of data due to various reasons. Have I assumed all of us do that? Well if you don’t then you are in for a shock any time. So get into a habit of backing up your data regularly. The Backups feature in Bluehost allows you to download a compressed file of the backup on your local computer. It is quite simple and easy to use. This tutorial explains in steps how to backup your websites on Bluehost.</p>
<p>Which is your favorite post of 2010? Do write to us in the comments.</p>
<p>Wish you all a very Happy New Year!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.saffronstroke.com/2010/12/31/most-popular-web-and-graphic-design-posts-of-2010-saffronstroke-com/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Create Custom Toolbars in Expression Web 4</title>
		<link>http://www.saffronstroke.com/2010/12/10/create-custom-toolbars-in-expression-web-4/</link>
		<comments>http://www.saffronstroke.com/2010/12/10/create-custom-toolbars-in-expression-web-4/#comments</comments>
		<pubDate>Fri, 10 Dec 2010 14:33:20 +0000</pubDate>
		<dc:creator>Minal</dc:creator>
				<category><![CDATA[Expression Web]]></category>
		<category><![CDATA[add-in]]></category>
		<category><![CDATA[create toolbars]]></category>
		<category><![CDATA[custom toolbar add-in]]></category>
		<category><![CDATA[custom toolbars]]></category>
		<category><![CDATA[Expression Web 4]]></category>

		<guid isPermaLink="false">http://www.saffronstroke.com/?p=1914</guid>
		<description><![CDATA[You could customize toolbars and menus in the earlier version of Expression Web. Expression Web 4 comes with eleven toolbars, which are populated with most of the commands we may require like the Code View, Style, Style Application and Dynamic Web Template. So you may need customization only if you often use commands from various [...]]]></description>
				<content:encoded><![CDATA[<p>You could customize toolbars and menus in the earlier version of Expression Web. Expression Web 4 comes with eleven toolbars, which are populated with most of the commands we may require like the Code View, Style, Style Application and Dynamic Web Template. So you may need customization only if you often use commands from various toolbars, and you do not want all those toolbars eat up unnecessary space in your application.</p>
<p>Free Custom Toolbars add-in for Expression Web 4 lets you create your own toolbars to organize your commands and buttons.</p>
<p>Let us see how to install and use the add-in.</p>
<p>1. Download the add-in <a href="http://gallery.expression.microsoft.com/en-us/CustomToolbars" target="_blank"><strong>here</strong></a></p>
<p>2. Make sure the Expression Web 4 application is closed before you begin the installation process. Double click the ‘<strong>ExpressionWeb4CustomToolbars.msi</strong>’ file and follow the instructions to install the add-in.</p>
<p><img style="display: inline; border-width: 0px;" title="EW4 Custom Toolbars Addin installation step 1" src="http://www.saffronstroke.com/wp-content/uploads/2010/12/image11.png" border="0" alt="EW4 Custom Toolbars Addin installation step 1" width="513" height="420" /></p>
<p><img style="display: inline; border-width: 0px;" title="Add-in Installation complete" src="http://www.saffronstroke.com/wp-content/uploads/2010/12/image71.png" border="0" alt="Add-in Installation complete" width="513" height="420" /></p>
<p>3. Start Expression Web 4 and you should be able to see the ‘<strong>Customize Toolbars</strong>’ button as shown below:</p>
<p><img style="display: inline; border-width: 0px;" title="Customize Toolbars button" src="http://www.saffronstroke.com/wp-content/uploads/2010/12/image111.png" border="0" alt="Customize Toolbars button" width="133" height="95" /></p>
<p>This button is nothing but your Favorites Toolbar. It should be visible as soon as you install the add-in, but if not visible already, do either of the following:</p>
<p>a. View &gt; Toolbars &gt; Favorites</p>
<p>b. Right click on any existing toolbars and choose ‘Favorites’.</p>
<p>All I know about the Favorites Toolbar is, that you can use it to create Custom Toolbars and it does nothing else but keeps sitting there unless you turn it off. I would prefer to turn it off by following steps (a) or (b) given above.</p>
<p>4. To create a custom toolbar, click on the ‘Customize Toolbars’ button (if already open) or Tools &gt; Customize Toolbars…, to open the ‘Customize’ window as shown below:</p>
<p><img style="display: inline; border-width: 0px;" title="image" src="http://www.saffronstroke.com/wp-content/uploads/2010/12/image36.png" border="0" alt="image" width="220" height="249" /></p>
<p>as shown below:</p>
<p><img style="display: inline; border-width: 0px;" title="Customize dialog box 1" src="http://www.saffronstroke.com/wp-content/uploads/2010/12/image16.png" border="0" alt="Customize dialog box 1" width="518" height="480" /></p>
<p>5. Click on ‘New’ and enter a name for the toolbar. Click OK to close the New Toolbar box.</p>
<p><img style="display: inline; border-width: 0px;" title="New Toolbar dialog box" src="http://www.saffronstroke.com/wp-content/uploads/2010/12/image19.png" border="0" alt="New Toolbar dialog box" width="304" height="105" /></p>
<p>6. In the Customize dialog box, choose the items you want to place on the toolbar from the left column and click Add. Remove and Remove All buttons will help you remove an item from you list. The up and down arrows will help you reorder the items on the toolbar. When done, click OK to exit.</p>
<p><img style="display: inline; border-width: 0px;" title="Customize dialog box 2" src="http://www.saffronstroke.com/wp-content/uploads/2010/12/image25.png" border="0" alt="Customize dialog box 2" width="518" height="480" /></p>
<p>Your custom toolbar will now appear below the other toolbars already open in Expression Web 4 and will be ready to use.</p>
<p><img style="display: inline; border-width: 0px;" title="Custom Toolbar" src="http://www.saffronstroke.com/wp-content/uploads/2010/12/image28.png" border="0" alt="Custom Toolbar" width="264" height="123" /></p>
<p>I hope you found this article useful and I thank you for reading it.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.saffronstroke.com/2010/12/10/create-custom-toolbars-in-expression-web-4/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Manage websites using hidden metadata files in Microsoft Expression Web</title>
		<link>http://www.saffronstroke.com/2010/09/15/manage-web-using-hidden-metadat-files-msew/</link>
		<comments>http://www.saffronstroke.com/2010/09/15/manage-web-using-hidden-metadat-files-msew/#comments</comments>
		<pubDate>Wed, 15 Sep 2010 06:06:48 +0000</pubDate>
		<dc:creator>Minal</dc:creator>
				<category><![CDATA[Expression Web]]></category>
		<category><![CDATA[hidden metadata]]></category>
		<category><![CDATA[manage websites]]></category>
		<category><![CDATA[metadata]]></category>

		<guid isPermaLink="false">http://www.saffronstroke.com/?p=1442</guid>
		<description><![CDATA[In case of local websites, when you update a DWT (Dynamic web Tempate) and save it, only the open pages that are linked to the DWT are updated. Closed pages will not be updated. But if &#8216;Manage the web site using hidden metadata files&#8216; option is turned on, then with the help of the hidden [...]]]></description>
				<content:encoded><![CDATA[<p>In case of local websites, when you update a DWT (Dynamic web Tempate) and save it, only the open pages that are linked to the DWT are updated. Closed pages will not be updated. But if <strong>&#8216;Manage the web site using hidden metadata </strong><strong>files</strong>&#8216; option is turned on, then with the help of the hidden metadata files, all the related pages will be updated.</p>
<p>Pages will not be updated if hidden metadata is not allowed. So to turn that on;</p>
<p>Go to Site &gt; Site Settings &gt; General tab. Check the box next to the option &#8216;Manage the web site using hidden metadata files&#8217;.</p>
<p><a href="http://www.saffronstroke.com/wp-content/uploads/2010/09/Site_Settings.jpg" rel="lightbox[1442]"><img style="display: inline; border: 0px;" title="Site_Settings" src="http://www.saffronstroke.com/wp-content/uploads/2010/09/Site_Settings_thumb.jpg" border="0" alt="Site_Settings" width="396" height="371" /></a></p>
<p>Once the hidden metadata is enabled, even if you move the files within your website, the links (in both open and closed pages) to these files will be automatically updated.</p>
<p>In case of live sites, if you are using FTP with Expression Web then you should be able to enable hidden metadata files in the same way as you did in local websites.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.saffronstroke.com/2010/09/15/manage-web-using-hidden-metadat-files-msew/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>FP Cleaner Utility for Expression Web 4</title>
		<link>http://www.saffronstroke.com/2010/09/06/fp-cleaner-ew4/</link>
		<comments>http://www.saffronstroke.com/2010/09/06/fp-cleaner-ew4/#comments</comments>
		<pubDate>Mon, 06 Sep 2010 07:08:02 +0000</pubDate>
		<dc:creator>Minal</dc:creator>
				<category><![CDATA[Expression Web]]></category>
		<category><![CDATA[Expression Web 4]]></category>
		<category><![CDATA[Expression Web utilities]]></category>
		<category><![CDATA[FP Cleaner]]></category>
		<category><![CDATA[FP Cleaner for Expression Web 4]]></category>

		<guid isPermaLink="false">http://www.saffronstroke.com/?p=1421</guid>
		<description><![CDATA[FP Cleaner Utility Tool has been created by MVP Steve Easton. It has been updated to work with Expression Web 4 (along with the earlier versions). You can download it here. The FP Cleaner is very helpful in cleaning up the temporary files and any issues that may occur while using Expression Web. FP Cleaner [...]]]></description>
				<content:encoded><![CDATA[<p>FP Cleaner Utility Tool has been created by MVP <a href="http://www.95isalive.com/" target="_blank">Steve Easton</a>. It has been updated to work with Expression Web 4 (along with the earlier versions). You can download it <a href="http://www.95isalive.com/fixes/ew4.htm" target="_blank">here</a><strong></strong>.</p>
<p>The FP Cleaner is very helpful in cleaning up the temporary files and any issues that may occur while using Expression Web. FP Cleaner does not require any installation and can be run from desktop. The interface looks like this:</p>
<p><img style="display: inline; border-width: 0px;" title="image" src="http://www.saffronstroke.com/wp-content/uploads/2010/09/image16.png" border="0" alt="image" width="503" height="289" /></p>
<p>Roll over each option to know more about it. Lets take a look at the interface;</p>
<p>a. <strong>Restore Default Toolbars and Menus</strong> – This option is not available in Expression Web 4 since the feature of customizing toolbars is no longer available in Expression Web 4. However you can use this option in the earlier versions of EW.</p>
<p>b. <strong>Change the “Open Last Web” Setting</strong> – This options lets you change the Open Last Web setting, if you have set EW 4 to open up the last edited web when the program starts. In case the web has any problems, it can cause the program to open and freeze. So this way you can make sure the last edited web is not opened.</p>
<p>c. <strong>Clear  the Hidden “Temporary” Files</strong> – The option first checks for existence of any Temporary directory for the logged on User and if it exists, clears the directory by sending the files to the Recycle bin.</p>
<p>d. <strong>Clear the Hidden Cache (*.web) Files</strong> – There is web cache file (*.web) for each web and for each web location you create. If these files corrupt then you could face problem opening or closing or publishing your web site. This option deletes these files and forces creation of new clean files when each web is opened or published.</p>
<p>d. <strong>Clear the Find Replace MRU List</strong> &#8211; clears the Most Recently Used ( MRU ) list of Find/Replace entries that are saved the system Registry every time you use Find/Replace to replace words or HTML items using Expression Web.</p>
<p>e. <strong>Start</strong> – Will launch Expression Web 4.</p>
<p>f. <strong>Close</strong> – Closes the FP Cleaner program without running it.</p>
<p>g. <strong>Info</strong> – Displays the basic information about the program (as seen in the above image).</p>
<p>h. <strong>Properties</strong> &#8211; opens the Windows file properties dialog for EWFPCleaner.exe.</p>
<p>You can download the <a href="http://www.95isalive.com/fixes/ew4.htm" target="_blank"><strong>FP Cleaner for Expression Web 4</strong></a> for free.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.saffronstroke.com/2010/09/06/fp-cleaner-ew4/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Expression Web Community Toolbar</title>
		<link>http://www.saffronstroke.com/2010/08/31/expression-web-community-toolbar/</link>
		<comments>http://www.saffronstroke.com/2010/08/31/expression-web-community-toolbar/#comments</comments>
		<pubDate>Tue, 31 Aug 2010 03:00:45 +0000</pubDate>
		<dc:creator>Minal</dc:creator>
				<category><![CDATA[Expression Web]]></category>
		<category><![CDATA[Expression Web Community Toolbar]]></category>
		<category><![CDATA[free toolbar]]></category>
		<category><![CDATA[toolbar]]></category>

		<guid isPermaLink="false">http://www.saffronstroke.com/?p=1377</guid>
		<description><![CDATA[What is an Expression Web Community Toolbar? The Expression Web Community Toolbar is a tool which makes it very easy to access all important Expression Web related links and resources. This toolbar is created by fellow MVPs Tina Clarke and Pat Geary and is free for download. The toolbar includes all of the  Expression Web [...]]]></description>
				<content:encoded><![CDATA[<h3>What is an Expression Web Community Toolbar?</h3>
<p>The Expression Web Community Toolbar is a tool which makes it very easy to access all important Expression Web related links and resources. This toolbar is created by fellow MVPs Tina Clarke and Pat Geary and is free for <a href="http://expressionweb.ourtoolbar.com/" target="_blank">download</a>.</p>
<p>The toolbar includes all of the  Expression Web versions 1, 2, 3 and 4 as well as these Expression applications;</p>
<p>- Expression Design<br />
- Expression Blend<br />
- Expression Encoder</p>
<p>The toolbar has different categories in which chosen Expression Web sites (sites that provide you with quality information about Expression Web) are grouped and organized into:</p>
<p>- Expression Web links<br />
- Expression Web Blogs<br />
- Expression Web Tweets<br />
- Web Design Links</p>
<p>Each of these sections will expand to show sub-categories and links within them.</p>
<p><a href="http://www.saffronstroke.com/wp-content/uploads/2010/08/image71.png" rel="lightbox[1377]"><img style="display: inline; border: 0px;" title="EW Toolbar preview" src="http://www.saffronstroke.com/wp-content/uploads/2010/08/image_thumb4.png" border="0" alt="EW Toolbar preview" width="540" height="182" /></a></p>
<h3>What is included in the Expression Web Community Toolbar?</h3>
<h4>Expression Web Links:</h4>
<p><a href="http://www.saffronstroke.com/wp-content/uploads/2010/08/image70.png" rel="lightbox[1377]"><img style="display: inline; border-width: 0px;" title="EW Links tab" src="http://www.saffronstroke.com/wp-content/uploads/2010/08/image_thumb3.png" border="0" alt="EW Links tab" width="600" height="753" /></a></p>
<h4>Expression Web Blogs:</h4>
<p><a href="http://www.saffronstroke.com/wp-content/uploads/2010/08/image72.png" rel="lightbox[1377]"><img style="display: inline; border: 0px;" title="EW Blogs tab" src="http://www.saffronstroke.com/wp-content/uploads/2010/08/image_thumb5.png" border="0" alt="EW Blogs tab" width="249" height="116" /></a></p>
<h4>Expression Web Tweets:</h4>
<p><strong>Tweets from the Twitter id <a href="http://twitter.com/expressionweb/">expressionweb</a> </strong>where 3rd party links to tutorials are posted and you might find them helpful.</p>
<h4>Web Design Resource Links:</h4>
<p>help you with Web Design in general.</p>
<p><a href="http://www.saffronstroke.com/wp-content/uploads/2010/08/image73.png" rel="lightbox[1377]"><img style="display: inline; border: 0px;" title="Web Design tab" src="http://www.saffronstroke.com/wp-content/uploads/2010/08/image_thumb6.png" border="0" alt="Web Design tab" width="333" height="555" /></a></p>
<p>It also includes links for  Contests, Giveaways and special offers for Expression Web 3.0 and 4.0. If you want to know what Expression Web Communities, Webcasts and Live Events might be available? Those are included too.</p>
<p><strong>NOTE:</strong> A <strong>ticker</strong> will display latest breaking news or special offers.</p>
<p>There are some additional options on the toolbar which will allow you to add other applications to the toolbar. Click on the black arrow next to Expression Web and choose ‘Toolbar options’. Then choose ‘Useful Components’ tab. Check the applications you’d like to show on toolbar and click OK.</p>
<p><a href="http://www.saffronstroke.com/wp-content/uploads/2010/08/image74.png" rel="lightbox[1377]"><img style="display: inline; border: 0px;" title="Toolbar Options" src="http://www.saffronstroke.com/wp-content/uploads/2010/08/image_thumb7.png" border="0" alt="Toolbar Options" width="519" height="548" /></a></p>
<h3>How will the toolbar benefit me?</h3>
<p>What do you do when you need information or tutorials about Expression Web? You either search them on various search engines or scan your bookmarks for any sites you visited earlier and have bookmarked them. What if you have not bookmarked them? Then you will have to spend good amount of time in searching for the resources. Here the toolbar would come to your rescue.</p>
<p>What could be more convenient than having everything in one place so everyone can freely access latest news, articles and tutorials. The Expression Web Community toolbar is updated regularly with the latest tutorials, links, news, updates. Look for “NEW LINKS – LOOK HERE FIRST” with a date for the newest offerings.</p>
<h3>How do I download and install this toolbar?</h3>
<p>You can download the toolbar over <a href="http://expressionweb.ourtoolbar.com/" target="_blank"><strong>here</strong></a>.</p>
<p><a href="http://www.saffronstroke.com/wp-content/uploads/2010/08/image75.png" target="_blank" rel="lightbox[1377]"><img style="display: inline; border: 0px;" title="Expression Web Community Toolbar" src="http://www.saffronstroke.com/wp-content/uploads/2010/08/image_thumb8.png" border="0" alt="Expression Web Community Toolbar" width="540" height="12" /></a></p>
<p>Then run the executable file, follow the wizard and the toolbar would get installed on your default browser (that’s what it did on my Windows 7 machine).</p>
<h3>Can I also add a resource to the toolbar?</h3>
<p>Of course you can. Read more about the <a href="http://www.frontpage-to-expression.com/expression-web-community-toolbar.html" target="_blank">Expression Web Community Toolbar</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.saffronstroke.com/2010/08/31/expression-web-community-toolbar/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
	</channel>
</rss>
