<?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>NewSourceMedia Blog &#187; help</title>
	<atom:link href="http://newsourcemedia.com/blog/tag/help/feed/" rel="self" type="application/rss+xml" />
	<link>http://newsourcemedia.com/blog</link>
	<description>Focused on Interactive Design, Development and Marketing</description>
	<lastBuildDate>Mon, 07 May 2012 01:26: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>Actionscript 2 to 3 migration Help</title>
		<link>http://newsourcemedia.com/blog/actionscript-2-to-3-migration-help/</link>
		<comments>http://newsourcemedia.com/blog/actionscript-2-to-3-migration-help/#comments</comments>
		<pubDate>Wed, 19 Aug 2009 14:55:08 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Flash]]></category>
		<category><![CDATA[change]]></category>
		<category><![CDATA[help]]></category>
		<category><![CDATA[migration]]></category>
		<category><![CDATA[update.]]></category>

		<guid isPermaLink="false">http://am3media.com/site/?p=317</guid>
		<description><![CDATA[Need help migrating over to the AS3 language. First thing you probably want to download is the "AS3 Migration Cookbook from Adobe. You can use it as a high-level intro to AS3 and a quick reference for executing frequent code &#8230; <a href="http://newsourcemedia.com/blog/actionscript-2-to-3-migration-help/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[Need help migrating over to the AS3 language. First thing you probably want to download is the "AS3 Migration Cookbook from Adobe. You can use it as a high-level intro to AS3 and a quick reference for executing frequent code task. The guide covers four topics:<span id="more-317"></span>
<ul>
	<li> <strong>Introduction</strong>: Provides a high-level introduction to ActionScript 3</li>
	<li> <strong>Top misperceptions</strong>: Dispels some of the top misperceptions around ActionScript 3</li>
	<li> <strong>Top benefits</strong>: Lists some of the top benefits of ActionScript 3</li>
	<li> <strong>Migration cookbook</strong>: Shows how to do common tasks in ActionScript 3 (see Figure 1)</li>
</ul>
<h4>Download the guide:<a class="icon pdf-file" href="http://www.adobe.com/devnet/actionscript/articles/as3_migration_cookbook/as3_migration_cookbook.pdf" target="_blank">
ActionScript 3 migration cookbook</a> <span class="stamp-fileinfo">(PDF, 600K)</span></h4>
A second place for a more detailed breakdown of what's changed is located on Adobe flash docs.

ActionScript® 3 Migration Reference
<a href="http://help.adobe.com/en_US/AS3LCR/Flash_10.0/index.html?migration.html&amp;all-classes.html" target="_blank">adobe.com/go/as2toas3</a>]]></content:encoded>
			<wfw:commentRss>http://newsourcemedia.com/blog/actionscript-2-to-3-migration-help/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Tweening color using AS3 Tweener Class</title>
		<link>http://newsourcemedia.com/blog/tweening-color-using-as3-tweener-class/</link>
		<comments>http://newsourcemedia.com/blog/tweening-color-using-as3-tweener-class/#comments</comments>
		<pubDate>Mon, 02 Feb 2009 16:28:41 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Flash]]></category>
		<category><![CDATA[class]]></category>
		<category><![CDATA[color]]></category>
		<category><![CDATA[color shortcuts]]></category>
		<category><![CDATA[help]]></category>
		<category><![CDATA[initiate]]></category>
		<category><![CDATA[tween color]]></category>
		<category><![CDATA[tweener]]></category>
		<category><![CDATA[tweening]]></category>

		<guid isPermaLink="false">http://am3media.com/site/?p=142</guid>
		<description><![CDATA[// import as3 tweener import caurina.transitions.*; // to get the color tweener to work, import ColorShortcuts properties import caurina.transitions.properties.ColorShortcuts; // initiate the ColorShortcuts ColorShortcuts.init(); // define a spite var mySprite:Sprite = new Sprite(); mySprite.x = 50; mySprite.y = 50; mySprite.graphics.lineStyle(); &#8230; <a href="http://newsourcemedia.com/blog/tweening-color-using-as3-tweener-class/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<pre lang="actionscript">// import as3 tweener
import caurina.transitions.*;

// to get the color tweener to work, import ColorShortcuts properties
import caurina.transitions.properties.ColorShortcuts;
// initiate the ColorShortcuts
ColorShortcuts.init();

// define a spite
var mySprite:Sprite = new Sprite();
mySprite.x = 50;
mySprite.y = 50;
mySprite.graphics.lineStyle();
mySprite.graphics.beginFill(0xff0000);
mySprite.graphics.drawRect(0,0,200,100);
addChild(mySprite);

// add the mouse actions
mySprite.buttonMode = true;
mySprite.addEventListener(MouseEvent.MOUSE_OVER, makeBlue);
mySprite.addEventListener(MouseEvent.MOUSE_OUT, makeRed);

// define the interactive effects
function makeBlue(e:MouseEvent):void{
Tweener.addTween(mySprite, {_color:0x0000ff, time:1, transition:"easeOutQuart"});
}
function makeRed(e:MouseEvent):void{
Tweener.addTween(mySprite, {_color:null, time:1, transition:"easeOutQuart"});
}
</pre>]]></content:encoded>
			<wfw:commentRss>http://newsourcemedia.com/blog/tweening-color-using-as3-tweener-class/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Dreamweaver fails to include dependent files</title>
		<link>http://newsourcemedia.com/blog/dw-fails-to-including-dependent-files/</link>
		<comments>http://newsourcemedia.com/blog/dw-fails-to-including-dependent-files/#comments</comments>
		<pubDate>Sat, 26 Mar 2005 00:22:11 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Tips and Tricks]]></category>
		<category><![CDATA[dependent]]></category>
		<category><![CDATA[Dreamweaver]]></category>
		<category><![CDATA[help]]></category>
		<category><![CDATA[include]]></category>
		<category><![CDATA[including file]]></category>
		<category><![CDATA[tips]]></category>
		<category><![CDATA[tricks]]></category>

		<guid isPermaLink="false">http://newsourcemedia.com/blog/2005/03/25/dw-fails-to-including-dependent-files/</guid>
		<description><![CDATA[Dreamweaver fails to prompt for included dependent files when putting. Here is the Solution! Issue: The dialog box to automatically upload dependent files does not come up when putting files. Reason: The Don't Ask Me Again check box was checked &#8230; <a href="http://newsourcemedia.com/blog/dw-fails-to-including-dependent-files/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[Dreamweaver fails to prompt for included dependent files when putting. Here is the Solution!
<span id="more-183"></span>

<strong>Issue:</strong>
The dialog box to automatically upload dependent files does not come up when putting files.

<strong>Reason:</strong>
The Don't Ask Me Again check box was checked when files were put on some prior occasion.

<strong>Solution:</strong>
If you want to be prompted to upload dependent files, follow the directions below:
Solution one - Dreamweaver 4 - Macintosh and Windows, Dreamweaver 3 - Mac
1 Choose Edit &gt; Preferences.
2 Select the Site category.
3 Under Dependent Files, check Prompt on Put/Check In.

Another option is to hold down the 'Shift' key (Windows) or the 'option' key (Macintosh) while putting the files. This will bring up the 'Include Dependent Files' dialog box.

<strong>Solution two</strong> - Dreamweaver 3 - Windows
1 Hold down the 'Alt' key while putting the files.]]></content:encoded>
			<wfw:commentRss>http://newsourcemedia.com/blog/dw-fails-to-including-dependent-files/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
<!-- WP Super Cache is installed but broken. The path to wp-cache-phase1.php in wp-content/advanced-cache.php must be fixed! -->
