288
|
1 <html>
|
|
2 <head>
|
352
|
3 <link rel="stylesheet" type="text/css" href="tree_component.css" />
|
|
4 <script language="javascript" src="css.js"></script>
|
288
|
5 <script language="javascript" src="jquery-1.3.1.js"></script>
|
|
6 <script language="javascript" src="jqXMLUtils.js"></script>
|
|
7 <script language="javascript" src="jqSOAPClient.js"></script>
|
352
|
8 <script language="javascript" src="tree_component.js"></script>
|
|
9 <script type="text/javascript" src="js/jquery-ui-1.7.custom.min.js"></script>
|
357
|
10 <script type="text/javascript" src="jquery.simplemodal-1.2.3.pack.js"></script>
|
|
11
|
352
|
12
|
288
|
13 <style type="text/css">
|
|
14 .normal {
|
|
15 background-color:write
|
|
16 }
|
|
17 .active {
|
|
18 background-color: yellow
|
|
19 }
|
|
20 a.button {
|
352
|
21 background: transparent url('bg_button_a.gif') no-repeat scroll top right;
|
|
22 color : #444 ;
|
288
|
23 display : block ;
|
|
24 float : left ;
|
|
25 font : normal 12px arial, sans-serif ;
|
|
26 height : 24px;
|
|
27 margin-right : 6px;
|
|
28 padding-right : 18px;
|
|
29 text-decoration : none ;
|
|
30 }
|
|
31 a.button span {
|
352
|
32 background : transparent url('bg_button_span.gif' ) no-repeat ;
|
288
|
33 display : block ;
|
352
|
34 line- height : 14px;
|
|
35 padding : 5px 0 5px 18px;
|
288
|
36 }
|
352
|
37 a.button:active {
|
|
38 background-position: bottom right;
|
|
39 color: blue;
|
|
40 outline: none; /* hide dotted outline in Firefox */
|
|
41 }
|
|
42
|
|
43 a.button:active span {
|
|
44 background-position: bottom left;
|
|
45 color: blue;
|
|
46 padding: 6px 0 4px 18px; /* push text down 1px */
|
|
47 }
|
288
|
48 </style>
|
|
49 </head>
|
|
50 <body>
|
|
51 <div id='frame' width=800 height=200>
|
|
52 </div>
|
|
53
|
|
54 <div id='btns'>
|
352
|
55 <br/>
|
288
|
56 <a class='button' href='#'> <span id='Jump' onClick='onButtonClick(this)'>Jump</span></a>
|
|
57 <a class='button' href='#'> <span id='InsertKey' onClick='onButtonClick(this)'>Insert</span></a>
|
|
58 <a class='button' href='#'> <span id='ExtendScene' onClick='onButtonClick(this)'>Extend</span></a>
|
|
59 <a class='button' href='#'> <span id='DeleteScene' onClick='onButtonClick(this)'>Delete</span></a>
|
|
60 <a class='button' href='#'> <span id='MakeSymbol' onClick='onButtonClick(this)'>Make Symbol</span></a>
|
|
61 <a class='button' href='#'> <span id='MakeButton' onClick='onButtonClick(this)'>make Button</span></a>
|
352
|
62 <a class='button' href='#'> <span id='EditAnimation' onClick='onButtonClick(this)'>Edit Animation</span></a>
|
|
63 <a class='button' href='#'> <span id='Test' onClick='onButtonClick(this)'>Test</span></a>
|
288
|
64 <br/>
|
|
65 <br/>
|
|
66 </div>
|
352
|
67 <table>
|
357
|
68 <tr><td width=200 height=700 valign=top><div id='filelist' valign=top></div></td><td width=700 height=700 valign=top> <div id='inkscape'></div></td></tr>
|
352
|
69 </table>
|
288
|
70 <script type="text/javascript" src="inkscape.js" >
|
|
71 </script>
|
|
72 </body>
|
|
73 </html>
|