repo.or.cz
/
swfdec.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
add test for frames and bytes properties of empty movies
[swfdec.git]
/
test
/
trace
/
string-construct.as
blob
0cfb37867c615adbf3c229cdcb12950cd4bda845
1
// makeswf -v 7 -s 200x150 -r 1 -o string-construct.swf string-construct.as
2
3
hi
=
String
(
"Hello World"
);
4
trace
(
hi
);
5
trace
(
typeof
(
hi
));
6
7
hi
=
new
String
(
"Hello World"
);
8
trace
(
hi
);
9
trace
(
typeof
(
hi
));
10
11
hi
=
String
(
this
);
12
trace
(
hi
);
13
trace
(
typeof
(
hi
));
14
15
hi
=
new
String
(
this
);
16
trace
(
hi
);
17
trace
(
typeof
(
hi
));
18
19
loadMovie
(
"FSCommand:quit"
,
""
);