HTTP経由でXMLデータを読み込んでExcelシートに表示します。
XMLといってもHTMLのtable#data-root``tr``td
の2次元構成が想定されています。
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package { | |
import flash.display.Sprite; | |
import starling.core.Starling; | |
[SWF(width="400", height="300", frameRate="60", backgroundColor="#ffffff")] | |
public class Startup extends Sprite | |
{ | |
private var _starling:Starling; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package { | |
import starling.display.Sprite; | |
import starling.text.TextField; | |
public class Game extends Sprite | |
{ | |
public function Game() | |
{ | |
var textField:TextField = new TextField(400, 300, "Welcome to Starling!"); | |
addChild(textField); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package { | |
import starling.display.Sprite; | |
import starling.display.Quad; | |
import starling.events.Event; | |
public class Game extends Sprite | |
{ | |
private var square:Quad; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package { | |
import starling.display.Sprite; | |
import starling.display.Quad; | |
import starling.events.Event; | |
public class Game extends Sprite | |
{ | |
private var square:Quad; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package { | |
import flash.display.BitmapData; | |
import flash.utils.Timer; | |
import flash.events.TimerEvent; | |
import starling.display.Sprite; | |
import starling.display.Image; | |
import starling.textures.Texture; | |
import starling.events.Event; | |
import nape.phys.Body; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package { | |
import starling.core.Starling; | |
import starling.display.Sprite; | |
import starling.display.Quad; | |
import starling.events.Event; | |
import starling.animation.Tween; | |
import starling.animation.Transitions; | |
public class Game extends Sprite |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Option Explicit | |
Public Sub Main() | |
Dim dataFileDirPath As String | |
Dim fileNameList As String | |
Dim tgtFileList As Collection | |
dataFileDirPath = ThisWorkbook.path & "\" & "datafiles" | |
Set tgtFileList = FNC_getDataFileList(dataFileDirPath, "*.xls") |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
source "https://rubygems.org" | |
gem "sinatra" | |
gem "haml" | |
gem "rsvg2" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
source "https://rubygems.org" | |
gem "ruby-audioinfo" |
OlderNewer