~jocave/checkbox/hybrid-amd-gpu-mods

« back to all changes in this revision

Viewing changes to checkbox-old/data/websites/SWF_Test.as

  • Committer: Zygmunt Krynicki
  • Date: 2013-05-29 07:50:30 UTC
  • mto: This revision was merged to the branch mainline in revision 2153.
  • Revision ID: zygmunt.krynicki@canonical.com-20130529075030-ngwz245hs2u3y6us
checkbox: move current checkbox code into checkbox-old

This patch cleans up the top-level directory of the project into dedicated
sub-project directories. One for checkbox-old (the current checkbox and all the
associated stuff), one for plainbox and another for checkbox-ng.

There are some associated changes, such as updating the 'source' mode of
checkbox provider in plainbox, and fixing paths in various test scripts that we
have.

Signed-off-by: Zygmunt Krynicki <zygmunt.krynicki@canonical.com>

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
}