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
release 0.5.4
[swfdec.git]
/
test
/
trace
/
fscommand.as
blob
8760bc5f9a6ff55ed246da01353ef5eb4e3e084e
1
// makeswf -v 7 -r 1 -o fscommand-7.swf fscommand.as
2
3
trace
(
"Testing loadMovie's handling of FSCommand"
);
4
5
loadMovie
(
"fscommand:quit"
,
"_level0"
);
6
7
function
quit
() {
8
trace
(
"Quit"
);
9
loadMovie
(
"FSCommand:quit"
,
""
);
10
}
11
12
setTimeout
(
quit
,
250
);