<?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>Adobe Fireworks Team</title>
	<atom:link href="http://blogs.adobe.com/fireworks/feed" rel="self" type="application/rss+xml" />
	<link>http://blogs.adobe.com/fireworks</link>
	<description>The best screen layout design &#38; prodcution tool for Designer and Developer</description>
	<lastBuildDate>Thu, 02 Feb 2012 08:31:28 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Using the generated CSS and Sprites in a jQuery HTML page</title>
		<link>http://blogs.adobe.com/fireworks/2012/02/using-the-generated-css-and-sprites-in-a-jquery-html-page.html</link>
		<comments>http://blogs.adobe.com/fireworks/2012/02/using-the-generated-css-and-sprites-in-a-jquery-html-page.html#comments</comments>
		<pubDate>Thu, 02 Feb 2012 08:23:12 +0000</pubDate>
		<dc:creator>Michael Dominic</dc:creator>
				<category><![CDATA[Community]]></category>
		<category><![CDATA[Designer]]></category>
		<category><![CDATA[Extension]]></category>
		<category><![CDATA[jQuery]]></category>
		<category><![CDATA[Learning Resources]]></category>
		<category><![CDATA[New Feature]]></category>
		<category><![CDATA[Tips]]></category>

		<guid isPermaLink="false">http://blogs.adobe.com/fireworks/?p=291</guid>
		<description><![CDATA[In earlier posts, we learnt how to export all swatches and sprites, and export individual swatches/sprites. In this post, we’ll link an entire jQuery CSS along with sprites and link individual swatches to a mobile website.  Let’s first look at how we can create a jQuery Mobile webpage using Dreamweaver. Launch Dreamweaver CS5.5. Create a [...]]]></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%2Fblogs.adobe.com%2Ffireworks%2F2012%2F02%2Fusing-the-generated-css-and-sprites-in-a-jquery-html-page.html"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fblogs.adobe.com%2Ffireworks%2F2012%2F02%2Fusing-the-generated-css-and-sprites-in-a-jquery-html-page.html&amp;style=normal&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p style="text-align: justify;">In earlier posts, we learnt how to export all swatches and sprites, and export individual swatches/sprites. In this post, we’ll link an entire jQuery CSS along with sprites and link individual swatches to a mobile website.</p>
<p style="text-align: justify;"><span id="more-291"></span></p>
<p style="text-align: justify;"> Let’s first look at how we can create a jQuery Mobile webpage using Dreamweaver.</p>
<ol>
<li>Launch Dreamweaver CS5.5.</li>
<li>Create a new HTML page using File &gt;New. In the “New Document” dialog, select HTML as page type in the Blank Page option.</li>
<li>After the blank page is created, choose Insert &gt; jQuery Mobile &gt; Page to insert a jQuery Mobile page. In the jQuery Mobile Files dialog box that appears, retain the default settings and click OK.</li>
<li>Save the file to the desired location using the File&gt;Save option.</li>
</ol>
<h2>Using all the exported assets</h2>
<p style="text-align: justify;">Now, let’s look at how to link the exported jQuery CSS and Sprites. Follow the steps mentioned below to update the generated CSS and Sprites in a jQuery Mobile web page:</p>
<ul>
<li>Launch Dreamweaver CS5.5.</li>
<li>Open an existing site or create a new jQuery mobile Page by following the instructions present at the beginning of this blog (link that moves to the beginning of the blog where the instructions are present).</li>
<li>In the HTML page, the tag linking the default jQuery CSS to the HTML page is shown below:</li>
</ul>
<p style="text-align: center;">&lt;link href=&#8221;jquery-mobile/jquery.mobile-1.0a3.min.css&#8221; rel=&#8221;stylesheet&#8221; type=&#8221;text/css&#8221; /&gt;</p>
<p>&lt; include before screenshot&gt;<strong> </strong></p>
<p style="text-align: justify;">The href attribute points to the location of the default CSS file. To point to the CSS file exported from Fireworks, point the “href” attribute to the location of the exported CSS file.</p>
<p><img src="http://blogs.adobe.com/fireworks/files/2012/02/clip_image002.gif" alt="" width="300" height="138" /></p>
<ul>
<li>After including the CSS file, apply the CSS to the desired page/elements in the page.</li>
</ul>
<p style="text-align: justify;">To set the theme for an entire page, include the data-theme attribute and the desired swatch name for the div containing the attribute data-role with the value page. For instance, to apply swatch ‘a’ to an entire page include data-theme=”a” as shown below:</p>
<p style="text-align: center;"><strong>&lt;div data-role=&#8221;page&#8221; id=&#8221;page&#8221; data-theme=&#8221;a&#8221;&gt;</strong></p>
<p style="text-align: justify;">All the assets inside this div will use this data theme which can be overridden by including theme name for individual tags.</p>
<p style="text-align: justify;">You can modify theme of a single element in the page by including the data-theme attribute for the tag containing the element to be modified.<strong> </strong></p>
<ul>
<li>After making the necessary changes, click on the Live View button to review the updated theme that appears within the Dreamweaver workspace</li>
</ul>
<p style="text-align: justify;">&lt;screenshot&gt;</p>
<p>&nbsp;</p>
<h2>Using a single swatch</h2>
<p style="text-align: justify;">Let’s link the exported jQuery CSS containing a single swatch. Follow the steps mentioned below to include an additional swatch in the jQuery web page:</p>
<ul>
<li>Launch Dreamweaver CS5.5.</li>
<li>Open an existing site or create a new jQuery mobile Page by following the instructions present at the beginning of this blog.</li>
<li>In the HTML page, include a tag to link the CSS containing the additional swatch as shown below:</li>
</ul>
<p style="text-align: center;"><strong>&lt;link href=&#8221;jquery-mobile/gSwatch. css&#8221; rel=&#8221;stylesheet&#8221; type=&#8221;text/css&#8221; /&gt;</strong></p>
<p style="text-align: justify;">The href attribute points to the location where the CSS file is located. Modify the href attribute to point to the location where the CSS file for the individual swatch that is exported from Fireworks is present.</p>
<p><img src="http://blogs.adobe.com/fireworks/files/2012/02/clip_image004.gif" alt="" width="300" height="120" /></p>
<ul>
<li>After including the CSS file, apply CSS to the desired page/specific elements in the page. To set the theme for an entire page, include data-theme attribute with the desired swatch name for the div containing the attribute data-role with the value page. For instance, to apply swatch ‘g’ to an entire page include data-theme=”g” as shown below:</li>
</ul>
<p style="text-align: center;"><strong>&lt;div data-role=&#8221;page&#8221; id=&#8221;page&#8221; data-theme=&#8221;g&#8221;&gt;</strong></p>
<p style="text-align: justify;">All the assets inside this div will have this data theme which can be overridden by including theme name for individual tags. To modify theme of a single element in the page by including the data-theme attribute for the tag containing the element to be modified.<strong> </strong></p>
<ul>
<li>After making the necessary changes, click the Live View button to review the updated theme that appears within the Dreamweaver workspace.</li>
</ul>
<p style="text-align: justify;">
<p style="text-align: justify;">Sample jQuery Mobile pages with default swatches and modified swatches can be downloaded here(gotham_project_default and gotham_project_revised). You can see the screenshots of the webpages using default swatches and modified swatches below.  Of the two screenshots, the first one shows the sample jQuery web page with the default swatches applied to it and the adjacent screenshot shows the same webpage that uses the two swatches-a ,g, created in this blog series.</p>
<p><img src="http://blogs.adobe.com/fireworks/files/2012/02/clip_image006.gif" alt="" width="125" height="225" /><img src="http://blogs.adobe.com/fireworks/files/2012/02/clip_image008.gif" alt="" width="122" height="225" /></p>
<p>&nbsp;</p>
<p>Download CSS3 Mobile pack from <a title="Download link" href="http://labs.adobe.com/downloads/fireworks_css3mobile.html">here</a>.</p>
<p>Article on <a href="http://www.adobe.com/devnet/fireworks/articles/css3-mobile-pack-jquery.html">Creating jQuery Mobile Websites themes in Fireworks using CSS3 Mobile Pack</a> on Adobe Developer Center.</p>
<a href="http://www.facebook.com/share.php?u=http%3A%2F%2Fblogs.adobe.com%2Ffireworks%2F2012%2F02%2Fusing-the-generated-css-and-sprites-in-a-jquery-html-page.html&amp;t=Using%20the%20generated%20CSS%20and%20Sprites%20in%20a%20jQuery%20HTML%20page" id="facebook_share_link_291">Share on Facebook</a>
	<script type="text/javascript">
	<!--
	var button = document.getElementById('facebook_share_link_291') || document.getElementById('facebook_share_icon_291') || document.getElementById('facebook_share_both_291') || document.getElementById('facebook_share_button_291');
	if (button) {
		button.onclick = function(e) {
			var url = this.href.replace(/share\.php/, 'sharer.php');
			window.open(url,'sharer','toolbar=0,status=0,width=626,height=436');
			return false;
		}
	
		if (button.id === 'facebook_share_button_291') {
			button.onmouseover = function(){
				this.style.color='#fff';
				this.style.borderColor = '#295582';
				this.style.backgroundColor = '#3b5998';
			}
			button.onmouseout = function(){
				this.style.color = '#3b5998';
				this.style.borderColor = '#d8dfea';
				this.style.backgroundColor = '#fff';
			}
		}
	}
	-->
	</script>
	]]></content:encoded>
			<wfw:commentRss>http://blogs.adobe.com/fireworks/2012/02/using-the-generated-css-and-sprites-in-a-jquery-html-page.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Generating jQuery CSS and Sprites</title>
		<link>http://blogs.adobe.com/fireworks/2012/01/generating-jquery-css-and-sprites.html</link>
		<comments>http://blogs.adobe.com/fireworks/2012/01/generating-jquery-css-and-sprites.html#comments</comments>
		<pubDate>Tue, 24 Jan 2012 07:49:22 +0000</pubDate>
		<dc:creator>Michael Dominic</dc:creator>
				<category><![CDATA[Community]]></category>
		<category><![CDATA[Designer]]></category>
		<category><![CDATA[Extension]]></category>
		<category><![CDATA[jQuery]]></category>
		<category><![CDATA[Learning Resources]]></category>
		<category><![CDATA[New Feature]]></category>
		<category><![CDATA[Tips]]></category>

		<guid isPermaLink="false">http://blogs.adobe.com/fireworks/?p=275</guid>
		<description><![CDATA[In this post let’s generate the jQuery CSS and sprites from the skinned jQuery templates. There are two options available to export the required assets. Export both CSS and sprites at one go. Export Sprites or individual swatch CSS. Export both the CSS and sprites Select Commands &#62; jQuery Mobile &#62; Export Theme to generate [...]]]></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%2Fblogs.adobe.com%2Ffireworks%2F2012%2F01%2Fgenerating-jquery-css-and-sprites.html"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fblogs.adobe.com%2Ffireworks%2F2012%2F01%2Fgenerating-jquery-css-and-sprites.html&amp;style=normal&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p style="text-align: justify;">In this post let’s generate the jQuery CSS and sprites from the skinned jQuery templates. There are two options available to export the required assets.</p>
<ul>
<li>Export both CSS and sprites at one go.</li>
<li>Export Sprites or individual swatch CSS.</li>
</ul>
<p><span id="more-275"></span></p>
<h4>Export both the CSS and sprites</h4>
<p style="text-align: justify;">Select Commands &gt; jQuery Mobile &gt; Export Theme to generate the swatches for all the pages along with the sprites. The CSS file with all the swatches along with the Sprites is exported to the desired location.</p>
<p><strong><img src="http://blogs.adobe.com/fireworks/files/2012/01/clip_image0022.gif" alt="" width="297" height="224" /></strong></p>
<h4>Export a specific swatch or sprite individually</h4>
<p style="text-align: justify;">Select Export Current Swatch in the jQuery Mobile Theme Preview panel.</p>
<p style="text-align: justify;">The CSS exported for an individual swatch consists of classes related only to a single swatch page. A jQuery page can consist of as many swatches as required. This command is particularly helpful in cases where you already have the webpage built using default jQuery Mobile swatches and you are interested in including few additional swatches (x,y,z,etc.,) for special cases. <strong></strong></p>
<p><img src="http://blogs.adobe.com/fireworks/files/2012/01/clip_image0042.gif" alt="" width="212" height="211" /></p>
<h4>Modify and export sprite images</h4>
<ul>
<li>Select the “Export Sprites” option to export the sprites to a specific location.</li>
</ul>
<p style="text-align: justify;">This option can be used when you want to modify and export only the sprite images. In the example provided, I wanted 2 back buttons-a yellow and a red. So, I deleted one of the sprite images that wasn’t in use and replaced it with another red back button.</p>
<p><img src="http://blogs.adobe.com/fireworks/files/2012/01/clip_image0062.gif" alt="" width="268" height="225" /></p>
<p>&nbsp;</p>
<p>Download CSS3 Mobile pack from <a title="Download link" href="http://labs.adobe.com/downloads/fireworks_css3mobile.html">here</a>.</p>
<p>Article on <a href="http://www.adobe.com/devnet/fireworks/articles/css3-mobile-pack-jquery.html">Creating jQuery Mobile Websites themes in Fireworks using CSS3 Mobile Pack</a> on Adobe Developer Center.</p>
<a href="http://www.facebook.com/share.php?u=http%3A%2F%2Fblogs.adobe.com%2Ffireworks%2F2012%2F01%2Fgenerating-jquery-css-and-sprites.html&amp;t=Generating%20jQuery%20CSS%20and%20Sprites" id="facebook_share_link_275">Share on Facebook</a>
	<script type="text/javascript">
	<!--
	var button = document.getElementById('facebook_share_link_275') || document.getElementById('facebook_share_icon_275') || document.getElementById('facebook_share_both_275') || document.getElementById('facebook_share_button_275');
	if (button) {
		button.onclick = function(e) {
			var url = this.href.replace(/share\.php/, 'sharer.php');
			window.open(url,'sharer','toolbar=0,status=0,width=626,height=436');
			return false;
		}
	
		if (button.id === 'facebook_share_button_275') {
			button.onmouseover = function(){
				this.style.color='#fff';
				this.style.borderColor = '#295582';
				this.style.backgroundColor = '#3b5998';
			}
			button.onmouseout = function(){
				this.style.color = '#3b5998';
				this.style.borderColor = '#d8dfea';
				this.style.backgroundColor = '#fff';
			}
		}
	}
	-->
	</script>
	]]></content:encoded>
			<wfw:commentRss>http://blogs.adobe.com/fireworks/2012/01/generating-jquery-css-and-sprites.html/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Preview the modified jQuery mobile template</title>
		<link>http://blogs.adobe.com/fireworks/2012/01/preview-the-modified-jquery-mobile-template.html</link>
		<comments>http://blogs.adobe.com/fireworks/2012/01/preview-the-modified-jquery-mobile-template.html#comments</comments>
		<pubDate>Fri, 20 Jan 2012 09:14:10 +0000</pubDate>
		<dc:creator>Michael Dominic</dc:creator>
				<category><![CDATA[Community]]></category>
		<category><![CDATA[Designer]]></category>
		<category><![CDATA[Extension]]></category>
		<category><![CDATA[jQuery]]></category>
		<category><![CDATA[New Feature]]></category>
		<category><![CDATA[Tips]]></category>

		<guid isPermaLink="false">http://blogs.adobe.com/fireworks/?p=263</guid>
		<description><![CDATA[Preview your design in a browser before finalizing a design. Individual themes can be previewed in the jQuery mobile theme preview panel. All the swatches created in the template can be previewed at one go using the option to preview in a browser. In the earlier blog, we learnt how to modify swatches and include [...]]]></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%2Fblogs.adobe.com%2Ffireworks%2F2012%2F01%2Fpreview-the-modified-jquery-mobile-template.html"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fblogs.adobe.com%2Ffireworks%2F2012%2F01%2Fpreview-the-modified-jquery-mobile-template.html&amp;style=normal&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p style="text-align: justify;">Preview your design in a browser before finalizing a design. Individual themes can be previewed in the jQuery mobile theme preview panel. All the swatches created in the template can be previewed at one go using the option to preview in a browser.</p>
<p style="text-align: justify;"><span id="more-263"></span></p>
<p style="text-align: justify;">In the earlier blog, we learnt how to modify swatches and include additional swatches. You can download a copy of the template with modified assets <span style="text-decoration: underline;">here.</span> The steps to preview the revised jQuery template are:</p>
<ul>
<li>Open the jQuery template “gotham_project” in Fireworks and browse to the swatch page “g” in the Pages panel.</li>
</ul>
<p style="text-align: justify;"><img src="http://blogs.adobe.com/fireworks/files/2012/01/clip_image0021.gif" alt="" width="179" height="225" /></p>
<ul>
<li>Select Windows &gt; Extensions &gt; jQuery Mobile Theme Preview, to preview a single theme inside the Fireworks workspace.</li>
</ul>
<p><img src="http://blogs.adobe.com/fireworks/files/2012/01/clip_image0041.gif" alt="" width="266" height="128" /></p>
<ul>
<li>The Preview panel appears and displays a sample webpage with the current swatch applied to it.</li>
</ul>
<p><img src="http://blogs.adobe.com/fireworks/files/2012/01/clip_image0061.gif" alt="" width="146" height="200" /></p>
<ul>
<li>To preview all the swatches along with the sprites inside a browser, select Commands &gt; jQuery Mobile &gt; Preview Theme. The following screenshot shows swatch “a” that was modified in the first blog.</li>
</ul>
<p><img src="http://blogs.adobe.com/fireworks/files/2012/01/clip_image0081.gif" alt="" width="137" height="221" /></p>
<p>Click the tabs to preview the respective themes.</p>
<p>Download CSS3 Mobile pack from <a title="Download link" href="http://labs.adobe.com/downloads/fireworks_css3mobile.html">here</a>.</p>
<p>Article on <a href="http://www.adobe.com/devnet/fireworks/articles/css3-mobile-pack-jquery.html">Creating jQuery Mobile Websites themes in Fireworks using CSS3 Mobile Pack</a> on Adobe Developer Center.</p>
<a href="http://www.facebook.com/share.php?u=http%3A%2F%2Fblogs.adobe.com%2Ffireworks%2F2012%2F01%2Fpreview-the-modified-jquery-mobile-template.html&amp;t=Preview%20the%20modified%20jQuery%20mobile%20template" id="facebook_share_link_263">Share on Facebook</a>
	<script type="text/javascript">
	<!--
	var button = document.getElementById('facebook_share_link_263') || document.getElementById('facebook_share_icon_263') || document.getElementById('facebook_share_both_263') || document.getElementById('facebook_share_button_263');
	if (button) {
		button.onclick = function(e) {
			var url = this.href.replace(/share\.php/, 'sharer.php');
			window.open(url,'sharer','toolbar=0,status=0,width=626,height=436');
			return false;
		}
	
		if (button.id === 'facebook_share_button_263') {
			button.onmouseover = function(){
				this.style.color='#fff';
				this.style.borderColor = '#295582';
				this.style.backgroundColor = '#3b5998';
			}
			button.onmouseout = function(){
				this.style.color = '#3b5998';
				this.style.borderColor = '#d8dfea';
				this.style.backgroundColor = '#fff';
			}
		}
	}
	-->
	</script>
	]]></content:encoded>
			<wfw:commentRss>http://blogs.adobe.com/fireworks/2012/01/preview-the-modified-jquery-mobile-template.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Creating a jQuery theme template</title>
		<link>http://blogs.adobe.com/fireworks/2012/01/creating-a-jquery-theme-template-2.html</link>
		<comments>http://blogs.adobe.com/fireworks/2012/01/creating-a-jquery-theme-template-2.html#comments</comments>
		<pubDate>Wed, 11 Jan 2012 07:08:19 +0000</pubDate>
		<dc:creator>Michael Dominic</dc:creator>
				<category><![CDATA[Community]]></category>
		<category><![CDATA[Designer]]></category>
		<category><![CDATA[Extension]]></category>
		<category><![CDATA[jQuery]]></category>
		<category><![CDATA[Learning Resources]]></category>
		<category><![CDATA[New Feature]]></category>
		<category><![CDATA[Tips]]></category>

		<guid isPermaLink="false">http://blogs.adobe.com/fireworks/?p=250</guid>
		<description><![CDATA[The jQuery Mobile theme Skinning feature in Fireworks includes a template with default sprite images and a set of swatches. This extension lets you modify default sprites and swatches in the template. You can create additional swatches by duplicating an existing page and customizing it. The swatch name is inherited from the page name in [...]]]></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%2Fblogs.adobe.com%2Ffireworks%2F2012%2F01%2Fcreating-a-jquery-theme-template-2.html"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fblogs.adobe.com%2Ffireworks%2F2012%2F01%2Fcreating-a-jquery-theme-template-2.html&amp;style=normal&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p style="text-align: justify;">The jQuery Mobile theme Skinning feature in Fireworks includes a template with default sprite images and a set of swatches. This extension lets you modify default sprites and swatches in the template. You can create additional swatches by duplicating an existing page and customizing it. The swatch name is inherited from the page name in the exported CSS.</p>
<p style="text-align: justify;"><span id="more-250"></span></p>
<p>Let’s jump in and create a new jQuery Mobile Theme in Fireworks (CS5 and later versions).</p>
<ul>
<li>Download and install the <span style="text-decoration: underline;">CSS3 Mobile Pack</span>.</li>
<li>Select Commands &gt; jQuery Mobile &gt; Create New Theme</li>
</ul>
<p><img src="http://blogs.adobe.com/fireworks/files/2012/01/clip_image002.gif" alt="" width="290" height="225" /></p>
<p style="text-align: justify;">This command creates a jQuery template consisting of five default swatch pages (a,b,c,d and e), a global styles/assets page and an instruction page.</p>
<p style="text-align: justify;">You can modify the default theme by making the necessary changes to the default swatch pages and the sprites page according to design/branding requirements. To create additional swatches, duplicate an existing swatch page.</p>
<ul>
<li>To duplicate a swatch page, open the Pages panel, right-click the swatch page, and select the “Duplicate Page” option.</li>
<li>After duplicating the page, rename the page to the swatch name that will be used in the exported CSS. jQuery suggests that you use one of the 26 alphabets(a-z).</li>
</ul>
<h1>Modifying and updating existing templates</h1>
<p style="text-align: justify;"> Let’s look at an example where we’ll be modifying one of the default swatches in the template and including an additional swatch.</p>
<ul>
<li>Create a jQuery template in Fireworks by selecting Commands &gt; jQuery Mobile &gt; Create New Theme. You’ll see a new jQuery template created in Fireworks as shown in the following screenshot:</li>
</ul>
<p><img src="http://blogs.adobe.com/fireworks/files/2012/01/clip_image004.gif" alt="" width="274" height="225" /></p>
<ul>
<li>Open the Pages panel. Observer that the first page named “Global Assets and Styles” is followed by 5 pages named a-e. Page “Global Assets and Styles” includes the default sprites and other global styles such as roundness, active button color, icon background, etc., which are used across all the swatches. Pages a-e are the default swatches provided in the template.</li>
</ul>
<p><img src="http://blogs.adobe.com/fireworks/files/2012/01/clip_image006.gif" alt="" width="192" height="225" /></p>
<p>&nbsp;</p>
<ul>
<li>Let’s modify swatch ‘a” Click on the swatch page ‘a’ and modify the assets present on the canvas. You can modify the colors, change text styles, apply gradient, add roundness, apply effects such as drop shadows, or make other modifications as desired. You can see the modified swatch page “a” in the screenshot shown below:</li>
</ul>
<p><img src="http://blogs.adobe.com/fireworks/files/2012/01/clip_image008.gif" alt="" width="184" height="225" /></p>
<ul>
<li>Let’s add additional swatch pages. To do this you duplicate an existing swatch page. Right-click the swatch page and select the duplicate page  option as shown in the following screenshot:</li>
</ul>
<p><img src="http://blogs.adobe.com/fireworks/files/2012/01/clip_image010.gif" alt="" width="148" height="225" /></p>
<p>&nbsp;</p>
<ul>
<li>The swatch name is inherited from the page name. To rename the page, right-click the duplicate page and select Rename Page. Since jQuery recommends that we use one of the alphabets, let’s rename our swatch page to “g”.</li>
</ul>
<p><img src="http://blogs.adobe.com/fireworks/files/2012/01/clip_image012.gif" alt="" width="183" height="225" /></p>
<ul>
<li>We’ll now modify the swatch page as we did for the swatch “a”. The following screenshot shows the modified swatch page “g”.</li>
</ul>
<p><img src="http://blogs.adobe.com/fireworks/files/2012/01/clip_image014.gif" alt="" width="184" height="225" /></p>
<p>&nbsp;</p>
<ul>
<li>Let’s modify jQuery sprites that we’ll be using in our jQuery webpage. Browse to the page “Global Assets and Styles” in the Pages panel and change the color of the sprites. Global styles such as roundness, background color for the icons,etc., have also been modified. In the following screenshot, you can see the modified sprites and global styles present in the template. Global styles such as roundness, links, etc., are used across all the swatches.</li>
</ul>
<p><img src="http://blogs.adobe.com/fireworks/files/2012/01/clip_image016.gif" alt="" width="248" height="206" /></p>
<ul>
<li>You can now save a copy of the file at your desired location by clicking on File&gt;Save option.</li>
</ul>
<p>Download CSS3 Mobile pack from <a title="Download link" href="http://labs.adobe.com/downloads/fireworks_css3mobile.html">here</a>.</p>
<p>Article on <a href="http://www.adobe.com/devnet/fireworks/articles/css3-mobile-pack-jquery.html">Creating jQuery Mobile Websites themes in Fireworks using CSS3 Mobile Pack</a> on Adobe Developer Center.</p>
<a href="http://www.facebook.com/share.php?u=http%3A%2F%2Fblogs.adobe.com%2Ffireworks%2F2012%2F01%2Fcreating-a-jquery-theme-template-2.html&amp;t=Creating%20a%20jQuery%20theme%20template" id="facebook_share_link_250">Share on Facebook</a>
	<script type="text/javascript">
	<!--
	var button = document.getElementById('facebook_share_link_250') || document.getElementById('facebook_share_icon_250') || document.getElementById('facebook_share_both_250') || document.getElementById('facebook_share_button_250');
	if (button) {
		button.onclick = function(e) {
			var url = this.href.replace(/share\.php/, 'sharer.php');
			window.open(url,'sharer','toolbar=0,status=0,width=626,height=436');
			return false;
		}
	
		if (button.id === 'facebook_share_button_250') {
			button.onmouseover = function(){
				this.style.color='#fff';
				this.style.borderColor = '#295582';
				this.style.backgroundColor = '#3b5998';
			}
			button.onmouseout = function(){
				this.style.color = '#3b5998';
				this.style.borderColor = '#d8dfea';
				this.style.backgroundColor = '#fff';
			}
		}
	}
	-->
	</script>
	]]></content:encoded>
			<wfw:commentRss>http://blogs.adobe.com/fireworks/2012/01/creating-a-jquery-theme-template-2.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>jQuery Mobile Theme Skinning</title>
		<link>http://blogs.adobe.com/fireworks/2012/01/jquery-mobile-theme-skinning.html</link>
		<comments>http://blogs.adobe.com/fireworks/2012/01/jquery-mobile-theme-skinning.html#comments</comments>
		<pubDate>Tue, 03 Jan 2012 08:18:14 +0000</pubDate>
		<dc:creator>Michael Dominic</dc:creator>
				<category><![CDATA[Community]]></category>
		<category><![CDATA[Designer]]></category>
		<category><![CDATA[Extension]]></category>
		<category><![CDATA[jQuery]]></category>
		<category><![CDATA[Learning Resources]]></category>
		<category><![CDATA[New Feature]]></category>
		<category><![CDATA[Tips]]></category>

		<guid isPermaLink="false">http://blogs.adobe.com/fireworks/?p=232</guid>
		<description><![CDATA[This blog is the first in series of five blogs dedicated to “jQuery Mobile Theme Skinning”, a new feature in Fireworks CS5 that is part of the CSS3 Mobile Pack extension. Introduction to jQuery Mobile Theme Skinning extension and jQuery Mobile framework Creating a new jQuery template Previewing the jQuery Mobile design Exporting the design [...]]]></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%2Fblogs.adobe.com%2Ffireworks%2F2012%2F01%2Fjquery-mobile-theme-skinning.html"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fblogs.adobe.com%2Ffireworks%2F2012%2F01%2Fjquery-mobile-theme-skinning.html&amp;style=normal&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p>This blog is the first in series of five blogs dedicated to “<strong>jQuery Mobile Theme Skinning</strong>”, a new feature in <strong>Fireworks CS5</strong> that is part of the CSS3 Mobile Pack extension.</p>
<ol>
<li>Introduction to jQuery Mobile Theme Skinning extension and jQuery Mobile framework</li>
<li>Creating a new jQuery template</li>
<li>Previewing the jQuery Mobile design</li>
<li>Exporting the design to CSS</li>
<li>Creating a jQuery Mobile webpage in Dreamweaver and using the exported CSS file in the new web page</li>
</ol>
<h2><strong>jQuery Mobile Theme Skinning</strong></h2>
<p>The jQuery mobile theme skinning is part of the <a href="http://labs.adobe.com/technologies/fireworks_css3mobile/">CSS3 Mobile Pack extension</a> for Fireworks. This extension enables you to create or update the theme of a jQuery Mobile website using Fireworks.</p>
<p>In Fireworks, a template with all the modifiable design aspects for jQuery Mobile is provided. After modifying the themes present in the template, you can preview the look and feel of the themes using an in-app preview or a browser, and export the corresponding CSS code along with the sprite assets.</p>
<p><span id="more-232"></span></p>
<h2>jQuery Mobile Framework</h2>
<p>The <a href="http://jquerymobile.com/" target="_blank">jQuery Mobile Framework</a> is a JavaScript framework that allows you to quickly build websites for mobile devices. It is a touch-optimized web framework designed for smartphones and tablets.</p>
<p>jQuery Mobile works on the vast majority of all modern desktop, smartphone, tablet, and e-reader platforms. The jQuery Mobile Framework is easy to use and includes web-specific controls such as buttons, sliders, list elements, and many more.</p>
<p>When you build mobile websites with the jQuery Mobile Framework, you can leverage the default theme set provided with the framework. To learn more about how the default theme works, read the <a href="http://jquerymobile.com/demos/1.0a4.1/#docs/api/themes.html" target="_blank">jQuery Mobile Framework Theme Documentation</a>.</p>
<h2>Themes and Swatches</h2>
<p>jQuery mobile pages consist of a set of design objects that can be modified before they are used in a web page. For example, bars, buttons and body are design objects whose styles can be modified. Styles for design objects such as lists, slider, select menus are derived from one of these design objects.</p>
<p>A <strong>theme</strong> includes a collection of swatches. Each swatch consists of styles for a bar, content block and various button/list interaction states. You can mix and match the bars, blocks, and buttons among the swatches on a page for more combinations. By default, design objects in a jQuery mobile page use different styles for different objects. For example, the body is uses swatch “c” and button uses swatch “a”.</p>
<p><strong>Note:</strong> jQuery recommends that you limit the number of swatches to 26 (a-z).</p>
<h2>Benefits of the jQuery Mobile framework</h2>
<ul>
<li>jQuery Mobile uses CSS3 properties to create rounded corners, box and text shadows, and gradients. Using CSS3 properties instead of images is advantageous because it reduces the size of the theme file and the number of server requests.</li>
<li>Themes include multiple color swatches, each consisting of a header bar, content body, and button states that you can freely mix and match. These swatches enable you to create visual textures and richer designs.</li>
<li>Open-ended themes support up to 26 unique swatches per theme. This makes it possible to add almost unlimited variety to your designs.</li>
<li>All backgrounds now use CSS3 gradients to dramatically reduce the file size and number of server requests to improve performance.</li>
<li>To reduce image size, a simplified icon set includes elements most commonly used for mobile in a sprite.</li>
</ul>
<p><strong>Resources</strong></p>
<ul>
<li>To view the ADC article regarding creation of jQuery themes using the CSS3 Mobile Pack, see<a href="http://www.adobe.com/devnet/fireworks/articles/css3-mobile-pack-jquery.html"> http://www.adobe.com/devnet/fireworks/articles/css3-mobile-pack-jquery.html</a></li>
<li>To view websites created with jQuery Mobile, see <a href="http://www.jqmgallery.com/">http://www.jqmgallery.com</a></li>
<li>For an understanding of CSS3 Mobile pack that contains CSS properties and jQuery Mobile theme skinning, see <a href="http://www.peachpit.com/store/product.aspx?isbn=0132979780">http://www.peachpit.com/store/product.aspx?isbn=0132979780</a></li>
<li>For resources (books, themes, tutorials, and so on) on jQuery Mobile Framework, see <a href="http://jquerymobile.com/resources/">http://jquerymobile.com/resources/</a></li>
</ul>
<a href="http://www.facebook.com/share.php?u=http%3A%2F%2Fblogs.adobe.com%2Ffireworks%2F2012%2F01%2Fjquery-mobile-theme-skinning.html&amp;t=jQuery%20Mobile%20Theme%20Skinning" id="facebook_share_link_232">Share on Facebook</a>
	<script type="text/javascript">
	<!--
	var button = document.getElementById('facebook_share_link_232') || document.getElementById('facebook_share_icon_232') || document.getElementById('facebook_share_both_232') || document.getElementById('facebook_share_button_232');
	if (button) {
		button.onclick = function(e) {
			var url = this.href.replace(/share\.php/, 'sharer.php');
			window.open(url,'sharer','toolbar=0,status=0,width=626,height=436');
			return false;
		}
	
		if (button.id === 'facebook_share_button_232') {
			button.onmouseover = function(){
				this.style.color='#fff';
				this.style.borderColor = '#295582';
				this.style.backgroundColor = '#3b5998';
			}
			button.onmouseout = function(){
				this.style.color = '#3b5998';
				this.style.borderColor = '#d8dfea';
				this.style.backgroundColor = '#fff';
			}
		}
	}
	-->
	</script>
	]]></content:encoded>
			<wfw:commentRss>http://blogs.adobe.com/fireworks/2012/01/jquery-mobile-theme-skinning.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>CSS3 Mobile Pack</title>
		<link>http://blogs.adobe.com/fireworks/2011/10/css3-mobile-pack.html</link>
		<comments>http://blogs.adobe.com/fireworks/2011/10/css3-mobile-pack.html#comments</comments>
		<pubDate>Thu, 20 Oct 2011 17:25:15 +0000</pubDate>
		<dc:creator>Takashi Morifusa</dc:creator>
				<category><![CDATA[Announcements]]></category>
		<category><![CDATA[Designer]]></category>
		<category><![CDATA[Extension]]></category>
		<category><![CDATA[Learning Resources]]></category>
		<category><![CDATA[Production]]></category>

		<guid isPermaLink="false">http://blogs.adobe.com/fireworks/?p=216</guid>
		<description><![CDATA[At AdobeMAX 2011 Keynote, Fireworks CSS3 Mobile Pack is announced. This mobile pack contains following feature. CSS Properties panel - Extract your design comp to CSS code  jQuery Mobile theme skinnig feature - Creative your owm jQuey swatch, include custom icons, or modify default theme Video: Using CSS3 Mobile Pack You can download this extension [...]]]></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%2Fblogs.adobe.com%2Ffireworks%2F2011%2F10%2Fcss3-mobile-pack.html"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fblogs.adobe.com%2Ffireworks%2F2011%2F10%2Fcss3-mobile-pack.html&amp;style=normal&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p>At AdobeMAX 2011 Keynote, Fireworks CSS3 Mobile Pack is announced.</p>
<p>This mobile pack contains following feature.</p>
<ul>
<li>CSS Properties panel<br />
- Extract your design comp to CSS code</li>
<li> jQuery Mobile theme skinnig feature<br />
- Creative your owm jQuey swatch, include custom icons, or modify default theme</li>
</ul>
<p>Video: <a href="http://tv.adobe.com/watch/fireworks-tips-and-tricks/using-the-new-css3-mobile-pack/">Using CSS3 Mobile Pack</a></p>
<p>You can download this extension from <a title="Adobe Labs" href="http://labs.adobe.com/technologies/fireworks_css3mobile/">Adobe Labs</a></p>
<p>Enjoy!</p>
<a href="http://www.facebook.com/share.php?u=http%3A%2F%2Fblogs.adobe.com%2Ffireworks%2F2011%2F10%2Fcss3-mobile-pack.html&amp;t=CSS3%20Mobile%20Pack" id="facebook_share_link_216">Share on Facebook</a>
	<script type="text/javascript">
	<!--
	var button = document.getElementById('facebook_share_link_216') || document.getElementById('facebook_share_icon_216') || document.getElementById('facebook_share_both_216') || document.getElementById('facebook_share_button_216');
	if (button) {
		button.onclick = function(e) {
			var url = this.href.replace(/share\.php/, 'sharer.php');
			window.open(url,'sharer','toolbar=0,status=0,width=626,height=436');
			return false;
		}
	
		if (button.id === 'facebook_share_button_216') {
			button.onmouseover = function(){
				this.style.color='#fff';
				this.style.borderColor = '#295582';
				this.style.backgroundColor = '#3b5998';
			}
			button.onmouseout = function(){
				this.style.color = '#3b5998';
				this.style.borderColor = '#d8dfea';
				this.style.backgroundColor = '#fff';
			}
		}
	}
	-->
	</script>
	]]></content:encoded>
			<wfw:commentRss>http://blogs.adobe.com/fireworks/2011/10/css3-mobile-pack.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Fireworks 11.0.1 Dot Release for Fireworks CS5.0 customer is out!</title>
		<link>http://blogs.adobe.com/fireworks/2011/06/fireworks-11-0-1-dot-release-for-fireworks-cs5-0-customer-is-out.html</link>
		<comments>http://blogs.adobe.com/fireworks/2011/06/fireworks-11-0-1-dot-release-for-fireworks-cs5-0-customer-is-out.html#comments</comments>
		<pubDate>Wed, 15 Jun 2011 11:54:50 +0000</pubDate>
		<dc:creator>Takashi Morifusa</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://blogs.adobe.com/fireworks/?p=207</guid>
		<description><![CDATA[Fireworks 11.0.1 Dot Release for Fireworks CS5.0 customer is out! &#160; More Bug fixes and stabilize application. Use AAM(Adobe Application Manager) or download from here. http://www.adobe.com/support/fireworks/downloads_updaters.html &#160; You can find the detail of bug fixes on the older post. http://blogs.adobe.com/fireworks/2011/04/fireworks-cs5-1-in-creative-suite-cs5-5.html &#160; Enjoy, Fireworks Team Share on Facebook]]></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%2Fblogs.adobe.com%2Ffireworks%2F2011%2F06%2Ffireworks-11-0-1-dot-release-for-fireworks-cs5-0-customer-is-out.html"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fblogs.adobe.com%2Ffireworks%2F2011%2F06%2Ffireworks-11-0-1-dot-release-for-fireworks-cs5-0-customer-is-out.html&amp;style=normal&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p>Fireworks 11.0.1 Dot Release for Fireworks CS5.0 customer is out!</p>
<p>&nbsp;</p>
<p>More Bug fixes and stabilize application. Use AAM(Adobe Application Manager) or download from here.</p>
<p><a href="http://www.adobe.com/support/fireworks/downloads_updaters.html">http://www.adobe.com/support/fireworks/downloads_updaters.html</a></p>
<p>&nbsp;</p>
<p>You can find the detail of bug fixes on the older post.</p>
<p><a href="http://blogs.adobe.com/fireworks/2011/04/fireworks-cs5-1-in-creative-suite-cs5-5.html">http://blogs.adobe.com/fireworks/2011/04/fireworks-cs5-1-in-creative-suite-cs5-5.html</a></p>
<p>&nbsp;</p>
<p>Enjoy,</p>
<p>Fireworks Team</p>
<a href="http://www.facebook.com/share.php?u=http%3A%2F%2Fblogs.adobe.com%2Ffireworks%2F2011%2F06%2Ffireworks-11-0-1-dot-release-for-fireworks-cs5-0-customer-is-out.html&amp;t=Fireworks%2011.0.1%20Dot%20Release%20for%20Fireworks%20CS5.0%20customer%20is%20out%21" id="facebook_share_link_207">Share on Facebook</a>
	<script type="text/javascript">
	<!--
	var button = document.getElementById('facebook_share_link_207') || document.getElementById('facebook_share_icon_207') || document.getElementById('facebook_share_both_207') || document.getElementById('facebook_share_button_207');
	if (button) {
		button.onclick = function(e) {
			var url = this.href.replace(/share\.php/, 'sharer.php');
			window.open(url,'sharer','toolbar=0,status=0,width=626,height=436');
			return false;
		}
	
		if (button.id === 'facebook_share_button_207') {
			button.onmouseover = function(){
				this.style.color='#fff';
				this.style.borderColor = '#295582';
				this.style.backgroundColor = '#3b5998';
			}
			button.onmouseout = function(){
				this.style.color = '#3b5998';
				this.style.borderColor = '#d8dfea';
				this.style.backgroundColor = '#fff';
			}
		}
	}
	-->
	</script>
	]]></content:encoded>
			<wfw:commentRss>http://blogs.adobe.com/fireworks/2011/06/fireworks-11-0-1-dot-release-for-fireworks-cs5-0-customer-is-out.html/feed</wfw:commentRss>
		<slash:comments>25</slash:comments>
		</item>
		<item>
		<title>Math Resize Extension : Matt Stow</title>
		<link>http://blogs.adobe.com/fireworks/2011/05/math-resize-extension-matt-stow.html</link>
		<comments>http://blogs.adobe.com/fireworks/2011/05/math-resize-extension-matt-stow.html#comments</comments>
		<pubDate>Wed, 11 May 2011 15:54:36 +0000</pubDate>
		<dc:creator>Takashi Morifusa</dc:creator>
				<category><![CDATA[Community]]></category>
		<category><![CDATA[Extension]]></category>
		<category><![CDATA[Production]]></category>

		<guid isPermaLink="false">http://blogs.adobe.com/fireworks/?p=197</guid>
		<description><![CDATA[Math Resize Extension : Matt Stow http://www.mattstow.com/ Matt Stow is a web and user interface designer who specialises in designing and developing accessible, standards-compliant websites. From conception to completion, Fireworks and Dreamweaver are his most important companions. Matt is a Fireworks evangelist and can often be found championing its abilities. His recent invention is Math [...]]]></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%2Fblogs.adobe.com%2Ffireworks%2F2011%2F05%2Fmath-resize-extension-matt-stow.html"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fblogs.adobe.com%2Ffireworks%2F2011%2F05%2Fmath-resize-extension-matt-stow.html&amp;style=normal&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<h1><a href="http://www.mattstow.com/math-resize.html">Math Resize Extension : Matt Stow</a></h1>
<p><a href="http://www.mattstow.com/l">http://www.mattstow.com/</a></p>
<p>Matt Stow is a web and user interface designer who specialises in  designing and developing accessible, standards-compliant websites. From  conception to completion, Fireworks and Dreamweaver are his most  important companions. Matt is a Fireworks evangelist and can often be  found championing its abilities.</p>
<p>His recent invention is Math resize extension.<a class="lightbox" title="MattStow_MathResize" href="http://blogs.adobe.com/fireworks/files/2011/05/MattStow_MathResize.jpg"><img class="alignright size-full wp-image-198" title="MattStow_MathResize" src="http://blogs.adobe.com/fireworks/files/2011/05/MattStow_MathResize.jpg" alt="" width="416" height="329" /></a></p>
<p>This extension allow user to resize an object as mathematically. I&#8217;s really useful to resize an object exact value without distortion. For example if you create rounded corner rectangle resize object via scale tool, the corner will be distorted. You need to use 9-slice scale tool to avoid problem or simply type exact value in PI W, H field. However, using this extension, it will help you to simple calculation to resize object.</p>
<p>Give it a try!</p>
<p>&nbsp;</p>
<a href="http://www.facebook.com/share.php?u=http%3A%2F%2Fblogs.adobe.com%2Ffireworks%2F2011%2F05%2Fmath-resize-extension-matt-stow.html&amp;t=Math%20Resize%20Extension%20%3A%20Matt%20Stow" id="facebook_share_link_197">Share on Facebook</a>
	<script type="text/javascript">
	<!--
	var button = document.getElementById('facebook_share_link_197') || document.getElementById('facebook_share_icon_197') || document.getElementById('facebook_share_both_197') || document.getElementById('facebook_share_button_197');
	if (button) {
		button.onclick = function(e) {
			var url = this.href.replace(/share\.php/, 'sharer.php');
			window.open(url,'sharer','toolbar=0,status=0,width=626,height=436');
			return false;
		}
	
		if (button.id === 'facebook_share_button_197') {
			button.onmouseover = function(){
				this.style.color='#fff';
				this.style.borderColor = '#295582';
				this.style.backgroundColor = '#3b5998';
			}
			button.onmouseout = function(){
				this.style.color = '#3b5998';
				this.style.borderColor = '#d8dfea';
				this.style.backgroundColor = '#fff';
			}
		}
	}
	-->
	</script>
	]]></content:encoded>
			<wfw:commentRss>http://blogs.adobe.com/fireworks/2011/05/math-resize-extension-matt-stow.html/feed</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Create Multiple Animated AD-Banners In A Breeze : vart.io &#8211; Learn from Professional</title>
		<link>http://blogs.adobe.com/fireworks/2011/04/create-multiple-animated-ad-banners-in-a-breeze-learn-from-professional.html</link>
		<comments>http://blogs.adobe.com/fireworks/2011/04/create-multiple-animated-ad-banners-in-a-breeze-learn-from-professional.html#comments</comments>
		<pubDate>Thu, 28 Apr 2011 16:39:22 +0000</pubDate>
		<dc:creator>Takashi Morifusa</dc:creator>
				<category><![CDATA[Community]]></category>
		<category><![CDATA[Designer]]></category>
		<category><![CDATA[Learning Resources]]></category>
		<category><![CDATA[Production]]></category>
		<category><![CDATA[Tips]]></category>

		<guid isPermaLink="false">http://blogs.adobe.com/fireworks/?p=182</guid>
		<description><![CDATA[Create Multiple Animated AD-Banners In A Breeze http://www.vart.io/ Mikko Vartio is web designer / web developer and one of the top Fireworks user. His web site provide great tips and techniques for Fireworks. GIF banner Ads is commonly used and could increase usage since iOS does not support one of Adobe&#8217;s technology. By the way,  [...]]]></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%2Fblogs.adobe.com%2Ffireworks%2F2011%2F04%2Fcreate-multiple-animated-ad-banners-in-a-breeze-learn-from-professional.html"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fblogs.adobe.com%2Ffireworks%2F2011%2F04%2Fcreate-multiple-animated-ad-banners-in-a-breeze-learn-from-professional.html&amp;style=normal&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<h1><a title="Create Multiple Animated AD-Banners In A Breeze" rel="bookmark" href="http://www.vart.io/create-gif-ads/">Create Multiple Animated AD-Banners In A Breeze</a></h1>
<p><a href="http://www.vart.io/">http://www.vart.io/</a></p>
<p>Mikko Vartio is web designer / web developer and one of the top Fireworks user. His web site provide great tips and techniques for Fireworks. GIF banner Ads is commonly used and could increase usage since iOS does not support one of Adobe&#8217;s technology.</p>
<p><a class="lightbox" title="vertio" href="http://blogs.adobe.com/fireworks/files/2011/04/vertio.jpg"><img class="alignright size-full wp-image-183" title="vertio" src="http://blogs.adobe.com/fireworks/files/2011/04/vertio.jpg" alt="" width="400" height="372" /></a>By the way,  Fireworks rename Frame palette to States Panel in order to align same concept with Flex platform. However, you can still use State panel as exactly same way to create animated GIF. We can learn efficient way to create multiple size of Ad-banner from this tutorial.</p>
<a href="http://www.facebook.com/share.php?u=http%3A%2F%2Fblogs.adobe.com%2Ffireworks%2F2011%2F04%2Fcreate-multiple-animated-ad-banners-in-a-breeze-learn-from-professional.html&amp;t=Create%20Multiple%20Animated%20AD-Banners%20In%20A%20Breeze%20%3A%20vart.io%20-%20Learn%20from%20Professional" id="facebook_share_link_182">Share on Facebook</a>
	<script type="text/javascript">
	<!--
	var button = document.getElementById('facebook_share_link_182') || document.getElementById('facebook_share_icon_182') || document.getElementById('facebook_share_both_182') || document.getElementById('facebook_share_button_182');
	if (button) {
		button.onclick = function(e) {
			var url = this.href.replace(/share\.php/, 'sharer.php');
			window.open(url,'sharer','toolbar=0,status=0,width=626,height=436');
			return false;
		}
	
		if (button.id === 'facebook_share_button_182') {
			button.onmouseover = function(){
				this.style.color='#fff';
				this.style.borderColor = '#295582';
				this.style.backgroundColor = '#3b5998';
			}
			button.onmouseout = function(){
				this.style.color = '#3b5998';
				this.style.borderColor = '#d8dfea';
				this.style.backgroundColor = '#fff';
			}
		}
	}
	-->
	</script>
	]]></content:encoded>
			<wfw:commentRss>http://blogs.adobe.com/fireworks/2011/04/create-multiple-animated-ad-banners-in-a-breeze-learn-from-professional.html/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Trouble Shooting: Could not launch Fireworks CS4. An internal error occurred.</title>
		<link>http://blogs.adobe.com/fireworks/2011/04/trouble-shooting-could-not-launch-fireworks-cs4-an-internal-error-occurred.html</link>
		<comments>http://blogs.adobe.com/fireworks/2011/04/trouble-shooting-could-not-launch-fireworks-cs4-an-internal-error-occurred.html#comments</comments>
		<pubDate>Thu, 28 Apr 2011 04:00:39 +0000</pubDate>
		<dc:creator>Takashi Morifusa</dc:creator>
				<category><![CDATA[Learning Resources]]></category>
		<category><![CDATA[Tips]]></category>

		<guid isPermaLink="false">http://blogs.adobe.com/fireworks/?p=175</guid>
		<description><![CDATA[Thanks nakis-s.info for sharing information Some customer suffer from &#8220;Could not Launch&#8221; problem with &#8220;An internal error occurred.&#8221; on Fireworks CS4 on Window. Please delete &#8220;Fireworks CS4 Panel Prefs.xml&#8221; and re-launch application. This could solve the problem. &#160; The file location is: Windows XP: [Drive C:]\Documents and Settings\[username]\Application Data\Adobe\Fireworks CS4\[language]\Fireworks CS4 Panel Prefs.xml Windows Vista [...]]]></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%2Fblogs.adobe.com%2Ffireworks%2F2011%2F04%2Ftrouble-shooting-could-not-launch-fireworks-cs4-an-internal-error-occurred.html"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fblogs.adobe.com%2Ffireworks%2F2011%2F04%2Ftrouble-shooting-could-not-launch-fireworks-cs4-an-internal-error-occurred.html&amp;style=normal&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p>Thanks <a href="http://www.nakis-s.info/fireworks-error.html">nakis-s.info</a> for sharing information</p>
<p>Some customer suffer from &#8220;<strong>Could not Launch</strong>&#8221; problem with &#8220;<strong>An internal error occurred</strong>.&#8221; on Fireworks CS4 on Window.</p>
<p>Please delete <strong>&#8220;Fireworks CS4 Panel Prefs.xml&#8221;</strong> and re-launch application. This could solve the problem.</p>
<p>&nbsp;</p>
<p>The file location is:</p>
<p>Windows XP:<br />
<em>[Drive C:]</em>\Documents and Settings\<em>[username]</em>\Application Data\Adobe\Fireworks CS4\<em>[language]</em>\Fireworks CS4 Panel Prefs.xml</p>
<p>Windows Vista or Windows 7:<br />
<em>[Drive, C:]</em>\Users\<em>[username]</em>\AppData\Roaming\Adobe\Fireworks CS4\<em>[language]</em>\Fireworks CS4 Panel Prefs.xml</p>
<a href="http://www.facebook.com/share.php?u=http%3A%2F%2Fblogs.adobe.com%2Ffireworks%2F2011%2F04%2Ftrouble-shooting-could-not-launch-fireworks-cs4-an-internal-error-occurred.html&amp;t=Trouble%20Shooting%3A%20Could%20not%20launch%20Fireworks%20CS4.%20An%20internal%20error%20occurred." id="facebook_share_link_175">Share on Facebook</a>
	<script type="text/javascript">
	<!--
	var button = document.getElementById('facebook_share_link_175') || document.getElementById('facebook_share_icon_175') || document.getElementById('facebook_share_both_175') || document.getElementById('facebook_share_button_175');
	if (button) {
		button.onclick = function(e) {
			var url = this.href.replace(/share\.php/, 'sharer.php');
			window.open(url,'sharer','toolbar=0,status=0,width=626,height=436');
			return false;
		}
	
		if (button.id === 'facebook_share_button_175') {
			button.onmouseover = function(){
				this.style.color='#fff';
				this.style.borderColor = '#295582';
				this.style.backgroundColor = '#3b5998';
			}
			button.onmouseout = function(){
				this.style.color = '#3b5998';
				this.style.borderColor = '#d8dfea';
				this.style.backgroundColor = '#fff';
			}
		}
	}
	-->
	</script>
	]]></content:encoded>
			<wfw:commentRss>http://blogs.adobe.com/fireworks/2011/04/trouble-shooting-could-not-launch-fireworks-cs4-an-internal-error-occurred.html/feed</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
	</channel>
</rss>

