Menu

[r11]: / trunk / SWFInvestigator / src / lcEnumerator / LCWrapper.html  Maximize  Restore  History

Download this file

52 lines (47 with data), 1.4 kB

 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
<HTML>
<!-- &copy; 2009 Adobe Systems Incorporated. All rights reserved. -->
<HEAD>
<TITLE>LC Communicator</TITLE>
<SCRIPT TYPE="text/javascript">
<!--
var URL = window.location.href;
var splitURL = URL.split("?");
var urlVars = splitURL[1];
var info = urlVars.split("=");
// -->
</SCRIPT>
</HEAD>
<BODY>
<DIV>
<TABLE WIDTH="100%" BORDER="1">
<COLGROUP>
<COL WIDTH="80%"/>
<COL WIDTH="20%"/>
</COLGROUP>
<TR BORDER="1">
<TD><INPUT TYPE="TEXT" NAME="domain" ID="domain" style="width:100%"/></TD>
<TD><INPUT TYPE="submit" VALUE="Re-Map" onclick="rewriteDiv()"></TD>
</TR>
</TABLE>
</DIV>
<DIV ID="LCmapper">
</DIV>
<SCRIPT TYPE="text/javascript">
<!--
function writeLCEnumMap(domain) {
var div = document.getElementById("LCmapper");
var frameString = '<iframe id="LCEnum" height="100%" width="100%" scrolling="no" src="LCEnumerator.html" documentRoot="app-storage:/LCEnumerator/" sandboxRoot="' + domain + '"/>';
div.innerHTML = frameString;
//alert (frameString);
}
function rewriteDiv() {
var domain = document.getElementById("domain").value;
writeLCEnumMap(domain);
return (false);
}
document.getElementById("domain").value = info[1];
writeLCEnumMap(info[1]);
//-->
</SCRIPT>
</BODY>
</HTML>
Want the latest updates on software, tech news, and AI?
Get latest updates about software, tech news, and AI from SourceForge directly in your inbox once a month.