<?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>Cours Internet &#187; Scripts (AS3)</title>
	<atom:link href="http://cours-internet.com/category/flash/sources-scripts/script3/feed/" rel="self" type="application/rss+xml" />
	<link>http://cours-internet.com</link>
	<description>Supports de cours pour la création de sites Internet avec flash, Dreamweaver et wordpress</description>
	<lastBuildDate>Tue, 17 Jan 2012 11:02:09 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>Bases AS3</title>
		<link>http://cours-internet.com/bases-as3/</link>
		<comments>http://cours-internet.com/bases-as3/#comments</comments>
		<pubDate>Tue, 04 May 2010 11:56:15 +0000</pubDate>
		<dc:creator>bchabrol</dc:creator>
				<category><![CDATA[Scripts (AS3)]]></category>

		<guid isPermaLink="false">http://cours-internet.com/?p=1057</guid>
		<description><![CDATA[EXERCICES LES PROPRIETES EXERCICE 1 &#62;&#62; Que veut dire alpha? &#62;&#62; Que veut dire scaleY? &#62;&#62; Quelle valeur peut prendre alpha? EXERCICE 2 &#62;&#62; J&#8217;ai sur ma sc&#232;ne principale : un clip avec pour nom d&#8217;occurrence &#8220;monRectangle&#8221; remplacez les pointill&#233;s pour avoir &#8220;monRectangle&#8221; positionn&#233; sur un abscisse (x) de 50 et une ordonn&#233;e (y) de [...]]]></description>
		<wfw:commentRss>http://cours-internet.com/bases-as3/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Petits Scripts</title>
		<link>http://cours-internet.com/petits-scripts/</link>
		<comments>http://cours-internet.com/petits-scripts/#comments</comments>
		<pubDate>Mon, 25 Jan 2010 09:54:46 +0000</pubDate>
		<dc:creator>bchabrol</dc:creator>
				<category><![CDATA[Scripts (AS3)]]></category>

		<guid isPermaLink="false">http://cours-internet.com/?p=862</guid>
		<description><![CDATA[Duplication et positionnement d&#8217;un clip pris dans la biblioth&#232;que &#160;var myBtn : Array = []; for (var ii : int = 0; ii &#60; 10; ii++) { &#160;&#160;&#160; myBtn.push( addChild( new Btn( ) ) ); &#160;&#160;&#160; myBtn[ ii].x=30*ii+30; &#160;&#160;&#160; myBtn[ ii].y = stage.stageHeight &#8211; 30; &#160;&#160;&#160; myBtn[ ii].txt.text=ii } Explication du script : [hidepost] &#160; [...]]]></description>
		<wfw:commentRss>http://cours-internet.com/petits-scripts/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Menu as3</title>
		<link>http://cours-internet.com/menu-as3/</link>
		<comments>http://cours-internet.com/menu-as3/#comments</comments>
		<pubDate>Sat, 03 Oct 2009 22:08:41 +0000</pubDate>
		<dc:creator>bchabrol</dc:creator>
				<category><![CDATA[Scripts (AS3)]]></category>

		<guid isPermaLink="false">http://cours-internet.com/?p=1403</guid>
		<description><![CDATA[import flash.display.MovieClip; var statut:String; myMenu.buttonMode = true; myMenu.addEventListener( MouseEvent.MOUSE_OVER, overThumb ); myMenu.addEventListener( MouseEvent.MOUSE_OUT,outThumb ); myMenu.addEventListener( MouseEvent.CLICK, clickThumb ); function overThumb(evt:Event) { evt.target.gotoAndStop(&#171;&#160;Dessus&#160;&#187;); } function outThumb(evt:Event) { gotoStatut(evt.target); //evt.target.gotoAndStop(&#171;&#160;Haut&#160;&#187;); } function gotoStatut(clip) { for (var ii:int =0; ii&#60;myMenu.numChildren; ii++) { var maMainTimeline:MovieClip = myMenu.getChildAt(ii) as MovieClip; maMainTimeline.gotoAndStop(&#171;&#160;Haut&#160;&#187;); } if (clip.statut == &#171;&#160;Selected&#160;&#187;) { clip.gotoAndStop(&#171;&#160;Abaissé&#160;&#187;); } else [...]]]></description>
		<wfw:commentRss>http://cours-internet.com/menu-as3/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>grille as3</title>
		<link>http://cours-internet.com/grille-as3/</link>
		<comments>http://cours-internet.com/grille-as3/#comments</comments>
		<pubDate>Sat, 03 Oct 2009 19:14:56 +0000</pubDate>
		<dc:creator>bchabrol</dc:creator>
				<category><![CDATA[Scripts (AS3)]]></category>

		<guid isPermaLink="false">http://cours-internet.com/?p=1399</guid>
		<description><![CDATA[var s:Sprite = Sprite(addChild(new Sprite())); var myWidth=90 var myHeight=90 for (var ii=0; ii&#60;11; ii++) { s.graphics.lineStyle(0,0&#215;000000); s.graphics.moveTo(ii*myWidth,0); s.graphics.lineTo(ii*myWidth, stage.stageHeight); } for (var jj=0; jj&#60;6; jj++) { s.graphics.lineStyle(0,0&#215;000000); s.graphics.moveTo(0,jj*myHeight); s.graphics.lineTo( stage.stageWidth,jj*myHeight); } &#160;]]></description>
		<wfw:commentRss>http://cours-internet.com/grille-as3/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>champs de texte et saisie pour un formulaire</title>
		<link>http://cours-internet.com/champs-de-texte-qui-seffacent-a-la-saisie/</link>
		<comments>http://cours-internet.com/champs-de-texte-qui-seffacent-a-la-saisie/#comments</comments>
		<pubDate>Sat, 12 Sep 2009 14:50:05 +0000</pubDate>
		<dc:creator>bchabrol</dc:creator>
				<category><![CDATA[Scripts (AS3)]]></category>

		<guid isPermaLink="false">http://cours-internet.com/champs-de-texte-qui-seffacent-a-la-saisie/</guid>
		<description><![CDATA[Champs de texte dont le contenu initial s’efface pour permettre de taper son texte à l&#8217;intérieur. Fonctionne avec le composant TextInput import flash.display.MovieClip; import fl.controls.TextInput; import flash.display.Shape; var ii:Number; var allrectangle:MovieClip= new MovieClip(); addChild(allrectangle); var tabTextInput:Array; tabTextInput=new Array(); settings(); stage.addEventListener(MouseEvent.MOUSE_DOWN, textsInit0); btnEnvoyer.addEventListener(MouseEvent.MOUSE_DOWN, validate); function settings() { stage.focus = titleField; for (ii=0; ii&#60;numChildren; ii++) { if [...]]]></description>
		<wfw:commentRss>http://cours-internet.com/champs-de-texte-qui-seffacent-a-la-saisie/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Tween et yoyo (AS3)</title>
		<link>http://cours-internet.com/142/</link>
		<comments>http://cours-internet.com/142/#comments</comments>
		<pubDate>Fri, 31 Jul 2009 09:46:34 +0000</pubDate>
		<dc:creator>bchabrol</dc:creator>
				<category><![CDATA[Scripts (AS3)]]></category>
		<category><![CDATA[actionscript 3]]></category>
		<category><![CDATA[as3]]></category>
		<category><![CDATA[MOTION_FINISH]]></category>
		<category><![CDATA[mouvement]]></category>
		<category><![CDATA[source flash]]></category>
		<category><![CDATA[tween]]></category>
		<category><![CDATA[TweenEvent]]></category>
		<category><![CDATA[yoyo]]></category>

		<guid isPermaLink="false">http://chabrol.net/blog/142/</guid>
		<description><![CDATA[Le script: import fl.transitions.easing.*; import fl.transitions.*; var myMotion : Tween; stage.addEventListener(MouseEvent.MOUSE_DOWN,startTween); function startTween(evt:MouseEvent) { &#160;&#160;&#160; myMotion = new Tween(mc,&#34;x&#34;,Regular.easeOut,20,430,2,true); &#160;&#160;&#160; myMotion.addEventListener(TweenEvent.MOTION_FINISH, getBigger); } function getBigger(evt:TweenEvent) { &#160;&#160;&#160; myMotion.yoyo(); }]]></description>
		<wfw:commentRss>http://cours-internet.com/142/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>MouseMove Event.ENTER_FRAME (AS3)</title>
		<link>http://cours-internet.com/131/</link>
		<comments>http://cours-internet.com/131/#comments</comments>
		<pubDate>Fri, 31 Jul 2009 08:00:46 +0000</pubDate>
		<dc:creator>bchabrol</dc:creator>
				<category><![CDATA[Scripts (AS3)]]></category>
		<category><![CDATA[actionscript 3]]></category>
		<category><![CDATA[as3]]></category>
		<category><![CDATA[enterframe]]></category>
		<category><![CDATA[événement]]></category>
		<category><![CDATA[mouse]]></category>
		<category><![CDATA[mouvements]]></category>
		<category><![CDATA[source flash]]></category>

		<guid isPermaLink="false">http://chabrol.net/blog/131/</guid>
		<description><![CDATA[Le Script : mc.addEventListener(Event.ENTER_FRAME,moving); function moving(evt:Event) { &#160;&#160;&#160; mc.x+=(this.mouseX-mc.x)*0.07; &#160;&#160;&#160; mc.y+=(this.mouseY-mc.y)*0.07; }]]></description>
		<wfw:commentRss>http://cours-internet.com/131/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>TextField htmlText (AS3)</title>
		<link>http://cours-internet.com/textfield-htmltext-as3/</link>
		<comments>http://cours-internet.com/textfield-htmltext-as3/#comments</comments>
		<pubDate>Thu, 30 Jul 2009 21:57:01 +0000</pubDate>
		<dc:creator>bchabrol</dc:creator>
				<category><![CDATA[Scripts (AS3)]]></category>
		<category><![CDATA[actionscript 3]]></category>
		<category><![CDATA[as3]]></category>
		<category><![CDATA[source flash]]></category>

		<guid isPermaLink="false">http://chabrol.net/blog/?p=127</guid>
		<description><![CDATA[Script var MonText:TextField=new TextField(); MonText.x=60; MonText.y=10; MonText.width=400; MonText.height=80; MonText.textColor=0xBBC7D9; MonText.border=true; MonText.borderColor=0&#215;333333; MonText.background=true; MonText.backgroundColor=0&#215;497589; MonText.alpha=50; MonText.multiline=true; MonText.wordWrap=true; //MonText.embedFonts=true; MonText.htmlText=&#34;&#60;i&#62;Le ventre&#60;/i&#62; est encore f&#233;cond d&#8217;o&#249; est sortie la b&#234;te immonde&#8230; &#60;font color=&#8217;#333333&#8242;&#62; Bertold Brecht &#60;/font&#62;&#34;; var styleMonText:TextFormat=new TextFormat(); styleMonText.align=&#34;center&#34;; styleMonText.align=&#34;center&#34;; styleMonText.size=15; styleMonText.bold=true; styleMonText.font=&#34;Arial&#34;; styleMonText.letterSpacing=8; MonText.setTextFormat(styleMonText); addChild(MonText);]]></description>
		<wfw:commentRss>http://cours-internet.com/textfield-htmltext-as3/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>importer une classe depuis flash import myDirectory.MyClass;</title>
		<link>http://cours-internet.com/importer-une-classe-depuis-flash-import-mydirectory-myclass/</link>
		<comments>http://cours-internet.com/importer-une-classe-depuis-flash-import-mydirectory-myclass/#comments</comments>
		<pubDate>Wed, 29 Jul 2009 07:05:45 +0000</pubDate>
		<dc:creator>bchabrol</dc:creator>
				<category><![CDATA[Scripts (AS3)]]></category>

		<guid isPermaLink="false">http://cours-internet.com/?p=1336</guid>
		<description><![CDATA[1 Cr&#233;er le fichier as MyClass.as dans le dossier net/chabrol &#160; 2 Ins&#233;rer le texte suivant package net.chabrol { dynamic public class MyClass { private static var _colorOver:String; public function MyClass() { } public static function getTrace(myVar:String) { trace(myVar) } } } 3 ins&#233;rer le texte suivant dans Flash pre class=&#34;brush:php&#34;&#62; import net.chabrol.MyClass; MyClass.getTrace(&#34;Hello World&#34;) [...]]]></description>
		<wfw:commentRss>http://cours-internet.com/importer-une-classe-depuis-flash-import-mydirectory-myclass/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>substr( ) &amp; substring( ) + return</title>
		<link>http://cours-internet.com/substr-substring/</link>
		<comments>http://cours-internet.com/substr-substring/#comments</comments>
		<pubDate>Wed, 29 Jul 2009 06:45:17 +0000</pubDate>
		<dc:creator>bchabrol</dc:creator>
				<category><![CDATA[Scripts (AS3)]]></category>

		<guid isPermaLink="false">http://cours-internet.com/?p=1330</guid>
		<description><![CDATA[Avec substr var myText=&#34;http://cours-internet.com&#34; trace(myText.substr(7,14)); Resultat : cours-internet Avec substring var myText=&#34;http://cours-internet.com&#34; trace(myText.substring(7,12)); Resultat : cours Avec substring et return var myText = getmyText(&#34;http://cours-internet.com&#34;,7,21); trace(myText); function getmyText(ttt,a1,a2) { var nReturnVal = ttt.substring(a1,a2) return nReturnVal; } Resultat : cours-internet Avec substring et return import&#233; dans une classe Dans le fishier :GetSubstring.as package net.chabrol { /** * [...]]]></description>
		<wfw:commentRss>http://cours-internet.com/substr-substring/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

