still poking at it

This commit is contained in:
John Bintz 2009-06-11 07:26:42 -04:00
parent d8be4085b5
commit 52105472d0
2 changed files with 19 additions and 0 deletions

2
.gitignore vendored
View File

@ -1,2 +1,4 @@
*~
*.n
*.swf

View File

@ -0,0 +1,17 @@
class HubbleSiteDailyImageChumby {
static public function main() {
var xml:Xml = Xml.createElement("gallery");
var myClip:flash.MovieClip = flash.Lib.current;
var t:flash.TextField = myClip.createTextField("test", 1, 0, 0, 200, 200);
flash.XMLRequest.load('http://hubblesite.org/gallery/album/daily_image.php',
xml,
onData
);
}
static private function onData(data : Null<String>):Void {
trace("made it here");
}
}