| 1. |
Do You Know Why Does Not Fscommand Work In Internet Explorer With Dynamic Publishing? |
|
Answer» A In order to make fscommand work in Internet Explorer Adobe recommends to ADD a block of VBScript to capture and forward the FSCommand calls to JavaScript. However VBScript doesn't work anymore when a Flash movie is INSERTED using innerHTML or outerHTML, as SWFObject's dynamic publishing method does. Fortunately you can also use JavaScript INSTEAD of VBScript to catch the fscommand calls. A small downside is that it USES proprietary attributes (which, again, wrapped in conditional comments will keep your code valid). E.g. the following block of VBScript code: <SCRIPT LANGUAGE=VBScript> A In order to make fscommand work in Internet Explorer Adobe recommends to add a block of VBScript to capture and forward the FSCommand calls to JavaScript. However VBScript doesn't work anymore when a Flash movie is inserted using innerHTML or outerHTML, as SWFObject's dynamic publishing method does. Fortunately you can also use JavaScript instead of VBScript to catch the fscommand calls. A small downside is that it uses proprietary attributes (which, again, wrapped in conditional comments will keep your code valid). E.g. the following block of VBScript code: <SCRIPT LANGUAGE=VBScript> |
|