still poking at it
This commit is contained in:
parent
d8be4085b5
commit
52105472d0
2
.gitignore
vendored
2
.gitignore
vendored
@ -1,2 +1,4 @@
|
|||||||
*~
|
*~
|
||||||
*.n
|
*.n
|
||||||
|
*.swf
|
||||||
|
|
||||||
|
17
HubbleSiteDailyImageChumby.hx
Normal file
17
HubbleSiteDailyImageChumby.hx
Normal 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");
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user