flash on 2010-3-28

by shohei909
♥0 | Line 26 | Modified 2010-03-28 23:56:39 | MIT License
play

Related images

ActionScript3 source code

/**
 * Copyright shohei909 ( http://wonderfl.net/user/shohei909 )
 * MIT License ( http://www.opensource.org/licenses/mit-license.php )
 * Downloaded from: http://wonderfl.net/c/n6fq
 */

<?xml version="1.0" encoding="utf-8"?>
<!--
	タワーディフェンス作りたいので、
	ダイクストラ法で最短経路を探すプログラムを作ります。
	
	まったり作成中
-->
<mx:Application
    xmlns:mx="http://www.adobe.com/2006/mxml"
	height="465" width="465"
	applicationComplete="init()"  
	>
	<mx:Script>
        <![CDATA[
 			public function init():void{
 				
 				
 			}
        ]]>
    </mx:Script>

	<mx:VBox>
		<mx:Canvas id="field" width="400" height="330" backgroundColor="0x000000">
		</mx:Canvas>
	</mx:VBox>
	<mx:VBox>
		<mx:Image id="wall" source="@Embed(source='http://spheresofa.web.fc2.com/td/img/wall.png')" />
		<mx:Image id="floor" source="@Embed(source='http://spheresofa.web.fc2.com/td/img/floor.png')" />
	</mx:VBox>
</mx:Application>