<?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/tomoweb/">
    <title>うぇぶ作成の入門</title>
    <link>http://w.atwiki.jp/tomoweb/</link>
    <atom:link href="https://w.atwiki.jp/tomoweb/rss10.xml" rel="self" type="application/rss+xml" />
    <atom:link rel="hub" href="https://pubsubhubbub.appspot.com" />
    <description>うぇぶ作成の入門</description>

    <dc:language>ja</dc:language>
    <dc:date>2007-08-25T10:37:46+09:00</dc:date>
    <utime>1188005866</utime>

    <items>
      <rdf:Seq>
                <rdf:li rdf:resource="https://w.atwiki.jp/tomoweb/pages/43.html" />
                <rdf:li rdf:resource="https://w.atwiki.jp/tomoweb/pages/42.html" />
                <rdf:li rdf:resource="https://w.atwiki.jp/tomoweb/pages/41.html" />
                <rdf:li rdf:resource="https://w.atwiki.jp/tomoweb/pages/40.html" />
                <rdf:li rdf:resource="https://w.atwiki.jp/tomoweb/pages/39.html" />
                <rdf:li rdf:resource="https://w.atwiki.jp/tomoweb/pages/38.html" />
                <rdf:li rdf:resource="https://w.atwiki.jp/tomoweb/pages/37.html" />
                <rdf:li rdf:resource="https://w.atwiki.jp/tomoweb/pages/36.html" />
                <rdf:li rdf:resource="https://w.atwiki.jp/tomoweb/pages/35.html" />
                <rdf:li rdf:resource="https://w.atwiki.jp/tomoweb/pages/34.html" />
              </rdf:Seq>
    </items>
	
		
    
  </channel>
    <item rdf:about="https://w.atwiki.jp/tomoweb/pages/43.html">
    <title>ページによって背景を移動表示させる</title>
    <link>https://w.atwiki.jp/tomoweb/pages/43.html</link>
    <description>
      *ページによって背景を移動表示させる    </description>
    <dc:date>2007-08-25T10:37:46+09:00</dc:date>
    <utime>1188005866</utime>
  </item>
    <item rdf:about="https://w.atwiki.jp/tomoweb/pages/42.html">
    <title>波紋を作る</title>
    <link>https://w.atwiki.jp/tomoweb/pages/42.html</link>
    <description>
      *波紋を作るの

非常に簡単に作成する事ができますので説明させて頂きます。

**作成ステップ
①　グラデーションで&amp;color(#0000ff){内側をぼかし};た円形を作成
&amp;br;②　上記①で作成した円形を&amp;color(#0000ff){徐々に拡大しつつアルファ値を下げる};アニメーションをモーショントゥイーンで作成
&amp;br;③　上記②で作成したモーショントゥイーンをタイミング(フレーム)をずらして配置    </description>
    <dc:date>2007-08-25T15:12:08+09:00</dc:date>
    <utime>1188022328</utime>
  </item>
    <item rdf:about="https://w.atwiki.jp/tomoweb/pages/41.html">
    <title>ムービークリップのフレームアニメーション再生・逆再生制御</title>
    <link>https://w.atwiki.jp/tomoweb/pages/41.html</link>
    <description>
      #highlight(ActionScript){{{

//順再生の処理
function normalPlayFunc () {
	this.onEnterFrame = this.normalPlayRoutine;
}
function normalPlayRoutine () {
	targetFrame = this._currentframe + 1;
	if (targetFrame &gt;= this._totalframes) {
		delete this.onEnterFrame;
		targetFrame = this._totalframes;
	}
	this.gotoAndStop(targetFrame);
}




//逆再生の処理

function reversePlayFunc () {
	this.onEnterFrame = this.reversePlayRoutine;
}
function reversePlayRoutine () {
	targetFrame = this._currentframe - 1;
	if (targetFrame &lt;= 2) {
		delete this.onEnterFrame;
		targetFrame = 2;
	}
	this.gotoAndStop(targetFrame);
}
}}}    </description>
    <dc:date>2007-08-25T09:41:08+09:00</dc:date>
    <utime>1188002468</utime>
  </item>
    <item rdf:about="https://w.atwiki.jp/tomoweb/pages/40.html">
    <title>ムービークリップのフレームアニメーションを一時STOP</title>
    <link>https://w.atwiki.jp/tomoweb/pages/40.html</link>
    <description>
      *ムービークリップのフレームアニメーションを一時STOPの


#highlight(ActionScript){{{

function waitFunc(vol, str) { 
waitCnt = vol;myFunc = str; 
this.onEnterFrame = this.waitRoutine; 
} 
function waitRoutine() { 
waitCnt--; 
if (waitCnt &lt;= 0) { 
delete this.onEnterFrame; 
this[myFunc](); 
} 
}}}    </description>
    <dc:date>2007-08-25T09:39:45+09:00</dc:date>
    <utime>1188002385</utime>
  </item>
    <item rdf:about="https://w.atwiki.jp/tomoweb/pages/39.html">
    <title>ムービークリップボタン操作</title>
    <link>https://w.atwiki.jp/tomoweb/pages/39.html</link>
    <description>
      *ムービークリップボタン操作



#highlight(ActionScript){{{
this.onRollOver = this.normalPlayFunc;
this.onDragOver = this.normalPlayFunc;
this.onRollOut = this.reversePlayFunc;
this.onDragOut = this.reversePlayFunc;
this.onRelease = this.clickFunc;

function nextPageFunc () {
	_parent.nextPageFunc();
}
function prevPageFunc () {
	_parent.prevPageFunc();
}
function closeFunc () {
	_parent.fadeOutFunc();
}


function normalPlayFunc () {
	this.onEnterFrame = this.normalPlayRoutine;
}
function normalPlayRoutine () {
	targetFrame = this._currentframe + 1;
	if (targetFrame &gt;= this._totalframes) {
		delete this.onEnterFrame;
		targetFrame = this._totalframes;
	}
	this.gotoAndStop(targetFrame);
}




function reversePlayFunc () {
	this.onEnterFrame = this.reversePlayRoutine;
}
function reversePlayRoutine () {
	targetFrame = this._currentframe - 1;
	if (targetFrame &lt;= 2) {
		delete this.onEnterFrame;
		targetFrame = 2;
	}
	this.gotoAndStop(targetFrame);
}
}}}    </description>
    <dc:date>2007-08-25T09:37:53+09:00</dc:date>
    <utime>1188002273</utime>
  </item>
    <item rdf:about="https://w.atwiki.jp/tomoweb/pages/38.html">
    <title>フェードイン・フェードアウト</title>
    <link>https://w.atwiki.jp/tomoweb/pages/38.html</link>
    <description>
      #highlight(ActionScript){{{

/*　初期設定値   Start*/
decel = 4;    // フェードスピード定数
snap = 1;     //  終点への許容範囲
/*　初期設定値   END*/

/*  ムビークリップロード時には非表示とする　Start */
alp = 0;
this._alpha = alp;
this._visible = false;
/*  ムビークリップロード時には非表示とする　END */
 
function fadeInFunc(){
  this._visible= true;
  mytarget = 100;        //最終的なアルファー値
  
  this.onEnterFrame = this.fadeRoutine;
}

function fadeOutFunc() {
  mytarget = 0;          //最終的なアルファー値

  this.onEnterFrame = this.fadeRoutine;
}

function fadeRoutine() {
  dist = mytarget - alp;
  alp  += dist  /   decel;
  
  if(Math.abs(dist) &lt; snap){
    delete this.onEnterFrame;
     
    alp = mytarget;
    
    if(alp == 0){
      this._visible = false;
    } 

  }
  this._alp = alp;
}
}}}    </description>
    <dc:date>2007-08-25T09:34:35+09:00</dc:date>
    <utime>1188002075</utime>
  </item>
    <item rdf:about="https://w.atwiki.jp/tomoweb/pages/37.html">
    <title>Photoshop</title>
    <link>https://w.atwiki.jp/tomoweb/pages/37.html</link>
    <description>
      *Photoshop    </description>
    <dc:date>2007-08-25T09:21:00+09:00</dc:date>
    <utime>1188001260</utime>
  </item>
    <item rdf:about="https://w.atwiki.jp/tomoweb/pages/36.html">
    <title>ムービークリップを指定位置までモーション形式で移動させる</title>
    <link>https://w.atwiki.jp/tomoweb/pages/36.html</link>
    <description>
      *ムービークリップを指定位置までモーション形式で移動させる


** 考え方
あるムービークリップの座標(x,y)をターゲットとなる座標(target_x,target_y)に問う減速運動で移動させる。


#highlight(ActionScript){{{

function movetargetFunc(target_x,target_y){
  this.onEnterFrame = this.moveRoutine;
}

function moveRoutine(){
  cons_speed  = 5;   //ターゲットに向かう速度定数
  cons_accep  = 3;   //終着の許容範囲（ピクセル）

  this._x += (target_x -this._x)/cons_speed; 
  this._y += (target_y -this._y)/cons_speed;
   
  if (Math.abs(target_x - this._x) &lt;= cons_accep){
	delete this.onEnterFrame;
	this._x = target_x;
        this._y = target_y;
  }
 
 }

}}}    </description>
    <dc:date>2007-08-22T04:12:39+09:00</dc:date>
    <utime>1187723559</utime>
  </item>
    <item rdf:about="https://w.atwiki.jp/tomoweb/pages/35.html">
    <title>サムネイルでの表現</title>
    <link>https://w.atwiki.jp/tomoweb/pages/35.html</link>
    <description>
      *サムネイル&amp;ディテールでの表現
　写真などをサムネイル形式で表示させたい場合、Flashを使って様々な表現ができます。ここでは大まかな考え方を初めに解説後、細部の作成方法を解説していきます。

***サムネイル&amp;ディテールの考え方
　大まかに分ければ以下の２つの機能で実現させる事になります。
+サムネイル機能&amp;br;によって写真を一覧表示させる。サムネイル部分でクリックされた写真のIDなどをディテール機能に渡す。
+ディテール表示機能&amp;br;サムネイル機能より取得した値を元に拡大写真を表示させる。

サムネイル&amp;ディテールでは、それぞれの機能を別々にまずは考えて構築していくと、効率良くFlashで作成する事ができます。    </description>
    <dc:date>2007-08-22T03:37:20+09:00</dc:date>
    <utime>1187721440</utime>
  </item>
    <item rdf:about="https://w.atwiki.jp/tomoweb/pages/34.html">
    <title>流れる線の表現</title>
    <link>https://w.atwiki.jp/tomoweb/pages/34.html</link>
    <description>
      *流れる線の表現
　流れる線の表現方法を解説していきます。

&amp;flash(http://www38.atwiki.jp/tomoweb/pub/line_02.swf,width=400,height=300,bgcolor=#000);    </description>
    <dc:date>2007-08-22T03:29:54+09:00</dc:date>
    <utime>1187720994</utime>
  </item>
  </rdf:RDF>
