<?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>Flex-Flash-Air-ActionScript-JS &#187; MouseEvent</title>
	<atom:link href="http://blog.totusinfo.com/tag/mouseevent/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.totusinfo.com</link>
	<description>totusinfo team</description>
	<lastBuildDate>Wed, 24 Feb 2010 09:38:00 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>CS4 spring Motion using action script</title>
		<link>http://blog.totusinfo.com/cs4-spring-motion-using-action-script/</link>
		<comments>http://blog.totusinfo.com/cs4-spring-motion-using-action-script/#comments</comments>
		<pubDate>Fri, 12 Feb 2010 18:41:44 +0000</pubDate>
		<dc:creator>Vineela</dc:creator>
				<category><![CDATA[Flash]]></category>
		<category><![CDATA[as3]]></category>
		<category><![CDATA[utils]]></category>
		<category><![CDATA[Math]]></category>
		<category><![CDATA[MouseEvent]]></category>
		<category><![CDATA[Number]]></category>
		<category><![CDATA[random]]></category>

		<guid isPermaLink="false">http://blog.totusinfo.com/?p=885</guid>
		<description><![CDATA[

var springX:Number=0;
var springY:Number=0;
var spring:Number=.95;
var radius:Number=300;

ball.addEventListener(Event.ENTER_FRAME, Event_ENTER_FRAME);
ball.x=ball.y=Math.random()*300;
stage.addEventListener(MouseEvent.MOUSE_DOWN, onClick);

function onClick(event:Event):void {
	ball.x=mouseX;
	ball.y=mouseY;
}

function Event_ENTER_FRAME(event:Event):void {
	var ax:Number=0;
	var ay:Number=0;
	ball.x+= (springX += ((radius - (2 * ball.x)) * .1));
	ball.y+= (springY += ((radius - (2 * ball.y)) * .1))
	springX*=spring;
	springY*=spring;
}











]]></description>
		<wfw:commentRss>http://blog.totusinfo.com/cs4-spring-motion-using-action-script/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Flex doubleClickEvent</title>
		<link>http://blog.totusinfo.com/flex-doubleclickevent/</link>
		<comments>http://blog.totusinfo.com/flex-doubleclickevent/#comments</comments>
		<pubDate>Thu, 17 Dec 2009 16:40:16 +0000</pubDate>
		<dc:creator>Vineela</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Alert]]></category>
		<category><![CDATA[MouseEvent]]></category>
		<category><![CDATA[show]]></category>

		<guid isPermaLink="false">http://blog.totusinfo.com/?p=768</guid>
		<description><![CDATA[
&#60;?xml version=&#34;1.0&#34; encoding=&#34;utf-8&#34;?&#62;
&#60;mx:Application name=&#34;Image_doubleClick_test&#34;
        xmlns:mx=&#34;http://www.adobe.com/2006/mxml&#34;
        layout=&#34;vertical&#34;
        verticalAlign=&#34;middle&#34;
        backgroundColor=&#34;white&#34;&#62;

    &#60;mx:Script&#62;
        &#60;![CDATA[
        [...]]]></description>
		<wfw:commentRss>http://blog.totusinfo.com/flex-doubleclickevent/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Image rotating in Y direction with tweener using flash actionscript</title>
		<link>http://blog.totusinfo.com/image-rotating-in-y-direction-with-tweener-using-flash-actionscript/</link>
		<comments>http://blog.totusinfo.com/image-rotating-in-y-direction-with-tweener-using-flash-actionscript/#comments</comments>
		<pubDate>Fri, 06 Nov 2009 11:01:57 +0000</pubDate>
		<dc:creator>Vineela</dc:creator>
				<category><![CDATA[Flash]]></category>
		<category><![CDATA[as3]]></category>
		<category><![CDATA[utils]]></category>
		<category><![CDATA[addEventListener]]></category>
		<category><![CDATA[addTween]]></category>
		<category><![CDATA[MouseEvent]]></category>
		<category><![CDATA[rotationX]]></category>
		<category><![CDATA[rotationY]]></category>

		<guid isPermaLink="false">http://blog.totusinfo.com/?p=793</guid>
		<description><![CDATA[To see the effect please click on the below image


import caurina.transitions.Tweener;

var values:int=0;

heart.addEventListener(MouseEvent.MOUSE_DOWN,rotate);

function rotate(evt:MouseEvent):void
{
	values = values - 1;
	Tweener.addTween(heart,{rotationX:values*0,rotationY:values*180,time:1,transition:&#34;easeInCubic&#34;});
}











]]></description>
		<wfw:commentRss>http://blog.totusinfo.com/image-rotating-in-y-direction-with-tweener-using-flash-actionscript/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Image rotating in X direction with tweener using flash actionscript</title>
		<link>http://blog.totusinfo.com/image-rotating-in-x-direction-with-tweener-using-flash-actionscript/</link>
		<comments>http://blog.totusinfo.com/image-rotating-in-x-direction-with-tweener-using-flash-actionscript/#comments</comments>
		<pubDate>Thu, 05 Nov 2009 10:58:03 +0000</pubDate>
		<dc:creator>Vineela</dc:creator>
				<category><![CDATA[Flash]]></category>
		<category><![CDATA[as3]]></category>
		<category><![CDATA[utils]]></category>
		<category><![CDATA[addEventListener]]></category>
		<category><![CDATA[addTween]]></category>
		<category><![CDATA[MouseEvent]]></category>
		<category><![CDATA[rotationX]]></category>
		<category><![CDATA[rotationY]]></category>

		<guid isPermaLink="false">http://blog.totusinfo.com/?p=790</guid>
		<description><![CDATA[To see the effect please click on the below image


import caurina.transitions.Tweener;

var values:int=0;

heart.addEventListener(MouseEvent.MOUSE_DOWN,rotate);

function rotate(evt:MouseEvent):void
{
	values = values - 1;
	Tweener.addTween(heart,{rotationX:values*180,rotationY:values*0,time:1,transition:&#34;easeInCubic&#34;});
}











]]></description>
		<wfw:commentRss>http://blog.totusinfo.com/image-rotating-in-x-direction-with-tweener-using-flash-actionscript/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Open URL in another window using flash actionscript</title>
		<link>http://blog.totusinfo.com/open-url-in-another-window-using-flash-actionscript/</link>
		<comments>http://blog.totusinfo.com/open-url-in-another-window-using-flash-actionscript/#comments</comments>
		<pubDate>Fri, 28 Nov 2008 14:59:24 +0000</pubDate>
		<dc:creator>Vineela</dc:creator>
				<category><![CDATA[Flash]]></category>
		<category><![CDATA[as3]]></category>
		<category><![CDATA[utils]]></category>
		<category><![CDATA[addEventListener]]></category>
		<category><![CDATA[MouseEvent]]></category>
		<category><![CDATA[navigateToURL]]></category>
		<category><![CDATA[URLRequest]]></category>

		<guid isPermaLink="false">http://blog.totusinfo.com/?p=645</guid>
		<description><![CDATA[

import flash.display.*;

buttonLabel.addEventListener(MouseEvent.CLICK, button_click);

function button_click(evt:MouseEvent):void {
    var reqURL:URLRequest = new URLRequest(&#34;http://www.totusinfo.com/&#34;);
	navigateToURL(reqURL, &#34;_self&#34;);
}

]]></description>
		<wfw:commentRss>http://blog.totusinfo.com/open-url-in-another-window-using-flash-actionscript/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

