add test for frames and bytes properties of empty movies
[swfdec.git] / test / trace / string-construct.as
blob0cfb37867c615adbf3c229cdcb12950cd4bda845
1 // makeswf -v 7 -s 200x150 -r 1 -o string-construct.swf string-construct.as
3 hi = String ("Hello World");
4 trace (hi);
5 trace (typeof (hi));
7 hi = new String ("Hello World");
8 trace (hi);
9 trace (typeof (hi));
11 hi = String (this);
12 trace (hi);
13 trace (typeof (hi));
15 hi = new String (this);
16 trace (hi);
17 trace (typeof (hi));
19 loadMovie ("FSCommand:quit", "");