• Das Erstellen neuer Accounts wurde ausgesetzt. Bei berechtigtem Interesse bitte Kontaktaufnahme über die üblichen Wege. Beste Grüße der Admin

Replikatoren verstehen JavaScript

Baasel

New member
Für alle Stargate Fans und javascript Programmierer....

In dem Film, Stargate - the ark of truth, wird ein Ausschnitt gezeigt, wie ein Coeschnipsel gesucht wird um die Replikatoren zu deaktivieren...



und hier mal der Code der zu sehen ist...
[Quelle: Code der Replikatoren ]

Code:
   1. <script language="JavaScript"> 
   2. function go() { 
   3.     var curOption = document.theForm.region.options[document.theForm.region.selectedIndex]; 
   4.     if (curOption.value) { 
   5.         if (curOption.value != "default") { 
   6.             window.location.href = curOption.value; 
   7.         } 
   8.     } 
   9. } 
  10.         function fn_tour2(ln, seg, client, sessionid)   
  11.         {   
  12.             x = window.screen.width;   
  13.             y = window.screen.height;   
  14.             w = 800; 
  15.             h = 520; 
  16.             moveX=(x/2)-w/2;   
  17.             moveY=(y/2)-h/2;   
  18.             window.open('/oec/avatar/estatements/welcome_00.html?ln=' + ln + '&seg=' + seg + '&client=' + client + '&sessionid=' + sessionid,'RCB','width=' + w + ',height=' + h + ',status=0,left='+ moveX +',top=' + moveY + ',screenX=' + moveX + ',screenY=' + moveY + ',scrollbars=no' + ',resizable=no'); 
  19.         }   
  20.         function fn_tour3(ln, seg, client, sessionid)   
  21.         {   
  22.             x = window.screen.width;   
  23.             y = window.screen.height;   
  24.             w = 805;   
  25.             h = 620;   
  26.             moveX=(x/2)-w/2;   
  27.             moveY=(y/2)-h/2;   
  28.             window.open('/oec/avatar/html/01_PB/1_flash_paybill.htm?ln=' + ln + '&seg=' + seg + '&client=' + client + '&sessionid=' + sessionid,'RCB','width=' + w + ',height=' + h + ',status=0,left='+ moveX +',top=' + moveY + ',screenX=' + moveX + ',screenY=' + moveY + ',scrollbars=yes' + ',resizable=yes'); 
  29.         }     
  30.   
  31. </script>
 
Zurück
Oben