dickjones007 Posted November 3, 2011 Share Posted November 3, 2011 i made a script that works with site within internet explorer is there some general way to make an app that works independent from IE? Link to comment Share on other sites More sharing options...
Zedna Posted November 3, 2011 Share Posted November 3, 2011 What does your script? Generally you can directly send/receive TCPIP packets also you can use HTTP requests. Resources UDF ResourcesEx UDF AutoIt Forum Search Link to comment Share on other sites More sharing options...
dickjones007 Posted November 4, 2011 Author Share Posted November 4, 2011 this is my script expandcollapse popupWhile 1 ControlClick("Internet Explorer", "", "[CLASS:Button; TEXT:&Don't Send; INSTANCE:1]") MouseClick("secondary",145,100) Send("{down 3}") Send("{enter}") If PixelGetColor(24, 140) == 0xF5DEB3 Then Sleep(1000) MouseClick("primary", 520, 265) Sleep(2000) MouseClick("primary", 520, 245) Else Sleep(1000) EndIf $randtim = Random(2300, 4800, 1) Sleep($randtim) $checksum0 = PixelChecksum(86, 122, 127, 149) $checksum1 = PixelChecksum(157, 124, 198, 151) $checksum2 = PixelChecksum(199, 124, 240, 151) $checksum3 = PixelChecksum(241, 124, 282, 151) $checksum4 = PixelChecksum(283, 124, 324, 151) $randomx1 = Random(163, 191, 1) $randomx2 = Random(202, 237, 1) $randomx3 = Random(245, 277, 1) $randomx4 = Random(285, 320, 1) $randomy1 = Random(126, 149, 1) If $checksum0 = $checksum1 Then Sleep(1000) MouseClick("primary", $randomx1, $randomy1) ElseIf $checksum0 = $checksum2 Then Sleep(1000) MouseClick("primary", $randomx2, $randomy1) ElseIf $checksum0 = $checksum3 Then Sleep(1000) MouseClick("primary", $randomx3, $randomy1) ElseIf $checksum0 = $checksum4 Then Sleep(1000) MouseClick("primary", $randomx4, $randomy1) EndIf Sleep(3000) WEnd its for something like "recognize the picture" project i am working on so i want to put that into separate app can my script work with "$oIE = _IECreateEmbedded ()" command somewhow Link to comment Share on other sites More sharing options...
dickjones007 Posted November 6, 2011 Author Share Posted November 6, 2011 can anyone help me? Link to comment Share on other sites More sharing options...
JohnOne Posted November 6, 2011 Share Posted November 6, 2011 can my script work with "$oIE = _IECreateEmbedded ()" command somewhow Have you even tried anything at all? AutoIt Absolute Beginners Require a serial Pause Script Video Tutorials by Morthawt ipify Monkey's are, like, natures humans. Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now