<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/">
<channel>
<title>Snipplr - andrewrench</title>
<link>http://snipplr.com/users/andrewrench</link>
<description>Recent snippets posted on Snipplr.com</description>
<language>en-us</language>
<pubDate>Sun, 19 May 2013 19:55:02 GMT</pubDate>
<item>
<title>(ActionScript) BitmapData and movieclip registration</title>
<link>http://snipplr.com/view/14041/bitmapdata-and-movieclip-registration/</link>
<description><![CDATA[ <p></p> ]]></description>
<pubDate>Tue, 14 Apr 2009 16:40:05 GMT</pubDate>
<guid>http://snipplr.com/view/14041/bitmapdata-and-movieclip-registration/</guid>
</item>
<item>
<title>(ActionScript) Easing any attribute of any MC</title>
<link>http://snipplr.com/view/3529/easing-any-attribute-of-any-mc/</link>
<description><![CDATA[ <p>usage:

this.createEmptyMovieClip("a", this.getNextHighestDepth());
a.moveTo(20, 20);
a.beginFill(0xFF0000, 100);
a.lineTo(0, 30);
a.lineTo(30, 30);
a.lineTo(30, 0);
a.lineTo(0, 0);
a.endFill();

a.ease("_height", 200);
a.ease("_width, 400, .8, false);
a.ease("_x", 200, .1);</p> ]]></description>
<pubDate>Thu, 16 Aug 2007 10:04:15 GMT</pubDate>
<guid>http://snipplr.com/view/3529/easing-any-attribute-of-any-mc/</guid>
</item>
<item>
<title>(ActionScript) movieClip.DragWithEasign &amp;amp;&amp;amp; bringToFront</title>
<link>http://snipplr.com/view/3528/movieclipdragwitheasign--bringtofront/</link>
<description><![CDATA[ <p>// method
// just use true or false to control the handCursor usage; the defalut is true.
mc1.dragEasing(false);
mc2.dragEasing();</p> ]]></description>
<pubDate>Thu, 16 Aug 2007 09:55:49 GMT</pubDate>
<guid>http://snipplr.com/view/3528/movieclipdragwitheasign--bringtofront/</guid>
</item>
<item>
<title>(ActionScript) Automatic Frame Navigation</title>
<link>http://snipplr.com/view/3527/automatic-frame-navigation/</link>
<description><![CDATA[ <p>Requires Flash MX.

[b][u]autoframeNavigate[/u][/b] : This is to control any child movieClip or to control _root from inside child 
                    movieClips to go to a particular frame forward or backwards after a certain 
                    delay and then decides wether to play or stop from there.
                
[u][b]Arguments[/b][/u]

[b]delay         :[/b] amount of delay in seconds, the function waits for a period of time then 
                jumps to the desired frame.

[b]bContinue     :[/b] this is a string that can be either "stop" or "play" to decied whether you 
                want to tell the movieClip or _root to stop at the desired frame or continue playing.

[b]numberOfFrames:[/b] number of frames to be skipped, this number can be positive to move forward
                or negative to move backwards.

[u][b]Usage[/b][/u]

//Use the following 2 statements to control the main timeline or any movieClip:-
stop();
// wait for 3 seconds, then go to nextframe and continue playing.
autoframeNavigate(3000, "play", 1)

--------------------------------------------------------------------------------------------------

//use the following 2 statements To control the main timeline from inside a child movieClip:-
stop();
// wait for 3 seconds, tell _root to go backward 2 frames and stop there.
_root.autoframeNavigate(3000, "stop", -2)</p> ]]></description>
<pubDate>Thu, 16 Aug 2007 08:29:08 GMT</pubDate>
<guid>http://snipplr.com/view/3527/automatic-frame-navigation/</guid>
</item>
</channel>
</rss>