flash on 2010-5-17

by simultechnology
♥0 | Line 16 | Modified 2010-05-17 00:22:09 | MIT License
play

ActionScript3 source code

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

<?xml version="1.0" encoding="utf-8"?>
<s:Application xmlns:fx="http://ns.adobe.com/mxml/2009" 
			   xmlns:s="library://ns.adobe.com/flex/spark" 
			   xmlns:mx="library://ns.adobe.com/flex/mx"
			   applicationComplete="srv.send()">
	<fx:Declarations>
		<s:HTTPService id="srv" url="http://api.atnd.org/events/?count=100" />
	</fx:Declarations>
	
	<mx:AdvancedDataGrid dataProvider="{srv.lastResult.hash.events.event}" height="465">
		<mx:columns>
			<mx:AdvancedDataGridColumn dataField="event-id" headerText="イベントID" width="65"/>
			<mx:AdvancedDataGridColumn dataField="title" headerText="タイトル" width="250"/>
			<mx:AdvancedDataGridColumn dataField="started-at" headerText="開始時間" width="150"/>
		</mx:columns>
	</mx:AdvancedDataGrid>
	
</s:Application>