<?xml version="1.0" encoding="UTF-8" ?><rdf:RDF 
  xmlns="http://purl.org/rss/1.0/"
  xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
  xmlns:atom="http://www.w3.org/2005/Atom"
  xmlns:dc="http://purl.org/dc/elements/1.1/"
  xml:lang="ja">
  <channel rdf:about="http://w.atwiki.jp/yi01/">
    <title>Flex2　メモ</title>
    <link>http://w.atwiki.jp/yi01/</link>
    <atom:link href="https://w.atwiki.jp/yi01/rss10.xml" rel="self" type="application/rss+xml" />
    <atom:link rel="hub" href="https://pubsubhubbub.appspot.com" />
    <description>Flex2　メモ</description>

    <dc:language>ja</dc:language>
    <dc:date>2007-06-06T02:04:48+09:00</dc:date>
    <utime>1181063088</utime>

    <items>
      <rdf:Seq>
                <rdf:li rdf:resource="https://w.atwiki.jp/yi01/pages/14.html" />
                <rdf:li rdf:resource="https://w.atwiki.jp/yi01/pages/13.html" />
                <rdf:li rdf:resource="https://w.atwiki.jp/yi01/pages/12.html" />
                <rdf:li rdf:resource="https://w.atwiki.jp/yi01/pages/11.html" />
                <rdf:li rdf:resource="https://w.atwiki.jp/yi01/pages/10.html" />
                <rdf:li rdf:resource="https://w.atwiki.jp/yi01/pages/1.html" />
              </rdf:Seq>
    </items>
	
		
    
  </channel>
    <item rdf:about="https://w.atwiki.jp/yi01/pages/14.html">
    <title>スクリプト内での変数宣言</title>
    <link>https://w.atwiki.jp/yi01/pages/14.html</link>
    <description>
      JavaやC++では、
 int a = 30;
 double aa[] = {0.1, 0.2, 0.3, 0.4};

Flexでは
 var a:int = 30;
 var aa:Array = [0.1, 0.2, 0.3, 0.4];
配列変数は、型は気にしないのか？オブジェクトだからか？よくわからん。
&gt;配列の要素には、あらゆるデータ型の値を格納できます。ActionScript 3.0 では &quot;型付き配列&quot; の概念がサポートされていないため、配列内のすべての要素が特定の同じデータ型を持つことを指定することはできません。    </description>
    <dc:date>2007-06-06T02:04:48+09:00</dc:date>
    <utime>1181063088</utime>
  </item>
    <item rdf:about="https://w.atwiki.jp/yi01/pages/13.html">
    <title>リンクを貼る</title>
    <link>https://w.atwiki.jp/yi01/pages/13.html</link>
    <description>
      GET送信でmethod=&quot;GET&quot;だったのをmethod=&quot;POST&quot;に変えるだけ…

HTMLでは
 &lt;a href=&quot;http://www.yahoo.co.jp&quot;&gt;link&lt;/a&gt;

これをFlexで実現するには、
 click=&quot;navigateToURL(new URLRequest(&#039;http://www.google.com&#039;))&quot;
をイベントに加える。    </description>
    <dc:date>2007-06-04T02:45:14+09:00</dc:date>
    <utime>1180892714</utime>
  </item>
    <item rdf:about="https://w.atwiki.jp/yi01/pages/12.html">
    <title>フォームPOST送信</title>
    <link>https://w.atwiki.jp/yi01/pages/12.html</link>
    <description>
      GET送信でmethod=&quot;GET&quot;だったのをmethod=&quot;POST&quot;に変えるだけ…

HTMLでは
 &lt;form name=&quot;input&quot; action=&quot;login.php&quot; method=&quot;POST&quot;&gt;
   &lt;input type=&quot;text&quot; name=&quot;user&quot;/&gt; 
   &lt;input type=&quot;text&quot; name=&quot;passwd&quot;/&gt; 
   &lt;input type=&quot;submit&quot; value=&quot;送信&quot;/&gt;
 &lt;/form&gt;

これをFlexで実現するには、
 &lt;?xml version=&quot;1.0&quot; encoding=&quot;utf-8&quot;?&gt;
 &lt;mx:Application xmlns:mx=&quot;http://www.adobe.com/2006/mxml&quot;&gt;
 
   &lt;mx:HTTPService id=&quot;form1&quot; url=&quot;http://???/login.php&quot; method=&quot;POST&quot; resultFormat=&quot;text&quot; result=&quot;{textarea1.text = String(event.result)}&quot;&gt;
     &lt;mx:request&gt;
       &lt;user&gt;{user.text}&lt;/user&gt;
       &lt;passwd&gt;{passwd.text}&lt;/passwd&gt;
     &lt;/mx:request&gt;
   &lt;/mx:HTTPService&gt;
 
   &lt;mx:TextInput id=&quot;user&quot;/&gt;
   &lt;mx:TextInput id=&quot;passwd&quot;/&gt;
 
   &lt;mx:Button label=&quot;Submit&quot; click=&quot;form1.send()&quot;/&gt;
 
   &lt;mx:Label text=&quot;Result&quot;/&gt;
   &lt;mx:TextArea id=&quot;textarea1&quot;/&gt;
 
 &lt;/mx:Application&gt;    </description>
    <dc:date>2007-06-04T02:11:20+09:00</dc:date>
    <utime>1180890680</utime>
  </item>
    <item rdf:about="https://w.atwiki.jp/yi01/pages/11.html">
    <title>メニュー</title>
    <link>https://w.atwiki.jp/yi01/pages/11.html</link>
    <description>
      &amp;html(&lt;script type=&quot;text/javascript&quot;  charset=&quot;UTF-8&quot; src=&quot;http://www23.atwiki.jp/yi01/js/recent/20&quot;&gt; &lt;/script&gt;)
&amp;html(&lt;script type=&quot;text/javascript&quot; charset=&quot;UTF-8&quot; src=&quot;http://www23.atwiki.jp/yi01/js/search&quot;&gt; &lt;/script&gt;)    </description>
    <dc:date>2007-06-04T02:07:12+09:00</dc:date>
    <utime>1180890432</utime>
  </item>
    <item rdf:about="https://w.atwiki.jp/yi01/pages/10.html">
    <title>フォームGET送信</title>
    <link>https://w.atwiki.jp/yi01/pages/10.html</link>
    <description>
      HTMLでは
 &lt;form name=&quot;input&quot; action=&quot;login.php&quot; method=&quot;GET&quot;&gt;
   &lt;input type=&quot;text&quot; name=&quot;user&quot;/&gt; 
   &lt;input type=&quot;text&quot; name=&quot;passwd&quot;/&gt; 
   &lt;input type=&quot;submit&quot; value=&quot;送信&quot;/&gt;
 &lt;/form&gt;

これをFlexで実現するには、
 &lt;?xml version=&quot;1.0&quot; encoding=&quot;utf-8&quot;?&gt;
 &lt;mx:Application xmlns:mx=&quot;http://www.adobe.com/2006/mxml&quot;&gt;
 
   &lt;mx:HTTPService id=&quot;form1&quot; url=&quot;http://???/login.php&quot; method=&quot;GET&quot; resultFormat=&quot;text&quot; result=&quot;{textarea1.text = String(event.result)}&quot;&gt;
     &lt;mx:request&gt;
       &lt;user&gt;{user.text}&lt;/user&gt;
       &lt;passwd&gt;{passwd.text}&lt;/passwd&gt;
     &lt;/mx:request&gt;
   &lt;/mx:HTTPService&gt;
 
   &lt;mx:TextInput id=&quot;user&quot;/&gt;
   &lt;mx:TextInput id=&quot;passwd&quot;/&gt;
 
   &lt;mx:Button label=&quot;Submit&quot; click=&quot;form1.send()&quot;/&gt;
 
   &lt;mx:Label text=&quot;Result&quot;/&gt;
   &lt;mx:TextArea id=&quot;textarea1&quot;/&gt;
 
 &lt;/mx:Application&gt;    </description>
    <dc:date>2007-06-04T01:49:45+09:00</dc:date>
    <utime>1180889385</utime>
  </item>
    <item rdf:about="https://w.atwiki.jp/yi01/pages/1.html">
    <title>トップページ</title>
    <link>https://w.atwiki.jp/yi01/pages/1.html</link>
    <description>
      *このページについて
Javascript &amp; PHPで今までアプリをいろいろ作ってきた作者の、Flex2移行メモ。
というか、サンプル集みたいなの。

ほぼコピペ。    </description>
    <dc:date>2007-06-04T01:21:17+09:00</dc:date>
    <utime>1180887677</utime>
  </item>
  </rdf:RDF>
