Retired Document
Important: This sample code may not represent best practices for current development. The project may use deprecated symbols and illustrate technologies and techniques that are no longer recommended.
resources/QTJSimpleApplet.html
<html> |
<head> |
<title>QTSimpleApplet</title> |
<script src="AppletTag.js"> |
</script> |
</head> |
<body> |
<script language=JavaScript> |
// for v3 browsers you need to use the 1.0 JS Syntax for creating an object |
// myAppletTag = new Object(); myAppletTag.code = ... |
var myAppletTag = { |
archive:"QTSimpleApplet.jar", |
code:"QTSimpleApplet.class", |
width: "200", |
height: "240" |
}; |
AppletTag (myAppletTag, ["FILE", "Sample.mov"]); |
</script> |
<noscript> |
<applet code="QTSimpleApplet.class" archive="QTSimpleApplet.jar" width=200 height=240> |
<param name="file" value="Sample.mov"> |
</applet> |
</noscript> |
</body> |
</html> |
Copyright © 2006 Apple Computer, Inc. All Rights Reserved. Terms of Use | Privacy Policy | Updated: 2006-06-28