ウェブ学のすすめ

Study of Web Design & Programing

ActionScript 2.0で作るスライドショー

コード

this.onLoad = function(){
	stop();
}

go_btn.onRelease = function(){
	if(_currentframe !=7){
		nextFrame();
	}
	else{
		gotoAndStop(1);
	}
}

back_btn.onRelease = function(){
	if(_currentframe !=1){
		prevFrame();
	}
	else{
		gotoAndStop(7);
	}
}

別バージョン

画像の左端、右端にポインターを置いてみて下さい。
クリックすると進めたり戻すことができる帯が現れます。

Flash