- var obj = new Swiff('myMovie.swf', {
- id: 'myBeautifulMovie'
- width: 500,
- height: 400,
- params: {
- wmode: 'opaque',
- bgcolor: '#ff3300'
- },
- vars: {
- myVariable: myJsVar,
- myVariableString: 'hello'
- },
- events: {
- onLoad: myOnloadFunc
- }
- });
I create my swiff obj normally:
this work fine, but when I try to destroy the swift obj can't make this
I try
- obj.dispose();
but firebug sayd me : obj.dispose is not a function
but if I write this:
- alert(this.obj);
the alert print me [Object object]
help me please


