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