dickjones007 1 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? Share this post Link to post Share on other sites
Zedna 279 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 Share this post Link to post Share on other sites
dickjones007 1 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 Share this post Link to post Share on other sites
dickjones007 1 Posted November 6, 2011 can anyone help me? Share this post Link to post Share on other sites
JohnOne 1,603 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. Share this post Link to post Share on other sites