Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/orangesuzuki/Gast
Google App Script utilities for ActionScript 3.0
https://github.com/orangesuzuki/Gast
Last synced: about 2 months ago
JSON representation
Google App Script utilities for ActionScript 3.0
- Host: GitHub
- URL: https://github.com/orangesuzuki/Gast
- Owner: orangesuzuki
- Created: 2015-06-22T13:28:15.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2015-06-28T20:24:40.000Z (over 9 years ago)
- Last Synced: 2024-08-04T05:04:32.634Z (5 months ago)
- Language: ActionScript
- Homepage:
- Size: 332 KB
- Stars: 3
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- awesome-actionscript-sorted - Gast - Google App Script utilities for ActionScript 3.0 (Utilities / Other Utilities)
README
# Gast
Google SpreadSheet tools for ActionScript 3.0.
You can fetch or append the data from swf to your spreadsheet.### *Features
* fetch the data from your sheet.
* write some data to your sheet.
* auto add some user information like a display size, Browser, OS, Memory size, etc.### *Usage
// 1. Setup
Gast.initialize( sheetUrl, sheetName );
// 2. Append the data
Gast.send(new GastData(
{
game0: Math.random() * 100000,
game1: "abc",
game2: JSON.stringify({param0: 1, param1: 100, param2: -123, param3: 0.568}),
stageW: stage.stageWidth,
stageH: stage.stageHeight
}
))
.done(function(result:String):void {
log(result);
})
.fail(function(result:String):void {
log(result);
});
// 3. Fetch the data
Gast.fetch(row)
.done(function(result:String):void {
log(result);
})
.fail(function(result:String):void {
log(result);
});