<?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>CalBearMnM&#039;s Journal &#187; Web Dev and Tech</title>
	<atom:link href="http://calbearmnm.com/mnm/journal/category/learning/web-dev-and-tech/feed/" rel="self" type="application/rss+xml" />
	<link>http://calbearmnm.com/mnm/journal</link>
	<description>Level Up!</description>
	<lastBuildDate>Mon, 19 Jul 2010 15:01:20 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>Matching Developer Certificate to Code Signing Profile</title>
		<link>http://calbearmnm.com/mnm/journal/2010/01/25/matching-developer-certificate-to-code-signing-profile/</link>
		<comments>http://calbearmnm.com/mnm/journal/2010/01/25/matching-developer-certificate-to-code-signing-profile/#comments</comments>
		<pubDate>Tue, 26 Jan 2010 01:30:39 +0000</pubDate>
		<dc:creator>mnm</dc:creator>
				<category><![CDATA[Web Dev and Tech]]></category>
		<category><![CDATA[code signing profile]]></category>
		<category><![CDATA[debug]]></category>
		<category><![CDATA[developer certificate]]></category>
		<category><![CDATA[iphone]]></category>
		<category><![CDATA[plist]]></category>
		<category><![CDATA[troubleshooting]]></category>

		<guid isPermaLink="false">http://calbearmnm.com/mnm/journal/?p=1927</guid>
		<description><![CDATA[From http://www.iphonedevsdk.com/forum/iphone-sdk-development/17999-profile-doesn-t-match-application-identifier.html I was getting a &#8220;Code signing profile doesn&#8217;t match developer certificate&#8221; error.  After much troubleshooting.  I am able to set the Code Signing Profile in Project Info but the selection was greyed out when I was editing Active Target. Finally fixed the bug by updating the plist! Post by joni: There were so [...]]]></description>
			<content:encoded><![CDATA[<p>From http://www.iphonedevsdk.com/forum/iphone-sdk-development/17999-profile-doesn-t-match-application-identifier.html</p>
<blockquote><p>I was getting a &#8220;Code signing profile doesn&#8217;t match developer certificate&#8221; error.  After much troubleshooting.  I am able to set the Code Signing Profile in Project Info but the selection was greyed out when I was editing Active Target.</p>
<p>Finally fixed the bug by updating the plist!</p>
<p>Post by joni:</p>
<p>There were so many steps, I&#8217;m not sure I remember them all, but here are the parts I do remember, in case this helps anybody:</p>
<p>- I had two &#8220;System&#8221; keychains, so I deleted one of them<br />
- I set the &#8220;login&#8221; keychain to be the default, so that new keys would be added there (it should show up bold when it&#8217;s the default)<br />
- deleted the old public and private keys for my developer identity, and the wwdr and iphone developer certificates (in both the login and system keychains)<br />
- quit keychain access and restarted it<br />
- generated completely new keys, certificates, app id, provisioning profile<br />
- made sure everything got added to the login keychain, not the system keychain<br />
- in xcode deleted the old provisioning profiles from the Organizer and the device<br />
- added the new profile to xcode and the device<br />
- updated the info.plist (since I&#8217;d changed the com.yourcompany part of the app id in the new profile)</p>
<p>After verifying it worked with beta 4, I upgraded again to beta 5, did a clean rebuild, and everything still works fine. <img title="Smile" src="http://www.iphonedevsdk.com/forum/images/smilies/smile.gif" border="0" alt="" /></p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://calbearmnm.com/mnm/journal/2010/01/25/matching-developer-certificate-to-code-signing-profile/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Byte Order Mark (BOM) ï»¿</title>
		<link>http://calbearmnm.com/mnm/journal/2010/01/21/bom/</link>
		<comments>http://calbearmnm.com/mnm/journal/2010/01/21/bom/#comments</comments>
		<pubDate>Thu, 21 Jan 2010 22:55:55 +0000</pubDate>
		<dc:creator>mnm</dc:creator>
				<category><![CDATA[Web Dev and Tech]]></category>
		<category><![CDATA[bom]]></category>
		<category><![CDATA[bug]]></category>
		<category><![CDATA[byte order mark]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[i18n]]></category>
		<category><![CDATA[l10n]]></category>
		<category><![CDATA[utf-8]]></category>
		<category><![CDATA[work]]></category>
		<category><![CDATA[zapper]]></category>

		<guid isPermaLink="false">http://calbearmnm.com/mnm/journal/?p=1925</guid>
		<description><![CDATA[From: http://forum.joomla.org/viewtopic.php?f=309&#38;t=275353 &#8220;ï»¿&#8221; is the Byte Order Mark (BOM) of the Unicode Standard. Specifically it is the hex bytes EF BB BF, which form the UTF-8 representation of the BOM, misinterpreted as ISO 8859/1 text instead of UTF-8. Probably what it means is that you are using a text editor that is saving files in [...]]]></description>
			<content:encoded><![CDATA[<p>From: http://forum.joomla.org/viewtopic.php?f=309&amp;t=275353</p>
<blockquote><p>&#8220;ï»¿&#8221; is the Byte Order Mark (BOM) of the Unicode Standard. Specifically it is the hex bytes EF BB BF, which form the UTF-8 representation of the BOM, misinterpreted as ISO 8859/1 text instead of UTF-8.</p>
<p>Probably what it means is that you are using a text editor that is saving files in UTF-8 with the BOM, when it should be saving without the BOM. It could be PHP files that have the BOM, in which case they&#8217;d appear as literal text on your page.</p>
<p>The Unicode Consortium&#8217;s FAQ on the Byte Order Mark is at <a href="http://www.unicode.org/faq/utf_bom.html#BOM">http://www.unicode.org/faq/utf_bom.html#BOM</a> .</p></blockquote>
<p>Horrible first post of the year I know but hey Henry suggested I post my bug zappers online and this is something =P.</p>
]]></content:encoded>
			<wfw:commentRss>http://calbearmnm.com/mnm/journal/2010/01/21/bom/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Web Development &#8211; Dev Tools, Flash Embed</title>
		<link>http://calbearmnm.com/mnm/journal/2009/08/07/web-development-dev-tools-flash-embed/</link>
		<comments>http://calbearmnm.com/mnm/journal/2009/08/07/web-development-dev-tools-flash-embed/#comments</comments>
		<pubDate>Sat, 08 Aug 2009 01:24:51 +0000</pubDate>
		<dc:creator>mnm</dc:creator>
				<category><![CDATA[Web Dev and Tech]]></category>
		<category><![CDATA[development]]></category>
		<category><![CDATA[embed]]></category>
		<category><![CDATA[flash]]></category>
		<category><![CDATA[object]]></category>
		<category><![CDATA[swfobject]]></category>

		<guid isPermaLink="false">http://calbearmnm.com/mnm/journal/?p=1839</guid>
		<description><![CDATA[Essential Developer Tools FireBug IE Developer Toolbar Flash Content Embed http://www.alistapart.com/articles/flashembedcagematch/ “How can you best embed Flash content?” It should be a simple question, but is likely to evoke a lot of different opinions and arguments, as each of the many available embedding techniques have their own pros and cons. In this article, I will [...]]]></description>
			<content:encoded><![CDATA[<p><span style="text-decoration: underline;"><strong>Essential Developer Tools</strong></span></p>
<ul>
<li> <a href="http://getfirebug.com/">FireBug</a></li>
<li> <a href="http://www.microsoft.com/downloadS/details.aspx?familyid=E59C3964-672D-4511-BB3E-2D5E1DB91038">IE Developer Toolbar</a></li>
</ul>
<p><span style="text-decoration: underline;"><strong>Flash Content Embed</strong></span></p>
<p style="padding-left: 30px;"><a href="http://www.alistapart.com/articles/flashembedcagematch/">http://www.alistapart.com/articles/flashembedcagematch/</a></p>
<blockquote><p>“How can you best embed Flash content?”</p>
<p>It should be a simple question, but is likely to evoke a lot of different opinions and arguments, as each of the many available embedding techniques have their own pros and cons. In this article, I will look into the complexities and subtleties of embedding Flash content and examine the most popular embedding methods to see how good they really are.</p>
<p><strong>The key ingredients of a great Flash embedding method:</strong></p>
<ul>
<li>Standards Compliance</li>
<li>Cross-Browser Support</li>
<li>Support for Alternative Content</li>
<li>Avoidance of Flash Content/Player Mismatches</li>
<li>Auto-Activation of Active Content</li>
<li>Ease Of Implementation</li>
</ul>
</blockquote>
<p style="padding-left: 30px;"><a href="http://code.google.com/p/swfobject/">http://code.google.com/p/swfobject/</a></p>
<blockquote><p><strong>What is SWFObject?</strong></p>
<ul>
<li>Offers two optimized Flash Player embed methods; a markup based approach and a method that relies on JavaScript</li>
<li>Offers a <a rel="nofollow" href="http://code.google.com/p/swfobject/wiki/api">JavaScript API</a> that aims to provide a complete tool set for embedding SWF files and retrieving Flash Player related information</li>
<li>Utilizes only one small JavaScript file (10Kb / GZIPed: 3.9Kb)</li>
<li>Is the successor of <a rel="nofollow" href="http://blog.deconcept.com/swfobject/">SWFObject 1.5</a>, <a rel="nofollow" href="http://www.bobbyvandersluis.com/ufo/">UFO</a> and the <a rel="nofollow" href="http://www.adobe.com/products/flashplayer/download/detection_kit/">Adobe Flash Player Detection Kit</a></li>
<li>Intends to unify all existing Flash Player embed methods and provide a new standard for embedding Adobe Flash Player content</li>
</ul>
<p><strong>Why should you use SWFObject?</strong></p>
<ul>
<li>Is more optimized and flexible than any other Flash Player embed method around</li>
<li>Offers one solution for everybody: It shouldn&#8217;t matter if you are an HTML, Flash, or JavaScript developer, there should be something in it for everyone</li>
<li>Breaks the cycle of being locked into vendor specific markup and promotes the use of web standards and alternative content</li>
<li>Uses unobtrusive JavaScript and JavaScript best practices</li>
<li>Is easy to use</li>
</ul>
</blockquote>
]]></content:encoded>
			<wfw:commentRss>http://calbearmnm.com/mnm/journal/2009/08/07/web-development-dev-tools-flash-embed/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Freemarker</title>
		<link>http://calbearmnm.com/mnm/journal/2009/07/28/freemarker/</link>
		<comments>http://calbearmnm.com/mnm/journal/2009/07/28/freemarker/#comments</comments>
		<pubDate>Tue, 28 Jul 2009 16:19:12 +0000</pubDate>
		<dc:creator>mnm</dc:creator>
				<category><![CDATA[Web Dev and Tech]]></category>
		<category><![CDATA[freemarker]]></category>
		<category><![CDATA[ftl]]></category>
		<category><![CDATA[programming]]></category>

		<guid isPermaLink="false">http://calbearmnm.com/mnm/journal/?p=1797</guid>
		<description><![CDATA[Iteration &#60;#list mainItem.item as item&#62; &#60;#local x = x+1&#62; &#60;#local itemTitle = item.title /&#62; &#60;#local itemLink = item.link /&#62; &#60;a href=&#8221;${itemLink}&#8221;&#62;${itemTitle}&#60;/a&#62; &#60;#if x &#60; 4&#62; &#38;#183; &#60;/#if&#62; &#60;/#list&#62; Looping item_has_next = foreach (where item can be replaced by key name) item_index = count (where item can be replaced by key name)]]></description>
			<content:encoded><![CDATA[<p><strong>Iteration</strong></p>
<p>&lt;#list mainItem.item as item&gt;<br />
&lt;#local x = x+1&gt;<br />
&lt;#local itemTitle = item.title /&gt;<br />
&lt;#local itemLink = item.link /&gt;<br />
&lt;a href=&#8221;${itemLink}&#8221;&gt;${itemTitle}&lt;/a&gt;<br />
&lt;#if x &lt; 4&gt; &amp;#183; &lt;/#if&gt;<br />
&lt;/#list&gt;</p>
<p><strong>Looping</strong></p>
<p>item_has_next = foreach (where item can be replaced by key name)</p>
<p>item_index = count (where item can be replaced by key name)</p>
]]></content:encoded>
			<wfw:commentRss>http://calbearmnm.com/mnm/journal/2009/07/28/freemarker/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Flash Basics Review c/o AdobeTV – AS3</title>
		<link>http://calbearmnm.com/mnm/journal/2009/07/14/flash-basics-review-co-adobetv-%e2%80%93-as3/</link>
		<comments>http://calbearmnm.com/mnm/journal/2009/07/14/flash-basics-review-co-adobetv-%e2%80%93-as3/#comments</comments>
		<pubDate>Tue, 14 Jul 2009 17:58:00 +0000</pubDate>
		<dc:creator>mnm</dc:creator>
				<category><![CDATA[Web Dev and Tech]]></category>
		<category><![CDATA[action script]]></category>
		<category><![CDATA[adobe]]></category>
		<category><![CDATA[adobetv]]></category>
		<category><![CDATA[as3]]></category>
		<category><![CDATA[flash]]></category>
		<category><![CDATA[motion]]></category>
		<category><![CDATA[tutorial]]></category>
		<category><![CDATA[video]]></category>

		<guid isPermaLink="false">http://calbearmnm.com/mnm/journal/?p=1773</guid>
		<description><![CDATA[Building an application: http://tv.adobe.com/#vi+f1590v1809 Simple mouseclick linking to frame code: boards.addEventListener(MouseEvent.CLICK, gotoBoards); function gotoBoards(event:MouseEvent): void { Sound.Mixer.stopAll(); gotoAndPlay(1); //1 = frame number } Colin Moock&#8217;s Lost Action Script Weekend &#8211; Course 1 Introduction: http://tv.adobe.com/#vi+f16245v1000]]></description>
			<content:encoded><![CDATA[<p>Building an application: <a href="http://tv.adobe.com/#vi+f1590v1809">http://tv.adobe.com/#vi+f1590v1809</a></p>
<p style="padding-left: 30px;">Simple mouseclick linking to frame code:</p>
<blockquote>
<div style="padding-left: 30px;">boards.addEventListener(MouseEvent.CLICK, gotoBoards);</div>
<div style="padding-left: 30px;">function gotoBoards(event:MouseEvent): void</div>
<div style="padding-left: 30px;">{</div>
<div style="padding-left: 60px;">Sound.Mixer.stopAll();</div>
<div style="padding-left: 60px;">gotoAndPlay(1); //1 = frame number</div>
<div style="padding-left: 30px;">}</div>
</blockquote>
<div>Colin Moock&#8217;s Lost Action Script Weekend &#8211; Course 1 Introduction:</div>
<div><a href="http://tv.adobe.com/#vi+f16245v1000">http://tv.adobe.com/#vi+f16245v1000</a></div>
]]></content:encoded>
			<wfw:commentRss>http://calbearmnm.com/mnm/journal/2009/07/14/flash-basics-review-co-adobetv-%e2%80%93-as3/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>jQuery Tutorials and Web Dev/Tech Books</title>
		<link>http://calbearmnm.com/mnm/journal/2009/07/13/tutorials-and-tech-books/</link>
		<comments>http://calbearmnm.com/mnm/journal/2009/07/13/tutorials-and-tech-books/#comments</comments>
		<pubDate>Mon, 13 Jul 2009 18:49:35 +0000</pubDate>
		<dc:creator>mnm</dc:creator>
				<category><![CDATA[Web Dev and Tech]]></category>
		<category><![CDATA[ebooks]]></category>
		<category><![CDATA[framework]]></category>
		<category><![CDATA[jquery]]></category>
		<category><![CDATA[library]]></category>
		<category><![CDATA[tutorials]]></category>

		<guid isPermaLink="false">http://calbearmnm.com/mnm/journal/?p=1764</guid>
		<description><![CDATA[After talking to one of the MTVNI developers, I&#8217;ve decided to focus on jQuery learning next.  I need to really advance my JS skills to a much higher level to be updated and be competitive. Resources: http://docs.jquery.com/Tutorials = my next project, jquery http://w3schools.com/ = my endless resource http://www.freetechbooks.com/ http://www.techtoolblog.com/archives/195-free-online-programming-books http://jqueryvsmootools.com/ &#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211; So I ask a [...]]]></description>
			<content:encoded><![CDATA[<p>After talking to one of the MTVNI developers, I&#8217;ve decided to focus on jQuery learning next.  I need to really advance my JS skills to a much higher level to be updated and be competitive.</p>
<p>Resources:</p>
<ul>
<li><a href="http://docs.jquery.com/Tutorials">http://docs.jquery.com/Tutorials</a> = my next project, jquery</li>
<li><a href="http://w3schools.com/">http://w3schools.com/</a> = my endless resource</li>
<li><a href="http://www.freetechbooks.com/">http://www.freetechbooks.com/</a></li>
<li><a href="http://www.techtoolblog.com/archives/195-free-online-programming-books">http://www.techtoolblog.com/archives/195-free-online-programming-books</a></li>
<li><a href="http://jqueryvsmootools.com/">http://jqueryvsmootools.com/</a></li>
</ul>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;</p>
<p>So I ask a ton of developers out there&#8230; what do you do to learn, enrich your knowledge, further your skills?  What books do you read? What feeds? What websites? What technologies do you focus on?  What I am realizing (which should have been obvious to me from the start) is that each developer is unique.</p>
<p>Each developer is like a Katamari ball, rolling around the technological virtual world within the capabilities of computers, collecting/sponging up all the information/skills/experience they can depending on the direction they are interested in taking and what data is available to be collected/sponged up.  There is no clear path.  There are endless possibilities.  It just depends on what the individual developer feels like doing.  The only way to win is to make the biggest ball you can make and just keep going.  Don&#8217;t stop.  Never stop learning.</p>
<p>huó dào lăo, xué dào lăo; xué dào lăo, xué bù liăo.</p>
<p>活到老，学到老；学到老，学不了。</p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;</p>
<p>So I&#8217;m ADD and can&#8217;t focus on studying one thing at a time.  I figured maybe I should keep myself accountable by posting the stuff I learn.</p>
<p>So (yeah I start my sentences with &#8220;so&#8221; a lot, dont know why) I went through one of the tutorials today for jQuery.</p>
<p><a href="http://docs.jquery.com/Tutorials:How_jQuery_Works">How jQuery Works</a></p>
<ul>
<li>Google&#8217;s CDN to load the jQuery core file:
<ul>
<li>http://ajax.googleapis.com/ajax/libs/jquery/1.3/jquery.min.js</li>
</ul>
</li>
<li>jQuery&#8217;s ready event replaces window.onload:
<ul>
<li>$(document).ready(function(){ function_to_run(); });</li>
</ul>
</li>
<li>Adding and removing a CSS class (to a sample &#8220;a&#8221; element):
<ul>
<li>$(&#8220;a&#8221;).addClass(&#8220;class_name&#8221;);</li>
<li>$(&#8220;a&#8221;).removeClass(&#8220;class_name&#8221;);</li>
</ul>
</li>
<li><a href="http://docs.jquery.com/Effects">Special Effects</a>
<ul>
<li>$(this).hide(&#8220;slow&#8221;);</li>
</ul>
</li>
<li>Callback functions &#8211; passed as arg to another func and executed after parent func has completed.
<ul>
<li>$.get(&#8216;myhtmlpage.html&#8217;, myCallBack);</li>
<li>$.get(&#8216;myhtmlpage.html&#8217;, function(){<br />
myCallBack(param1, param2);<br />
});</li>
</ul>
</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://calbearmnm.com/mnm/journal/2009/07/13/tutorials-and-tech-books/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Flash Basics Review c/o AdobeTV &#8211; Tweens</title>
		<link>http://calbearmnm.com/mnm/journal/2009/07/08/flash-basics-review-co-adobetv-tweens/</link>
		<comments>http://calbearmnm.com/mnm/journal/2009/07/08/flash-basics-review-co-adobetv-tweens/#comments</comments>
		<pubDate>Wed, 08 Jul 2009 18:41:15 +0000</pubDate>
		<dc:creator>mnm</dc:creator>
				<category><![CDATA[Web Dev and Tech]]></category>
		<category><![CDATA[adobe]]></category>
		<category><![CDATA[adobetv]]></category>
		<category><![CDATA[flash]]></category>
		<category><![CDATA[motion]]></category>
		<category><![CDATA[tutorial]]></category>
		<category><![CDATA[tween]]></category>
		<category><![CDATA[video]]></category>

		<guid isPermaLink="false">http://calbearmnm.com/mnm/journal/?p=1736</guid>
		<description><![CDATA[Shape Tween: http://tv.adobe.com/#vi+f1590v1816 Start with shape or drawing object. Select frame to be end of tween. F6 to create new keyframe that is copy of last keyframe. TWEEN: Right click on frames in between and select &#8220;Create Shape Tween&#8221;. MODIFY: Go to starting key frame and change shape of object. Motion Tweens: http://tv.adobe.com/#vi+f1590v1815 Have symbol [...]]]></description>
			<content:encoded><![CDATA[<p>Shape Tween: <a href="http://tv.adobe.com/#vi+f1590v1816">http://tv.adobe.com/#vi+f1590v1816</a></p>
<ul>
<li> Start with shape or drawing object.</li>
<li> Select frame to be end of tween.</li>
<li> F6 to create new keyframe that is copy of last keyframe.</li>
<li> TWEEN: Right click on frames in between and select &#8220;Create Shape Tween&#8221;.</li>
<li> MODIFY: Go to starting key frame and change shape of object.</li>
</ul>
<p>Motion Tweens: <a href="http://tv.adobe.com/#vi+f1590v1815">http://tv.adobe.com/#vi+f1590v1815</a></p>
<ul>
<li> Have symbol to add motion tween to. Best if movie clip.</li>
<li> Have empty frames between beginning and end within timeline.</li>
<li> Right click on frame between beginning and end.</li>
<li> TWEEN: Select Create Motion Tween.</li>
<li> MODIFY: At frame where you want motion to occur.  Click and drag/move/modify symbol.</li>
</ul>
<p>Using Motion Editor: <a href="http://tv.adobe.com/#vi+f1590v1812">http://tv.adobe.com/#vi+f1590v1812</a></p>
<ul>
<li> Start with motion tween.</li>
<li> Select tween in timeline.</li>
<li> Window -> Motion Editor.</li>
<li> Scrub values.</li>
</ul>
<p>Working with Motion Presets: <a href="http://tv.adobe.com/#vi+f1590v1813">http://tv.adobe.com/#vi+f1590v1813</a></p>
<ul>
<li> Select tween.</li>
<li> Right click -> Save as Motion Preset</li>
<li> Window -> Motion Presets</li>
<li> Apply to other movie clip symbol</li>
<li> Shift click motion preset to have current keyframe be end position of motion</li>
</ul>
<p>Animating Bones: <a href="http://tv.adobe.com/#vi+f1590v1811">http://tv.adobe.com/#vi+f1590v1811</a></p>
<ul>
<li> Start with movie clips.</li>
<li> Use bone tool in toolbar clicking from hinge of one movie clip hinge to another movie clip hinge.</li>
<li> Test how bone system hinges by clicking and dragging elements.</li>
<li> Bone system elements go into the Armature layer.  Can delete emptied out frames.</li>
<li> F5 to add frames and extend timeline for both Armature and background.</li>
<li> Move to any frame and move bone system by clicking and dragging while on Armature layer.</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://calbearmnm.com/mnm/journal/2009/07/08/flash-basics-review-co-adobetv-tweens/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
