Leaderboard
Popular Content
Showing content with the highest reputation on 10/02/2013 in all areas
-
how to easily get the subnet mask?
Gianni reacted to mrflibblehat for a topic
Or this way. Local $vObjWMI = ObjGet("winmgmts:\\" & @ComputerName & "\root\cimv2") $vObjItems = $vObjWMI.ExecQuery('SELECT * FROM Win32_NetworkAdapterConfiguration WHERE IPEnabled=True') If IsObj($vObjItems) Then For $vObjItem In $vObjItems For $i = 0 To UBound($vObjItem.IPAddress) - 1 If $vObjItem.IPAddress($i) == @IPAddress1 Then ConsoleWrite("Subnet Mask: " & $vObjItem.IPSubnet($i)) EndIf Next Next EndIf1 point -
$theIP1 = @IPAddress1 $subnetIP = _GetSubnetBasedOnIP($theIP1) if NOT @error then MsgBox(0, 'Success', 'For IP: ' & $theIP1 & @CRLF & 'Subnet is: ' & $subnetIP) Else Switch @error Case 1 MsgBox(0, 'Error 1', 'Input IP [' & $theIP1 & '] is not a valid IP address.') Case 2 MsgBox(0, 'Error 2', 'Input IP [' & $theIP1 & '] was not found on this computer.') Case 3 MsgBox(0, 'Error 3', 'WMI is not accessible.') Case Else MsgBox(0, 'Error X', 'Unknown error occured for the input IP [' & $theIP1 & '].') EndSwitch EndIf Func _GetSubnetBasedOnIP($theIP) if NOT _isIPaddr($theIP) Then Return SetError(1, 0, 0) Const $wbemFlagReturnImmediately = 0x10 Const $wbemFlagForwardOnly = 0x20 Local $colNICs="", $NIC, $strQuery, $objWMIService, $retVal = "" $strQuery = "SELECT * FROM Win32_NetworkAdapterConfiguration" $objWMIService = ObjGet("winmgmts:\\.\root\CIMV2") If @error then Return SetError(3, 0, 0) $colNICs = $objWMIService.ExecQuery($strQuery, "WQL", $wbemFlagReturnImmediately + $wbemFlagForwardOnly) If IsObj($colNICs) Then For $NIC in $colNICs if _isIPaddr($NIC.IPAddress(0)) then if $NIC.IPAddress(0) = $theIP Then if _isIPaddr($NIC.IPSubnet(0)) then $retVal = $NIC.IPSubnet(0) ExitLoop EndIf EndIf EndIf Next EndIf if $retVal = "" Then Return SetError(2, 0, 0) Return $retVal EndFunc Func _isIPaddr($sIPAddr) If NOT StringRegExp($sIPAddr, "^((25[0-5]|2[0-4]\d|[01]?\d?\d)\.){3}(25[0-5]|2[0-4]\d|[01]?\d?\d)$") Then Return SetError(1, 0, False) Return True EndFunc1 point
-
So the app adds a exe nag or something to the registry. Perhaps a logoff script set by Group Policy could remove the registry entry that is added and thus you may not need to treat the symptom. This is a tidy up of your script. I found too many variables used to compare to integers that was confusing to evaluate any issue. A WinWait for the windows before moving, clicking etc. was added. I am amazed that the instance of the buttons go up to 110. You may want to check that. See if it does any better. Const $MB_OK = 0 Const $Cmy_MiscAppPath = "C:\Program Files\Misc\MiscAppRun.exe" ;~ Const $Cmy_MiscAppDPath = "C:\Program Files\Misc\MiscAppD.exe" ; not used ? Const $Cmy_MiscAppName = "MiscApp" Const $Cmy_MiscAppProcName = "MiscAppRun.exe" ; ; ; --- Entry Point - Begin ; AutoItSetOption("WinTitleMatchMode", 1) ; 1 = Matches partial titles from the start (Default value) AutoItSetOption("MouseCoordMode", 0) ; 0 = Use coordinates relative to Window ; ; First we need to see if MiscApp's got a current task run set, so we read the registry... ; If RegRead("HKCU\Software\Microsoft\Windows\CurrentVersion\Run", "MiscAppD") == "" Then Exit 1 ; There's nothing to do, so exit EndIf ; ; First check to see if MiscApp is already active. If not, launch it. ; If Not ProcessExists($Cmy_MiscAppProcName) Then ; If MiscAppRun.exe is NOT already active, then... ; Launch MiscAppRun.exe If Not Run('"' & $Cmy_MiscAppPath & '"') Or @error Then MsgBox($MB_OK, "MiscApp Windows Activation Failure", "MiscApp Activation Error (1) - Error Code = " & @error) Exit -1 EndIf EndIf ; ; If we've reached here, then the target app is SUPPOSED to be an active task, so we need to cancel it. ; ; First, activate MiscApp's main window If WinWait($Cmy_MiscAppName, "", 30) Then If Not WinActivate($Cmy_MiscAppName) Then MsgBox($MB_OK, "MiscApp Tool Exiting", "MiscApp Window WinActivation Failed (3)") Exit -1 EndIf Sleep(200) ; ; Now, resize window so that we know exactly where MiscApp's non-standard controls are relative to the window WinMove($Cmy_MiscAppName, "", Default, Default, 1040, 841) Sleep(500) ; ; First click on "Full Job" Task button near top right of MiscApp page to activate the window portion we need MouseClick("left", 990, 104) Sleep(500) ; ; Then click on "Full Job" row in Task List MouseClick("left", 405, 710) Sleep(500) ; ; Now click the appropriate pseudo-button ControlClick($Cmy_MiscAppName, "Deactivate Task", "[CLASS:Button; INSTANCE:110]") Sleep(500) Else MsgBox(0x30, "MiscApp Tool Error", "Window """ & $Cmy_MiscAppName & """ does not exist") EndIf ; Finally, exit MiscApp process If ProcessExists($Cmy_MiscAppProcName) Then If Not ProcessClose($Cmy_MiscAppProcName) Then MsgBox($MB_OK, "MiscApp Tool Error", "MiscApp Process Closing Failed with error: " & @error) Exit EndIf Else MsgBox($MB_OK, "MiscApp Tool Error", "MiscApp Process Doesn't Exist") EndIf ; ; Wait for close, but no more than 30 seconds If Not ProcessWaitClose($Cmy_MiscAppProcName, 30) Then MsgBox($MB_OK, "MiscApp Tool Error", "MiscApp Process Wait Failed with error: " & @error & ' ' & @extended) Exit EndIf ; ;--------------- Script succeeded with no errors... ; MsgBox($MB_OK, "MiscApp Tool Exiting", "MiscApp Auto-OFF Successful - Exiting") Exit Your Exit 1 to finish seemed strange so I omitted the 1. The Exit codes could use a review. Perhaps your not seeing error reports as all your MsgBoxes are $MB_OK (in humor).1 point
-
Run Program in a Minimized Window; with MouseMove also?
guinness reacted to Astormooke for a topic
When the mouse clicks and drags, what is it dragging on? Specifics only make it easier for us to help you1 point -
IE_AU3 HELP!
Alemosaqes reacted to lilshortwun for a topic
Hi, I am new at using ie.au3 and need some help. I looked in the source and all but couldn't find out how to login then click on the forum button at the top. Heres the source; the websites warrock.net <!doctype html public "-//w3c//dtd xhtml 1.0 transitional//en" "http://www.w3.org/tr/xhtml1/dtd/xhtml1-transitional.dtd"> <html> <head> <title>Official War Rock Website -- Home</title> <meta name="keywords" content="" /> <meta name="description" content="" /> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"> <noscript><meta http-equiv="refresh" content="0;url=nojs.php"></noscript> <link rel="stylesheet" href="_inc/styles.css" type="text/css" media="all" title="styles" /> <link rel="stylesheet" href="_inc/modal-message.css" type="text/css"> <script defer type="text/javascript" src="_inc/pngfix.js"></script> <script language="text/javascript" type="text/javascript" src="_inc/ajax.js"></script> <script language="text/javascript" type="text/javascript" src="_inc/modal-message.js"></script> <script language="text/javascript" type="text/javascript" src="_inc/ajax-dynamic-content.js"></script> <script language="text/javascript" type="text/javascript" src="_inc/scripts.js"></script> <script id="PLHIMScript" language="Javascript" src="_inc/PLHIM.js">/* PLHIMMenu script */</script> <script type="text/javascript"> <!-- window.name='main'; function toggle(id) { var d = document.getElementById(id); if (d) { if (d.className == 'closed') { d.className = "open"; } else { d.className = "closed"; } } } function toggleNav() { openMenus = getCookie('warnav'); if (openMenus != null) { for (var i = 0; i<=10; i++) { var str = "navmenu" + i; toggle(openMenus.match(str)); } //delCookie('warnav'); } else { toggle(''); } } <!-- function menuPersist() { var whatsOpen=new Array() for (var i = 0; i<=10; i++) { if (document.getElementById('navmenu'+i)) { if (document.getElementById('navmenu'+i).className=='open') { whatsOpen[i]='navmenu'+i; } } } setCookie('warnav',whatsOpen,.04) } //--> <!-- function getCookie(NameOfCookie) { if (document.cookie.length > 0) { begin = document.cookie.indexOf(NameOfCookie+"="); if (begin != -1) { begin += NameOfCookie.length+1; end = document.cookie.indexOf(";", begin); if (end == -1) end = document.cookie.length; return unescape(document.cookie.substring(begin, end)); } } return null; } function setCookie(NameOfCookie, value, expiredays) { var ExpireDate = new Date (); ExpireDate.setTime(ExpireDate.getTime() + (expiredays * 24 * 3600 * 1000)); document.cookie = NameOfCookie + "=" + escape(value) + ((expiredays == null) ? "" : "; expires=" + ExpireDate.toGMTString()); } function delCookie(NameOfCookie) { if (getCookie(NameOfCookie)) { document.cookie = NameOfCookie + "=" + "; expires=Thu, 01-Jan-70 00:00:01 GMT"; } } function addLoadEvent(func) { var oldonload = window.onload; if (typeof window.onload != 'function') { window.onload = func; } else { window.onload = function() { oldonload(); func(); } } } addLoadEvent(toggleNav); var url=location.href; if(url.match("basic_training")) { addLoadEvent(PLHIM_onload); } //--> </script> </head> <body leftmargin="0" topmargin="0" marginwidth="0" marginheight="0"> <div id="container"> <div id="header"> <div id="hdr"> <div id="logo" style="cursor:pointer;" onclick="window.location=('index.php');"><script type="text/javascript">showflash('logo','200','103');</script></div> <div id="header_top"></div> <div id="header_mid"> <div style="position:relative;"><script type="text/javascript">showflash('interface_top','590','89');</script></div> <div style="position:relative;top:-89px;background-image:url(_img/interface_top.gif);width:590px;height:89px;"> <div style="position:relative;top:68px;"> <div style="position:relative;float:left;left:150px;color:#cccccc;cursor:pointer;" onclick="window.location='index.php';"><strong>HOME</strong></div> <div style="position:relative;float:left;left:212px;color:#cccccc;cursor:pointer;" onclick="window.location='http://ops.warrock.net';"><strong>COMPETITIVE</strong></div> <div style="position:relative;float:left;left:275px;color:#cccccc;cursor:pointer;" onclick="window.location='http://forum.warrock.net';"><strong>FORUM</strong></div> </div> </div> </div> <div id="free2play_logo"></div> </div> <div id="header_bottom"></div> </div> <div id="interface_panel"> <div id="leftpanel"> <div id="nav_panel_left"></div> <div id="nav_panel"> <div id="login_bck"> <div id="login_form"> <form action="https://www.warrock.net/login_process.php" method="post" name="login_frm" id="login_frm" onsubmit="java script:return ValidateLogin()"> <div style="position:relative;" class="small"> Username:<br /> <input type="text" name="Username" style="width:139px;margin-bottom:3px;" maxlength="18" class="field" autocomplete="off" /><br /> Password:<br /> <input type="password" name="Password" style="width:139px;margin-bottom:3px;" maxlength="18" class="field" autocomplete="off" /> </div> <div style="float:left;position:relative;top:0px;border:0px;width:80px;"><a href="register.php"><img src="_img/button_registernow_en.gif" width="80" height="15" alt="Register Now" /></a></div> <div style="float:left;position:relative;left:3px;"><input type="image" src="_img/button_submit_en.gif" value="Submit" /></div> </form> </div> </div> <div style="position:relative;float:left;top:-7px;"> <dl id="menu" style="width:168px;"> <dt onclick="java script:toggle('navmenu1');" style="background-image:url(_img/nav_btn.gif);"><div id="nav_btn_container"><b>FEATURES</b></div></dt> <dd id="navmenu1" class="closed"> <ul> <li class="navmenu" onclick="window.location='features.php';menuPersist();" style="cursor:pointer;padding:7px 9px 5px 10px;">Features</li> <li class="navmenu" onclick="window.location='premium.php';menuPersist();" style="cursor:pointer;padding:7px 9px 5px 10px;">Premium</li> <li class="navmenu" onclick="window.location='story.php';menuPersist();" style="cursor:pointer;padding:7px 9px 5px 10px;">Story</li> </ul> </dd> <dt onclick="java script:toggle('navmenu2');" style="background-image:url(_img/nav_btn.gif);"><div id="nav_btn_container"><b>FIELD MANUAL</b></div></dt> <dd id="navmenu2" class="closed"> <ul> <li class="submenu_start" onclick="window.location='basic_training.php';menuPersist();" style="cursor:pointer;padding:4px 0px 5px 30px;">Basic Training</li> <li class="submenu_tail" onclick="window.location='branches.php';menuPersist();" style="cursor:pointer;padding:3px 0px 5px 30px;">Branches of Service</li> <li class="submenu_tail" onclick="window.location='armory.php';menuPersist();" style="cursor:pointer;padding:3px 0px 5px 30px;">Armory & Equipment</li> <li class="submenu_tail" onclick="window.location='px.php';menuPersist();" style="cursor:pointer;padding:3px 0px 5px 30px;">Px</li> <li class="submenu_tail" onclick="window.location='vehicles.php';menuPersist();" style="cursor:pointer;padding:3px 0px 5px 30px;">Vehicles</li> <li class="submenu_tail" onclick="window.location='missions.php';menuPersist();" style="cursor:pointer;padding:3px 0px 5px 30px;">Missions</li> </ul> </ul> </dd> <dt onclick="java script:toggle('navmenu3');" style="background-image:url(_img/nav_btn.gif);"><div id="nav_btn_container"><b>DOWNLOADS</b></div></dt> <dd id="navmenu3" class="closed"> <ul> <li class="navmenu" onclick="window.location='download.php';menuPersist();" style="cursor:pointer;padding:7px 9px 5px 10px;">Client</li> <li class="navmenu" onclick="window.location='screenshots.php';menuPersist();" style="cursor:pointer;padding:7px 9px 5px 10px;">Screenshots</li> <li class="navmenu" onclick="window.location='concept_art.php';menuPersist();" style="cursor:pointer;padding:7px 9px 5px 10px;">Concept Art</li> <li class="navmenu" onclick="window.location='movies.php';menuPersist();" style="cursor:pointer;padding:7px 9px 5px 10px;">Movies</li> <li class="navmenu" onclick="window.location='wallpapers.php';menuPersist();" style="cursor:pointer;padding:7px 9px 5px 10px;">Wallpapers</li> </ul> </dd> <dt onclick="java script:toggle('navmenu4');" style="background-image:url(_img/nav_btn.gif);"><div id="nav_btn_container"><b>COMMUNITY</b></div></dt> <dd id="navmenu4" class="closed"> <ul> <li class="navmenu" onclick="window.location='http://forum.warrock.net/';menuPersist();" style="cursor:pointer;padding:7px 9px 5px 10px;">Forums</li> <li class="navmenu" onclick="window.location='fan_media.php';menuPersist();" style="cursor:pointer;padding:7px 9px 5px 10px;">Fan Media</li> <li class="navmenu" onclick="window.location='community_articles.php';menuPersist();" style="cursor:pointer;padding:7px 9px 5px 10px;">Community Articles</li> <li class="navmenu" onclick="window.location='http://ops.warrock.net';menuPersist();" style="cursor:pointer;padding:7px 9px 5px 10px;">Competitive</li> </ul> </dd> <dt onclick="java script:toggle('navmenu5');" style="background-image:url(_img/nav_btn.gif);"><div id="nav_btn_container"><b>NEWS</b></div></dt> <dd id="navmenu5" class="closed"> <ul> <li class="navmenu" onclick="window.location='news.php?ntitle=1';menuPersist();" style="cursor:pointer;padding:7px 9px 5px 10px;">Announcements</li> <li class="navmenu" onclick="window.location='news.php?ntitle=2';menuPersist();" style="cursor:pointer;padding:7px 9px 5px 10px;">Events</li> <li class="navmenu" onclick="window.location='news.php?ntitle=3';menuPersist();" style="cursor:pointer;padding:7px 9px 5px 10px;">Game Updates</li> <li class="navmenu" onclick="window.location='press.php';menuPersist();" style="cursor:pointer;padding:7px 9px 5px 10px;">Press</li> </ul> </dd> <dt onclick="java script:toggle('navmenu6');" style="background-image:url(_img/nav_btn.gif);"><div id="nav_btn_container"><b>SUPPORT</b></div></dt> <dd id="navmenu6" class="closed"> <ul> <li class="navmenu" onclick="window.location='faqs.php';menuPersist();" style="cursor:pointer;padding:7px 9px 5px 10px;">FAQs</li> <li class="navmenu" onclick="window.location='policies.php';menuPersist();" style="cursor:pointer;padding:7px 9px 5px 10px;">Policies</li> <li class="navmenu" onclick="window.location='forgot_login.php';menuPersist();" style="cursor:pointer;padding:7px 9px 5px 10px;">Forgot Login?</li> <li class="navmenu" onclick="window.location='box_issues.php';menuPersist();" style="cursor:pointer;padding:7px 9px 5px 10px;">Box Issues</li> <li class="navmenu" onclick="window.location='tech_support.php';menuPersist();" style="cursor:pointer;padding:7px 9px 5px 10px;">Tech Support</li> <li class="navmenu" onclick="window.location='submit_ticket.php';menuPersist();" style="cursor:pointer;padding:7px 9px 5px 10px;">Submit Ticket</li> </ul> </dd> </dl> <div style="position:relative;top:-10px;"><img src="_img/nav_endcap.jpg" width="168" alt="" border="0" /></div> </div> </div> <div id="nav_panel_right"></div> </div> <div id="content"><span style="padding-left:2px;cursor:hand;"><script type="text/javascript">showflash('home','586','270');</script></span> <table id="content_table" width="586" height="216" border="0" cellpadding="0" cellspacing="0" style="margin:0px auto;"><tr> <td width="586" height="17" colspan="5" background="_img/content_01.gif"> </td> </tr> <tr> <td width="217" height="28" colspan="2" rowspan="2" background="_img/content_02.gif" class="title">News</td> <td colspan="3" width="369" height="1" background="_img/content_03.gif"> </td> </tr> <tr> <td height="27" width="369" colspan="3" background="_img/content_04.gif"> </td> </tr> <tr> <td colspan="5" height="4" width="586" background="_img/content_05.gif"> </td> </tr> <tr> <td background="_img/content_09.gif" valign="top"> <img src="_img/content_06.gif" height="142" width="18" align="top" /></td> <td width="551" colspan="3" bgcolor="#323232" valign="top" style="line-height:20px;"><table width="100%" cellpadding="2" cellspacing="2" border="0"> <tr><td colspan="2" height="10"></td></tr> <tr><td colspan="2" height="2" bgcolor="#222222"></td></tr> <tr bgcolor="#444444"><td nowrap> [06-15-2007] </td><td width="100%"> <a href="news.php?id=95&ntitle=1">Server Online</a> </td></tr><tr bgcolor="#333333"><td nowrap> [06-13-2007] </td><td width="100%"> <a href="news.php?id=94&ntitle=1">Click & Buy Downtime UPDATED</a> </td></tr><tr bgcolor="#444444"><td nowrap> [06-08-2007] </td><td width="100%"> <a href="news.php?id=93&ntitle=1">Important Customer Information</a> </td></tr><tr bgcolor="#333333"><td nowrap> [06-07-2007] </td><td width="100%"> <a href="news.php?id=92&ntitle=1">Servers Online</a> </td></tr><tr bgcolor="#444444"><td nowrap> [06-06-2007] </td><td width="100%"> <a href="news.php?id=91&ntitle=1">MP7/Berettas Promo Update</a> </td></tr><tr><td colspan="2" height="2" bgcolor="#222222"></td></tr> </table> </td> <td background="_img/content_12.gif" valign="top"> <img src="_img/content_08.gif" height="142" width="17" /></td> </tr> <tr> <td height="8" width="18" background="_img/content_09.gif"> </td> <td colspan="2" height="8" width="550" background="_img/content_10.gif"> </td> <td height="8" width="1" background="_img/content_11.gif"> </td> <td height="8" width="17" background="_img/content_12.gif"> </td> </tr> <tr> <td colspan="5" height="16" width="586" background="_img/content_13.gif"> </td> </tr> <tr> <td height="1" width="18" background="_img/spacer.gif"> </td> <td height="1" width="199" background="_img/spacer.gif"> </td> <td height="1" width="351" background="_img/spacer.gif"> </td> <td height="1" width="1" background="_img/spacer.gif"> </td> <td height="1" width="17" background="_img/spacer.gif"> </td> </tr></table> <table id="content_table" width="586" height="216" border="0" cellpadding="0" cellspacing="0" style="margin:0px auto;"><tr> <td width="586" height="17" colspan="5" background="_img/content_01.gif"> </td> </tr> <tr> <td width="217" height="28" colspan="2" rowspan="2" background="_img/content_02.gif" class="title">Server Status</td> <td colspan="3" width="369" height="1" background="_img/content_03.gif"> </td> </tr> <tr> <td height="27" width="369" colspan="3" background="_img/content_04.gif"> </td> </tr> <tr> <td colspan="5" height="4" width="586" background="_img/content_05.gif"> </td> </tr> <tr> <td background="_img/content_09.gif" valign="top"> <img src="_img/content_06.gif" height="142" width="18" align="top" /></td> <td width="551" colspan="3" bgcolor="#323232" valign="top" style="line-height:20px;"><br/> Scheduled Maintenance: Wed. 3-6pm PST <br/></br/> <table width="100%" cellpadding="1" cellspacing="2" border="0"> <tr><td colspan="2" height="8"></td></tr> <tr> <td colspan="2" bgcolor="#222222" nowrap> <strong>US_West_CA</strong> </td> <td width="100%" bgcolor="#444444"> <table cellpadding="0" cellspacing="2" border="0"> <tr> <td> Traffic: </td> <td> <table cellpadding="0" cellspacing="2" border="0"> <tr> <td bgcolor="#00ff00" width="2" height="8"></td> <td bgcolor="#00ff00" width="2" height="8"></td> <td bgcolor="#00ff00" width="2" height="8"></td> <td bgcolor="#00ff00" width="2" height="8"></td> <td bgcolor="#00ff00" width="2" height="8"></td> <td bgcolor="#00ff00" width="2" height="8"></td> <td bgcolor="#00ff00" width="2" height="8"></td> <td bgcolor="#00ff00" width="2" height="8"></td> <td bgcolor="#00ff00" width="2" height="8"></td> <td bgcolor="#00ff00" width="2" height="8"></td> <td bgcolor="#00ff00" width="2" height="8"></td> <td bgcolor="#00ff00" width="2" height="8"></td> <td bgcolor="#00ff00" width="2" height="8"></td> <td bgcolor="#00ff00" width="2" height="8"></td> </tr> </table> </td> </tr> </table> </td> </tr> <tr><td colspan="2" height="8"></td></tr> <tr> <td colspan="2" bgcolor="#222222" nowrap> <strong>US_East_NY</strong> </td> <td width="100%" bgcolor="#444444"> <table cellpadding="0" cellspacing="2" border="0"> <tr> <td> Traffic: </td> <td> <table cellpadding="0" cellspacing="2" border="0"> <tr> <td bgcolor="#00ff00" width="2" height="8"></td> <td bgcolor="#00ff00" width="2" height="8"></td> <td bgcolor="#00ff00" width="2" height="8"></td> <td bgcolor="#00ff00" width="2" height="8"></td> <td bgcolor="#00ff00" width="2" height="8"></td> <td bgcolor="#00ff00" width="2" height="8"></td> <td bgcolor="#00ff00" width="2" height="8"></td> <td bgcolor="#00ff00" width="2" height="8"></td> <td bgcolor="#00ff00" width="2" height="8"></td> <td bgcolor="#00ff00" width="2" height="8"></td> <td bgcolor="#00ff00" width="2" height="8"></td> <td bgcolor="#00ff00" width="2" height="8"></td> <td bgcolor="#00ff00" width="2" height="8"></td> <td bgcolor="#00ff00" width="2" height="8"></td> <td bgcolor="#00ff00" width="2" height="8"></td> <td bgcolor="#00ff00" width="2" height="8"></td> <td bgcolor="#00ff00" width="2" height="8"></td> <td bgcolor="#00ff00" width="2" height="8"></td> <td bgcolor="#00ff00" width="2" height="8"></td> </tr> </table> </td> </tr> </table> </td> </tr> <tr><td colspan="2" height="8"></td></tr> <tr> <td colspan="2" bgcolor="#222222" nowrap> <strong>Germany-FFT</strong> </td> <td width="100%" bgcolor="#444444"> <table cellpadding="0" cellspacing="2" border="0"> <tr> <td> Traffic: </td> <td> <table cellpadding="0" cellspacing="2" border="0"> <tr> <td bgcolor="#00ff00" width="2" height="8"></td> <td bgcolor="#00ff00" width="2" height="8"></td> <td bgcolor="#00ff00" width="2" height="8"></td> <td bgcolor="#00ff00" width="2" height="8"></td> <td bgcolor="#00ff00" width="2" height="8"></td> <td bgcolor="#00ff00" width="2" height="8"></td> <td bgcolor="#00ff00" width="2" height="8"></td> <td bgcolor="#00ff00" width="2" height="8"></td> <td bgcolor="#00ff00" width="2" height="8"></td> <td bgcolor="#00ff00" width="2" height="8"></td> <td bgcolor="#00ff00" width="2" height="8"></td> <td bgcolor="#00ff00" width="2" height="8"></td> <td bgcolor="#00ff00" width="2" height="8"></td> <td bgcolor="#00ff00" width="2" height="8"></td> <td bgcolor="#00ff00" width="2" height="8"></td> <td bgcolor="#00ff00" width="2" height="8"></td> <td bgcolor="#00ff00" width="2" height="8"></td> <td bgcolor="#00ff00" width="2" height="8"></td> <td bgcolor="#00ff00" width="2" height="8"></td> <td bgcolor="#00ff00" width="2" height="8"></td> <td bgcolor="#00ff00" width="2" height="8"></td> <td bgcolor="#00ff00" width="2" height="8"></td> <td bgcolor="#00ff00" width="2" height="8"></td> <td bgcolor="#00ff00" width="2" height="8"></td> <td bgcolor="#ffff00" width="2" height="8"></td> <td bgcolor="#ffff00" width="2" height="8"></td> <td bgcolor="#ffff00" width="2" height="8"></td> <td bgcolor="#ffff00" width="2" height="8"></td> </tr> </table> </td> </tr> </table> </td> </tr> <tr><td colspan="2" height="8"></td></tr> <tr> <td colspan="2" bgcolor="#222222" nowrap> <strong>London-UK</strong> </td> <td width="100%" bgcolor="#444444"> <table cellpadding="0" cellspacing="2" border="0"> <tr> <td> Traffic: </td> <td> <table cellpadding="0" cellspacing="2" border="0"> <tr> <td bgcolor="#00ff00" width="2" height="8"></td> <td bgcolor="#00ff00" width="2" height="8"></td> <td bgcolor="#00ff00" width="2" height="8"></td> <td bgcolor="#00ff00" width="2" height="8"></td> <td bgcolor="#00ff00" width="2" height="8"></td> <td bgcolor="#00ff00" width="2" height="8"></td> <td bgcolor="#00ff00" width="2" height="8"></td> <td bgcolor="#00ff00" width="2" height="8"></td> <td bgcolor="#00ff00" width="2" height="8"></td> <td bgcolor="#00ff00" width="2" height="8"></td> <td bgcolor="#00ff00" width="2" height="8"></td> <td bgcolor="#00ff00" width="2" height="8"></td> <td bgcolor="#00ff00" width="2" height="8"></td> <td bgcolor="#00ff00" width="2" height="8"></td> <td bgcolor="#00ff00" width="2" height="8"></td> <td bgcolor="#00ff00" width="2" height="8"></td> <td bgcolor="#00ff00" width="2" height="8"></td> <td bgcolor="#00ff00" width="2" height="8"></td> <td bgcolor="#00ff00" width="2" height="8"></td> <td bgcolor="#00ff00" width="2" height="8"></td> <td bgcolor="#00ff00" width="2" height="8"></td> <td bgcolor="#00ff00" width="2" height="8"></td> <td bgcolor="#00ff00" width="2" height="8"></td> <td bgcolor="#00ff00" width="2" height="8"></td> <td bgcolor="#ffff00" width="2" height="8"></td> <td bgcolor="#ffff00" width="2" height="8"></td> <td bgcolor="#ffff00" width="2" height="8"></td> <td bgcolor="#ffff00" width="2" height="8"></td> <td bgcolor="#ffff00" width="2" height="8"></td> <td bgcolor="#ffff00" width="2" height="8"></td> <td bgcolor="#ffff00" width="2" height="8"></td> <td bgcolor="#ffff00" width="2" height="8"></td> </tr> </table> </td> </tr> </table> </td> </tr> <tr><td colspan="2" height="8"></td></tr> <tr> <td colspan="2" bgcolor="#222222" nowrap> <strong>Germany-FFT2</strong> </td> <td width="100%" bgcolor="#444444"> <table cellpadding="0" cellspacing="2" border="0"> <tr> <td> Traffic: </td> <td> <table cellpadding="0" cellspacing="2" border="0"> <tr> <td bgcolor="#00ff00" width="2" height="8"></td> <td bgcolor="#00ff00" width="2" height="8"></td> <td bgcolor="#00ff00" width="2" height="8"></td> <td bgcolor="#00ff00" width="2" height="8"></td> <td bgcolor="#00ff00" width="2" height="8"></td> <td bgcolor="#00ff00" width="2" height="8"></td> <td bgcolor="#00ff00" width="2" height="8"></td> <td bgcolor="#00ff00" width="2" height="8"></td> <td bgcolor="#00ff00" width="2" height="8"></td> <td bgcolor="#00ff00" width="2" height="8"></td> <td bgcolor="#00ff00" width="2" height="8"></td> </tr> </table> </td> </tr> </table> </td> </tr> <tr><td colspan="2" height="8"></td></tr> <tr> <td colspan="2" bgcolor="#222222" nowrap> <strong>London_UK2</strong> </td> <td width="100%" bgcolor="#444444"> <table cellpadding="0" cellspacing="2" border="0"> <tr> <td> Traffic: </td> <td> <table cellpadding="0" cellspacing="2" border="0"> <tr> <td bgcolor="#00ff00" width="2" height="8"></td> <td bgcolor="#00ff00" width="2" height="8"></td> <td bgcolor="#00ff00" width="2" height="8"></td> <td bgcolor="#00ff00" width="2" height="8"></td> <td bgcolor="#00ff00" width="2" height="8"></td> <td bgcolor="#00ff00" width="2" height="8"></td> <td bgcolor="#00ff00" width="2" height="8"></td> <td bgcolor="#00ff00" width="2" height="8"></td> <td bgcolor="#00ff00" width="2" height="8"></td> </tr> </table> </td> </tr> </table> </td> </tr> <tr><td colspan="2" height="8"></td></tr> <tr> <td colspan="2" bgcolor="#222222" nowrap> <strong>Turkey</strong> </td> <td width="100%" bgcolor="#444444"> <table cellpadding="0" cellspacing="2" border="0"> <tr> <td> Traffic: </td> <td> <table cellpadding="0" cellspacing="2" border="0"> <tr> <td bgcolor="#00ff00" width="2" height="8"></td> <td bgcolor="#00ff00" width="2" height="8"></td> <td bgcolor="#00ff00" width="2" height="8"></td> <td bgcolor="#00ff00" width="2" height="8"></td> <td bgcolor="#00ff00" width="2" height="8"></td> <td bgcolor="#00ff00" width="2" height="8"></td> <td bgcolor="#00ff00" width="2" height="8"></td> <td bgcolor="#00ff00" width="2" height="8"></td> <td bgcolor="#00ff00" width="2" height="8"></td> <td bgcolor="#00ff00" width="2" height="8"></td> <td bgcolor="#00ff00" width="2" height="8"></td> <td bgcolor="#00ff00" width="2" height="8"></td> <td bgcolor="#00ff00" width="2" height="8"></td> <td bgcolor="#00ff00" width="2" height="8"></td> <td bgcolor="#00ff00" width="2" height="8"></td> <td bgcolor="#00ff00" width="2" height="8"></td> <td bgcolor="#00ff00" width="2" height="8"></td> <td bgcolor="#00ff00" width="2" height="8"></td> </tr> </table> </td> </tr> </table> </td> </tr> <tr><td colspan="2" height="8"></td></tr> <tr> <td colspan="2" bgcolor="#222222" nowrap> <strong>EU_vs_USA</strong> </td> <td width="100%" bgcolor="#444444"> <table cellpadding="0" cellspacing="2" border="0"> <tr> <td> Traffic: </td> <td> <table cellpadding="0" cellspacing="2" border="0"> <tr> <td bgcolor="#00ff00" width="2" height="8"></td> <td bgcolor="#00ff00" width="2" height="8"></td> <td bgcolor="#00ff00" width="2" height="8"></td> <td bgcolor="#00ff00" width="2" height="8"></td> <td bgcolor="#00ff00" width="2" height="8"></td> <td bgcolor="#00ff00" width="2" height="8"></td> <td bgcolor="#00ff00" width="2" height="8"></td> <td bgcolor="#00ff00" width="2" height="8"></td> <td bgcolor="#00ff00" width="2" height="8"></td> <td bgcolor="#00ff00" width="2" height="8"></td> <td bgcolor="#00ff00" width="2" height="8"></td> <td bgcolor="#00ff00" width="2" height="8"></td> <td bgcolor="#00ff00" width="2" height="8"></td> <td bgcolor="#00ff00" width="2" height="8"></td> <td bgcolor="#00ff00" width="2" height="8"></td> <td bgcolor="#00ff00" width="2" height="8"></td> <td bgcolor="#00ff00" width="2" height="8"></td> <td bgcolor="#00ff00" width="2" height="8"></td> <td bgcolor="#00ff00" width="2" height="8"></td> <td bgcolor="#00ff00" width="2" height="8"></td> <td bgcolor="#00ff00" width="2" height="8"></td> <td bgcolor="#00ff00" width="2" height="8"></td> <td bgcolor="#00ff00" width="2" height="8"></td> <td bgcolor="#00ff00" width="2" height="8"></td> <td bgcolor="#ffff00" width="2" height="8"></td> <td bgcolor="#ffff00" width="2" height="8"></td> <td bgcolor="#ffff00" width="2" height="8"></td> <td bgcolor="#ffff00" width="2" height="8"></td> <td bgcolor="#ffff00" width="2" height="8"></td> <td bgcolor="#ffff00" width="2" height="8"></td> <td bgcolor="#ffff00" width="2" height="8"></td> <td bgcolor="#ffff00" width="2" height="8"></td> <td bgcolor="#ffff00" width="2" height="8"></td> <td bgcolor="#ffff00" width="2" height="8"></td> <td bgcolor="#ffff00" width="2" height="8"></td> <td bgcolor="#ffff00" width="2" height="8"></td> </tr> </table> </td> </tr> </table> </td> </tr> </table> </td> <td background="_img/content_12.gif" valign="top"> <img src="_img/content_08.gif" height="142" width="17" /></td> </tr> <tr> <td height="8" width="18" background="_img/content_09.gif"> </td> <td colspan="2" height="8" width="550" background="_img/content_10.gif"> </td> <td height="8" width="1" background="_img/content_11.gif"> </td> <td height="8" width="17" background="_img/content_12.gif"> </td> </tr> <tr> <td colspan="5" height="16" width="586" background="_img/content_13.gif"> </td> </tr> <tr> <td height="1" width="18" background="_img/spacer.gif"> </td> <td height="1" width="199" background="_img/spacer.gif"> </td> <td height="1" width="351" background="_img/spacer.gif"> </td> <td height="1" width="1" background="_img/spacer.gif"> </td> <td height="1" width="17" background="_img/spacer.gif"> </td> </tr></table> </div> <div id="rightpanel"> <div id="download_bck" style="cursor:pointer;" onclick="window.location='download.php';"></div> <div id="game_guide_bck"> </div> <div id="ad_panel_top"></div> <div id="ad_panel_left"></div> <div id="ad_panel_top2"></div> <div id="ad_panel_right"></div> <div id="ad_panel_bck_01" style="background-image:url(_img/monitor_1_top.gif);"> <iframe src="monitor_1_flash.php" id="" frameborder="0" marginwidth="0" marginheight="0" scrolling="no" width="182" height="284"></iframe> </div> <div id="ad_panel_bolts_01"></div> <div id="ad_panel_bck_02" style="background-image:url(_img/monitor_2_top.gif);"> <iframe src="monitor_2_flash.php" id="" frameborder="0" marginwidth="0" marginheight="0" scrolling="no" width="182" height="220"></iframe> </div> <div id="ad_panel_bolts_02"></div> <div id="ad_panel_bck_03" style="background-image:url(_img/monitor_3_top.gif);"> <iframe src="monitor_3_flash.php" id="" frameborder="0" marginwidth="0" marginheight="0" scrolling="no" width="182" height="220"></iframe> </div> <div id="ad_panel_bottom"></div> </div> </div> <div id="footer"><img src="_img/footer_bottom.gif" width="990" height="61" alt="" border="" /></div> <div id="legal"> <div id="ftr_left" onclick="window.open('http://www.k2network.net');"></div> <div id="footer_block" class="footer" style="text-align:left;"> <a href="download.php" class="footer">Client</a> | <a href="register.php" class="footer">Register</a> | <a href="legal_documents.php" class="footer">Legal Documents</a> | <a href="index.php" class="footer">Home</a> <br /> © K2 Network, Inc. & Dream Execution Technology, Co., Ltd. </div> <div id="footer_tlogo" style="cursor:pointer;"><a href="http://www.esrb.org/ratings/ratings_guide.jsp" target="_blank"><img src="_img/esrb_logo.jpg" width="127" height="95" alt="ESRB Rating" border="0" /></a></div> <div id="pegi" style="cursor:pointer;float:right;position:relative;padding-right:15px;"><a href="http://www.pegi.info/en/index/" target="_blank"><img src="_img/pegi16.jpg" width="49" height="67" border="0" /></a></div> <div id="footer_cenzic" style="cursor:pointer;" onclick="window.open('http://www.cenzic.com');"></div> <div id="ftr_right" style="cursor:pointer;" onclick="window.open('http://www.dreamexe.net');"></div> </div> </div> <div id="cover" style="position:absolute;top:0px;left:0px;width:100%;height:100%;min-width:990px;display:none;"><script type="text/javascript">showflash('cover','100%','100%');</script></div> <div id="gameguide" style="position:absolute;top:0px;left:0px;width:100%;height:100%;min-width:990px;display:none;text-align:center;"> <div><script type="text/javascript">showflash('gameguide','905','725');</script></div> </div> <div id="error" style="position:absolute;width:100%;height:100%;top:0px;left:0px;display:none;cursor:not-allowed;background-color: #555555;filter:alpha(opacity=0);-moz-opacity:0.00;opacity: 0.00;"></div> <div id="screenshot" style="position:absolute;width:100%;height:100%;top:0px;left:0px;display:none;cursor:not-allowed;background-color: #000000;filter:alpha(opacity=0);-moz-opacity:0.00;opacity: 0.00;"></div> <script type="text/javascript"> <!-- function veil() { var a = document.getElementById('error'); a.style.display='block'; } function noError() { var a = document.getElementById('error'); a.style.display='none'; messageObj.close(); } messageObj = new DHTML_modalMessage(); // We only create one object of this class messageObj.setShadowOffset(5); // Large shadow function error(url) { messageObj.setSource(url); messageObj.setCssClassMessageBox(false); messageObj.setSize(400,225); messageObj.setShadowDivVisible(true); // Enable shadow for these boxes messageObj.display(); veil(); } function video(url) { messageObj.setSource(url); messageObj.setCssClassMessageBox(false); messageObj.setSize(420,410); messageObj.setShadowDivVisible(true); // Enable shadow for these boxes messageObj.display(); } function closeMessage() { messageObj.close(); } //--> </script> <script src="https://ssl.google-analytics.com/urchin.js" type="text/javascript"></script> <script type="text/javascript">_uacct = "UA-475901-2";urchinTracker();</script> <script defer type="text/javascript" src="_inc/pngfix.js"></script> </body> </html> As you can see, its like a jungle in there. What am I looking for in order to do those tasks?1 point