-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathscratch.html
37 lines (37 loc) · 1.36 KB
/
scratch.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
</head>
<body>
<script type="text/javascript" src="swfobject.js"></script>
<script type="text/javascript">
var fwidth = 483; // flash view width
var fheight = 387; // flash view height
installPlayer('Scratch.swf', 'PlayerOnly');
function installPlayer(swfName, swfID) {
var flashvars = {
project: 'scratchfiles.sb2',
autostart: 'false'
};
var params = {
allowScriptAccess: 'always',
allowFullScreen: 'true'
};
var attributes = {};
swfobject.embedSWF(swfName, swfID, fwidth, fheight, '10.0', false, flashvars, params, attributes);
}
</script>
<div id="PlayerOnly" style="margin: auto;">
<p style="margin: auto; padding: 2px; WIDTH: 270px; BACKGROUND-COLOR: #FFFFCC; text-align: center; font-size: 9pt; height: 90px; left:60px;">
<br />
Scris Robot ����˵������ Scratch�ļ� �С���<br />
<br />
��� Scratch�ļ�������Sb2�ļ��� �ܾ�δ�ܼ���,<br />
<br />
��ȷ���Ƿ��Ѱ�װ<a href="http://get.adobe.com/flashplayer/">Flash���</a>��汾�Ƿ�̫�ͣ�</p>
</div>
<!--Play with Flash Player ../Plugins/scratch/ -->
</body>
</html>