<?xml version="1.0" encoding="ISO-8859-1" ?>
<feed xmlns="http://purl.org/atom/ns#" version="0.3"
	  xmlns:dc="http://purl.org/dc/elements/1.1/"
	  xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	  xml:lang="fr">

  <title>jeanphiBlog</title>
  <link rel="alternate" type="text/html" href="http://jeanphiblog.media-box.net/dotclear/index.php"/>
  <tagline type="text/plain" mode="escaped">Flash Media Server - Flash 8 - Flash MX 2004 - Video - Tutoriaux - ActionScript</tagline>
  
  <modified>2010-06-25T11:17:04+02:00</modified>
  <generator version="1.2.3" url="http://www.dotclear.net/">DotClear</generator>
  
  <sy:updatePeriod>daily</sy:updatePeriod>
  <sy:updateFrequency>1</sy:updateFrequency>
  <sy:updateBase>2010-06-25T11:17:04+02:00</sy:updateBase>
  
<entry xml:lang="fr">
  <title>FLASH CS5 : Loader et jouer une video Youtube dans Flash...</title>
  <link rel="alternate" type="text/html" href="http://jeanphiblog.media-box.net/dotclear/index.php?2010/06/25/346-flash-cs5-loader-et-jouer-une-video-youtube-dans-flash" />
  <issued>2010-06-25T11:17:04+02:00</issued>
  <modified>2010-06-25T11:17:04+02:00</modified>
  <id>http://jeanphiblog.media-box.net/dotclear/index.php?2010/06/25/346-flash-cs5-loader-et-jouer-une-video-youtube-dans-flash</id>
  <author><name>jeanphilippe</name></author>
  <dc:subject>Flash CS5</dc:subject>
  <summary>Quelques lignes de code AS3 pour appeler une video Youtube et la jouer dans Flash...</summary>
  <content type="text/html" mode="escaped">&lt;p&gt;Quelques lignes de code AS3 pour appeler une video Youtube et la jouer dans Flash...&lt;/p&gt; &lt;p&gt;Le code :&lt;br /&gt;&lt;/p&gt;


&lt;pre&gt;Security.allowDomain(&quot;www.youtube.com&quot;);
var player:Object;
var loader:Loader;
loader = new Loader();
loader.contentLoaderInfo.addEventListener(Event.INIT, onLoaderInit);
loader.load(new URLRequest(&quot;http://www.youtube.com/apiplayer?version=3&quot;));
function onLoaderInit(event:Event):void
{
addChild(loader);
loader.content.addEventListener(&quot;onReady&quot;, onPlayerReady);
loader.content.addEventListener(&quot;onError&quot;, onPlayerError);
loader.content.addEventListener(&quot;onStateChange&quot;, onPlayerStateChange);
loader.content.addEventListener(&quot;onPlaybackQualityChange&quot;,onVideoPlaybackQualityChange);
}
function onPlayerReady(event:Event):void
{
trace(&quot;player ready:&quot;, Object(event).data);
player = loader.content;
player.setSize(550,400);
player.loadVideoById(&quot;_XvKvIEik8c&quot;, 1);
}
function onPlayerError(event:Event):void
{
trace(&quot;player error:&quot;, Object(event).data);
}
function onPlayerStateChange(event:Event):void
{
trace(&quot;player state:&quot;, Object(event).data);
}
function onVideoPlaybackQualityChange(event:Event):void
{
trace(&quot;video quality:&quot;, Object(event).data);
}&lt;/pre&gt;


&lt;p&gt;&lt;a href=&quot;http://jeanphiblog.media-box.net/download/youtube.swf&quot;&gt;Le lien pour tester en ligne&lt;/a&gt;&lt;/p&gt;</content>
</entry>
<entry xml:lang="fr">
  <title>IPHONE OS4 : La mise à jour IOS4 est disponible officiellement ...</title>
  <link rel="alternate" type="text/html" href="http://jeanphiblog.media-box.net/dotclear/index.php?2010/06/21/345-iphone-os4-la-mise-a-jour-ios4-est-disponible-officiellement" />
  <issued>2010-06-21T20:10:44+02:00</issued>
  <modified>2010-06-21T20:10:44+02:00</modified>
  <id>http://jeanphiblog.media-box.net/dotclear/index.php?2010/06/21/345-iphone-os4-la-mise-a-jour-ios4-est-disponible-officiellement</id>
  <author><name>jeanphilippe</name></author>
  <dc:subject>IPHONE APPS</dc:subject>
  <summary>La mise à jour de l'OS Iphone nommée IOS4 est disponible officiellement depuis une heure (19 h , 21 Juin heure française)...</summary>
  <content type="text/html" mode="escaped">&lt;p&gt;La mise à jour de l'OS Iphone nommée IOS4 est disponible officiellement depuis une heure (19 h , 21 Juin heure française)...&lt;/p&gt; &lt;p&gt;Il suffit de connecter votre Iphone à Itunes et de cliquer sur Mettre à jour :)&lt;/p&gt;</content>
</entry>
<entry xml:lang="fr">
  <title>IPHONE APP : iDrawMail &gt; Update version 2</title>
  <link rel="alternate" type="text/html" href="http://jeanphiblog.media-box.net/dotclear/index.php?2010/05/13/344-iphone-app-idrawmail-update-version-2" />
  <issued>2010-05-13T16:24:11+02:00</issued>
  <modified>2010-05-13T16:24:11+02:00</modified>
  <id>http://jeanphiblog.media-box.net/dotclear/index.php?2010/05/13/344-iphone-app-idrawmail-update-version-2</id>
  <author><name>jeanphilippe</name></author>
  <dc:subject>IPHONE APPS</dc:subject>
  <summary>J'ai uploadé ma version de iDrawMail en version 2
• une nouvelle navigation (tab bar)
• la possibilité de changer la couleur et l'épaisseur du crayon</summary>
  <content type="text/html" mode="escaped">&lt;p&gt;J'ai uploadé ma version de iDrawMail en version 2&lt;br /&gt;
&amp;#8226; une nouvelle navigation (tab bar)&lt;br /&gt;
&amp;#8226; la possibilité de changer la couleur et l'épaisseur du crayon&lt;/p&gt; &lt;p&gt;iDrawmail is a really simple free application !&lt;br /&gt;
Just draw or write with your finger on the white screen and click Send button to mail the picture in attachment file.&lt;br /&gt;
Erase button clear the screen.&lt;br /&gt;&lt;br /&gt;
&lt;a href=&quot;http://itunes.apple.com/us/app/idrawmail/id363447484?mt=8&quot;&gt;&lt;img src=&quot;/dotclear/images/badge.jpg&quot; alt=&quot;&quot; /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;
Screens of the app :&lt;br /&gt;&lt;br /&gt;
&lt;img src=&quot;/dotclear/images/screen1.jpg&quot; alt=&quot;&quot; /&gt;
&lt;img src=&quot;/dotclear/images/screen2.jpg&quot; alt=&quot;&quot; /&gt;
&lt;img src=&quot;/dotclear/images/screen3.jpg&quot; alt=&quot;&quot; /&gt;
&lt;img src=&quot;/dotclear/images/screen4.jpg&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;</content>
</entry>
<entry xml:lang="fr">
  <title>Adobe Creative Suite 5 : Découvrir les nouveautés de la CS5 sur AdobeTV...</title>
  <link rel="alternate" type="text/html" href="http://jeanphiblog.media-box.net/dotclear/index.php?2010/05/12/343-adobe-creative-suite-5-decouvrir-les-nouveautes-de-la-cs5-sur-adobetv" />
  <issued>2010-05-12T05:49:35+02:00</issued>
  <modified>2010-05-12T05:49:35+02:00</modified>
  <id>http://jeanphiblog.media-box.net/dotclear/index.php?2010/05/12/343-adobe-creative-suite-5-decouvrir-les-nouveautes-de-la-cs5-sur-adobetv</id>
  <author><name>jeanphilippe</name></author>
  <dc:subject>Flash CS5</dc:subject>
  <summary>L'équipe de Video2brain nous propose, sur AdobeTV, une kyrielle de tutoriels en français et en video.
On y découvrira en autres les nouveautés concernant Flash CS5, Illustrator CS5 ou encore Photoshop CS5...</summary>
  <content type="text/html" mode="escaped">&lt;p&gt;L'équipe de &lt;a href=&quot;http://www.video2brain.com/fr/&quot;&gt;Video2brain&lt;/a&gt; nous propose, sur &lt;a href=&quot;http://tv.adobe.com/fr/&quot;&gt;AdobeTV&lt;/a&gt;, une kyrielle de tutoriels en français et en video.&lt;br /&gt;
On y découvrira en autres les nouveautés concernant Flash CS5, Illustrator CS5 ou encore Photoshop CS5...&lt;/p&gt; &lt;p&gt;&lt;a href=&quot;http://tv.adobe.com/fr/channel/how-to/tutoriels-sur-la-cs5/&quot;&gt;Le lien pour découvrir ces tutoriels videos...&lt;/a&gt;&lt;/p&gt;</content>
</entry>
<entry xml:lang="fr">
  <title>FLASH CS5 : Recording microphone and save it to desktop with the Flash Player 10.1...</title>
  <link rel="alternate" type="text/html" href="http://jeanphiblog.media-box.net/dotclear/index.php?2010/04/13/342-flash-cs5-recording-microphone-and-save-it-to-desktop-with-the-flash-player-101" />
  <issued>2010-04-13T19:49:05+02:00</issued>
  <modified>2010-04-13T19:49:05+02:00</modified>
  <id>http://jeanphiblog.media-box.net/dotclear/index.php?2010/04/13/342-flash-cs5-recording-microphone-and-save-it-to-desktop-with-the-flash-player-101</id>
  <author><name>jeanphilippe</name></author>
  <dc:subject>Flash CS5</dc:subject>
  <summary>Depuis Flash Player 10.1, il est maintenant possible d'enregistrer le flux de son microphone sous forme de bytearray, de l'écouter, puis de le sauver sur son disque dur.</summary>
  <content type="text/html" mode="escaped">&lt;p&gt;Depuis Flash Player 10.1, il est maintenant possible d'enregistrer le flux de son microphone sous forme de bytearray, de l'écouter, puis de le sauver sur son disque dur.&lt;/p&gt; &lt;p&gt;En effet depuis Flash Player 10.1, en utilisant SampleDataEvent.SAMPLE_DATA, l'on peut faire l'acquisition en raw du flux du microphone.&lt;br /&gt;
Dans cet exemple, vous pouvez vous enregistrer, vous écouter, puis sauver le fichier sound en WAVE.&lt;br /&gt;&lt;br /&gt;
Le code :&lt;br /&gt;&lt;/p&gt;

&lt;pre&gt;import pack.WAVEncoder;
var soundBytes:ByteArray = new ByteArray();
soundBytes.endian = Endian.LITTLE_ENDIAN;
var mic:Microphone = Microphone.getMicrophone();
mic.gain = 100;
mic.rate = 44;
rec.addEventListener(MouseEvent.CLICK,onClickk);
function onClickk(e:Event):void
{
mic.addEventListener(SampleDataEvent.SAMPLE_DATA, micSampleDataHandler);
}
function micSampleDataHandler(event:SampleDataEvent):void
{
while (event.data.bytesAvailable)
{
var sample:Number = event.data.readFloat();
soundBytes.writeFloat(sample);
}
}
function playbackSampleHandler(event:SampleDataEvent):void
{
for (var i:int = 0; i &amp;lt; 8192 &amp;amp;&amp;amp; soundBytes.bytesAvailable &amp;gt; 0; i++)
{
var sample:Number = soundBytes.readFloat();
event.data.writeFloat(sample);
event.data.writeFloat(sample);
}
}
eco.addEventListener(MouseEvent.CLICK,onClick);
function onClick(e:Event):void
{
mic.removeEventListener(SampleDataEvent.SAMPLE_DATA, micSampleDataHandler);
soundBytes.position = 0;
var sound:Sound = new Sound();
sound.addEventListener(SampleDataEvent.SAMPLE_DATA, playbackSampleHandler);
sound.play();
}
function _saveFileHandler(e:Event):void
{
var encoder:WAVEncoder = new WAVEncoder ( );
var fileRef:FileReference = new FileReference ( );
fileRef.save( encoder.addHeaders ( testConvert(soundBytes) ), &quot;monSon.wav&quot; );
}
function testConvert( p:ByteArray ):ByteArray
{
var ba:ByteArray = new ByteArray ( );
ba.endian = Endian.LITTLE_ENDIAN;
p.position = 0;
while ( p.position &amp;lt; p.length )
{
ba.writeShort( p.readFloat ( ) * 32767);
}
return ba;
}
mySaveButton.addEventListener(MouseEvent.CLICK,_saveFileHandler);&lt;br /&gt;&lt;br /&gt;&lt;/pre&gt;

&lt;p&gt;&lt;a href=&quot;http://jeanphiblog.media-box.net/download/raw%20micro.swf&quot;&gt;Exemple à tester en ligne&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;
&lt;a href=&quot;http://jeanphiblog.media-box.net/download/rawMicro.zip&quot;&gt;les fichiers sources&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;/p&gt;</content>
</entry>
<entry xml:lang="fr">
  <title>Adobe Flash Professionnal CS5 : Acheter / Mettre à jour...</title>
  <link rel="alternate" type="text/html" href="http://jeanphiblog.media-box.net/dotclear/index.php?2010/04/12/341-adobe-flash-professionnal-cs5-acheter-mettre-a-jour" />
  <issued>2010-04-12T08:05:06+02:00</issued>
  <modified>2010-04-12T08:05:06+02:00</modified>
  <id>http://jeanphiblog.media-box.net/dotclear/index.php?2010/04/12/341-adobe-flash-professionnal-cs5-acheter-mettre-a-jour</id>
  <author><name>jeanphilippe</name></author>
  <dc:subject>Flash CS5</dc:subject>
  <summary>
Depuis ce matin (12 Avril), il est possible d'acheter (précommande) Flash Professionnal CS5 ou de commander la mise à jour...</summary>
  <content type="text/html" mode="escaped">&lt;p&gt;&lt;img src=&quot;/dotclear/images/cs5.jpg&quot; alt=&quot;&quot; /&gt;&lt;br /&gt;
Depuis ce matin (12 Avril), il est possible d'acheter (précommande) Flash Professionnal CS5 ou de commander la mise à jour...&lt;/p&gt; &lt;p&gt;&lt;a href=&quot;http://www.adobe.com/fr/products/flash/?promoid=BPBMT&quot; hreflang=&quot;fr&quot;&gt;Le lien vers la page d'accueil&lt;/a&gt;&lt;br /&gt;
&lt;a href=&quot;http://www.adobe.com/fr/products/flash/whatsnew/&quot; hreflang=&quot;fr&quot;&gt;Les nouvelles fonctionnalités&lt;/a&gt;&lt;/p&gt;</content>
</entry>
<entry xml:lang="fr">
  <title>Chat FMS / Flex :  accés libre...</title>
  <link rel="alternate" type="text/html" href="http://jeanphiblog.media-box.net/dotclear/index.php?2010/04/05/340-chat-fms-flex-acces-libre" />
  <issued>2010-04-05T16:12:31+02:00</issued>
  <modified>2010-04-05T16:12:31+02:00</modified>
  <id>http://jeanphiblog.media-box.net/dotclear/index.php?2010/04/05/340-chat-fms-flex-acces-libre</id>
  <author><name>jeanphilippe</name></author>
  <dc:subject>Flash CS4</dc:subject>
  <summary>Vous pouvez tester ce chat librement....</summary>
  <content type="text/html" mode="escaped">&lt;p&gt;Vous pouvez tester ce chat librement....&lt;/p&gt; &lt;p&gt;avec ces pass :&lt;br /&gt;
User&amp;nbsp;: admin&lt;br /&gt;
Password&amp;nbsp;: admin&lt;br /&gt;
&lt;a href=&quot;http://jeanphiblog.media-box.net/fms/&quot;&gt;le lien pour y accéder&lt;/a&gt;&lt;/p&gt;</content>
</entry>
<entry xml:lang="fr">
  <title>Lancement de la Adobe Creative Suite 5...</title>
  <link rel="alternate" type="text/html" href="http://jeanphiblog.media-box.net/dotclear/index.php?2010/03/25/339-lancement-de-la-adobe-creative-suite-5" />
  <issued>2010-03-25T05:02:37+01:00</issued>
  <modified>2010-03-25T05:02:37+01:00</modified>
  <id>http://jeanphiblog.media-box.net/dotclear/index.php?2010/03/25/339-lancement-de-la-adobe-creative-suite-5</id>
  <author><name>jeanphilippe</name></author>
  <dc:subject>Flash CS5</dc:subject>
  <summary>Le lancement mondial de la CS5 est prévue le 12 Avril 2010.
Reste à savoir quand elle sera en vente....</summary>
  <content type="text/html" mode="escaped">Le lancement mondial de la CS5 est prévue le 12 Avril 2010.
Reste à savoir quand elle sera en vente.... &lt;object width=&quot;520&quot; height=&quot;665&quot;&gt;&lt;param name=&quot;wmode&quot; value=&quot;transparent&quot; /&gt;&lt;param name=&quot;allowscriptaccess&quot; value=&quot;always&quot; /&gt;&lt;param name=&quot;movie&quot; value=&quot;http://www.adobecs5widget.com/widget/adobe_cs5_loader.swf&quot; /&gt;&lt;embed src=&quot;http://www.adobecs5widget.com/widget/adobe_cs5_loader.swf&quot; type=&quot;application/x-shockwave-flash&quot; wmode=&quot;transparent&quot; allowscriptaccess=&quot;always&quot; width=&quot;520&quot; height=&quot;665&quot;&gt;&lt;/embed&gt;&lt;/object&gt;</content>
</entry>
<entry xml:lang="fr">
  <title>IPHONE APP : iDrawMail &gt; ma première application pour iPhone...</title>
  <link rel="alternate" type="text/html" href="http://jeanphiblog.media-box.net/dotclear/index.php?2010/03/23/338-iphone-app-idrawmail-ma-premiere-application-pour-iphone" />
  <issued>2010-03-23T19:21:54+01:00</issued>
  <modified>2010-03-23T19:21:54+01:00</modified>
  <id>http://jeanphiblog.media-box.net/dotclear/index.php?2010/03/23/338-iphone-app-idrawmail-ma-premiere-application-pour-iphone</id>
  <author><name>jeanphilippe</name></author>
  <dc:subject>IPHONE APPS</dc:subject>
  <summary>Draw or write and send by mail...</summary>
  <content type="text/html" mode="escaped">&lt;p&gt;Draw or write and send by mail...&lt;/p&gt; &lt;p&gt;iDrawmail is a really simple free application !&lt;br /&gt;
Just draw or write with your finger on the white screen and click Send button to mail the picture in attachment file.&lt;br /&gt;
Erase button clear the screen.&lt;br /&gt;&lt;br /&gt;
&lt;a href=&quot;http://itunes.apple.com/us/app/idrawmail/id363447484?mt=8&quot;&gt;&lt;img src=&quot;/dotclear/images/badge.jpg&quot; alt=&quot;&quot; /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;
Screens of the app :&lt;br /&gt;&lt;br /&gt;
&lt;img src=&quot;/dotclear/images/screen1.jpg&quot; alt=&quot;&quot; /&gt;
&lt;img src=&quot;/dotclear/images/screen2.jpg&quot; alt=&quot;&quot; /&gt;
&lt;img src=&quot;/dotclear/images/screen3.jpg&quot; alt=&quot;&quot; /&gt;
&lt;img src=&quot;/dotclear/images/screen4.jpg&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;</content>
</entry>
<entry xml:lang="fr">
  <title>FLASH CS4 : Fullscreen AS3...</title>
  <link rel="alternate" type="text/html" href="http://jeanphiblog.media-box.net/dotclear/index.php?2010/01/23/337-flash-cs4-fullscreen-as3" />
  <issued>2010-01-23T19:00:38+01:00</issued>
  <modified>2010-01-23T19:00:38+01:00</modified>
  <id>http://jeanphiblog.media-box.net/dotclear/index.php?2010/01/23/337-flash-cs4-fullscreen-as3</id>
  <author><name>jeanphilippe</name></author>
  <dc:subject>Flash CS4</dc:subject>
  <summary>Exemple basique de Video en fullscreen en AS3...</summary>
  <content type="text/html" mode="escaped">&lt;p&gt;Exemple basique de Video en fullscreen en AS3...&lt;/p&gt; &lt;p&gt;Le code :&lt;br /&gt;&lt;/p&gt;

&lt;pre&gt;import flash.events.MouseEvent;
var fullscreen:Boolean=false;
stage.addEventListener(MouseEvent.CLICK, clickHandler);
function clickHandler(event:MouseEvent):void {
if (! fullscreen) {
fullscreen=true;
stage&lt;a href=&quot;&amp;quot;displayState&amp;quot;&quot;&gt;&quot;displayState&quot;&lt;/a&gt;=&quot;fullScreen&quot;;
} else {
fullscreen=false;
stage&lt;a href=&quot;&amp;quot;displayState&amp;quot;&quot;&gt;&quot;displayState&quot;&lt;/a&gt;=&quot;normal&quot;;
}
}&lt;br /&gt;&lt;/pre&gt;

&lt;p&gt;&lt;br /&gt;
&lt;a href=&quot;http://jeanphiblog.media-box.net/download/fullscreen/&quot;&gt;le lien pour voir&lt;/a&gt;&lt;/p&gt;</content>
</entry>
</feed>