#include $sUsername = "username" $sPassword = "Password" $sUrl = "http://www.ucern.com/" $oIE = _IECreate($sUrl, 0, 1, 0, 1) Sleep(2000) $oHWND = _IEPropertyGet($oIE, "hwnd") WinSetState($oHWND, "", @SW_MAXIMIZE) $oForm = _IEFormGetCollection($oIE, 0) $oUsername = _IEFormElementGetObjByName($oForm, 'username') $oPassword = _IEFormElementGetObjByName($oForm, "password") _IEFormElementSetValue($oUsername, $sUsername) _IEFormElementSetValue($oPassword, $sPassword) _IEFormSubmit($oForm) ;This script works on: https://ssl.rapidshare.com/premiumzone.html but not other websites like UCern.com ;Search for Website Login Script by Sean78 or roc. The Sean78 one worked.