~ubuntu-branches/ubuntu/oneiric/checkbox/oneiric-updates

« back to all changes in this revision

Viewing changes to data/websites/SWF_Test.as

  • Committer: Bazaar Package Importer
  • Author(s): Marc Tardif
  • Date: 2010-08-13 16:23:16 UTC
  • Revision ID: james.westby@ubuntu.com-20100813162316-vuvxkco2tc8kxfgp
Tags: 0.10.2
New upstream release (LP: #617583):
* Fixed sleep_test to check the connection if using network-manager.
* Fixed reporting bugs against alsa-base and xorg (LP: #607214)
* Fixed apport dialog no longer appearing (LP: #607217)
* Reduced data file size for the desktop image.
* Updated report to be more pretty.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
// Run: mtasc -swf SWF_Test.swf -main -header 640:480:20 SWF_Test.as
 
2
class Test {
 
3
 
 
4
    static var app : Test;
 
5
 
 
6
    function Test() {
 
7
        _root.createTextField("tf",0,0,0,640,480);
 
8
        _root.tf.text = "Test";
 
9
    }
 
10
 
 
11
    static function main(mc) {
 
12
        app = new Test();
 
13
    }
 
14
}