~ubuntu-branches/ubuntu/jaunty/swfdec0.8/jaunty

« back to all changes in this revision

Viewing changes to test/trace/color-properties.as

  • Committer: Package Import Robot
  • Author(s): Didier Roche
  • Date: 2008-10-10 19:15:24 UTC
  • Revision ID: package-import@ubuntu.com-20081010191524-5z85qiky1d4bvgfa
Tags: upstream-0.8.0
ImportĀ upstreamĀ versionĀ 0.8.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
// makeswf -v 7 -s 200x150 -r 1 -o color-properties-7.swf color-properties.as
 
2
 
 
3
#include "trace_properties.as"
 
4
 
 
5
var a = new Color();
 
6
var b = new Color(this);
 
7
var c = new Color("moi");
 
8
 
 
9
trace_properties (_global.Color, "_global", "Color");
 
10
trace_properties (a, "local", "a");
 
11
trace_properties (b, "local", "b");
 
12
trace_properties (c, "local", "c");
 
13
 
 
14
loadMovie ("FSCommand:quit", "");