jorge 0 Posted November 4, 2011 Hi, I have this scripts: #include <IE.au3> _Siec_SendSMS("number_fon", "text") Func _Siec_SendSMS($sOdbiorcy, $sTresc) $oIE = _IEAttach("https://link_url", "URL") $oForm = _IEGetObjByName($oIE, "editableSmsComposeForm") $oRecipients = _IEFormElementGetObjByName($oForm, "recipients") $oContentIn = _IEFormElementGetObjByName($oForm, "content_in") $oContentOut = _IEFormElementGetObjByName($oForm, "content_out") $oSubmit = _IEGetObjById($oForm, "submitbtn") _IEFormElementSetValue($oRecipients, $sOdbiorcy) _IEFormElementSetValue($oContentIn, $sTresc) _IEFormElementSetValue($oContentOut, $sTresc) _IEAction($oSubmit, "click") Sleep(5000) $oIE = _IEAttach("https://link_url", "URL") $oForm = _IEGetObjByName($oIE, "editableSmsComposeForm") $oSubmit = _IEGetObjById($oForm, "yesLink") _IEAction($oSubmit, "click") EndFunc Why only complements number_fon and text? Should react on _IEAction($oSubmit, "click"), but nothing happens...Why this not work? I use IE 9 Share this post Link to post Share on other sites
DaleHohm 65 Posted November 5, 2011 You'll need latest AutoIt beta for a relevant fix. Dale Free Internet Tools: DebugBar, AutoIt IE Builder, HTTP UDF, MODIV2, IE Developer Toolbar, IEDocMon, Fiddler, HTML Validator, WGet, curlMSDN docs: InternetExplorer Object, Document Object, Overviews and Tutorials, DHTML Objects, DHTML Events, WinHttpRequest, XmlHttpRequest, Cross-Frame Scripting, Office object modelAutomate input type=file (Related)Alternative to _IECreateEmbedded? better: _IECreatePseudoEmbedded Better Better?IE.au3 issues with Vista - WorkaroundsSciTe Debug mode - it's magic: #AutoIt3Wrapper_run_debug_mode=Y Doesn't work needs to be ripped out of the troubleshooting lexicon. It means that what you tried did not produce the results you expected. It begs the questions 1) what did you try?, 2) what did you expect? and 3) what happened instead?Reproducer: a small (the smallest?) piece of stand-alone code that demonstrates your trouble Share this post Link to post Share on other sites
jorge 0 Posted November 5, 2011 but I have version v3.3.6.1 and it does not work Share this post Link to post Share on other sites
water 2,387 Posted November 5, 2011 (edited) The latest BETA () is needed. Edited November 5, 2011 by water My UDFs and Tutorials: Spoiler UDFs:Active Directory (NEW 2020-10-10 - Version 1.5.2.1) - Download - General Help & Support - Example Scripts - WikiOutlookEX (NEW 2020-12-15 - Version 1.6.3.1) - Download - General Help & Support - Example Scripts - WikiOutlookEX_GUI (2020-06-27 - Version 1.3.2.0) - DownloadOutlook Tools (2019-07-22 - Version 0.6.0.0) - Download - General Help & Support - WikiExcelChart (2017-07-21 - Version 0.4.0.1) - Download - General Help & Support - Example ScriptsPowerPoint (2017-06-06 - Version 0.0.5.0) - Download - General Help & SupportExcel - Example Scripts - WikiWord - WikiTask Scheduler (2019-12-03 - Version 1.5.1.0) - Download - General Help & Support - WikiTutorials:ADO - Wiki, WebDriver - Wiki Share this post Link to post Share on other sites
jorge 0 Posted November 5, 2011 sorry I read wrong... Thank you! It work! Share this post Link to post Share on other sites
jorge 0 Posted November 5, 2011 code autoit can add to the website? if yes so as? Share this post Link to post Share on other sites
water 2,387 Posted November 5, 2011 Check the_IEBodyWriteHTML, _IEDocWriteHTML, _IEDocInsertHTML and _IEHeadInsertEventScript functions. My UDFs and Tutorials: Spoiler UDFs:Active Directory (NEW 2020-10-10 - Version 1.5.2.1) - Download - General Help & Support - Example Scripts - WikiOutlookEX (NEW 2020-12-15 - Version 1.6.3.1) - Download - General Help & Support - Example Scripts - WikiOutlookEX_GUI (2020-06-27 - Version 1.3.2.0) - DownloadOutlook Tools (2019-07-22 - Version 0.6.0.0) - Download - General Help & Support - WikiExcelChart (2017-07-21 - Version 0.4.0.1) - Download - General Help & Support - Example ScriptsPowerPoint (2017-06-06 - Version 0.0.5.0) - Download - General Help & SupportExcel - Example Scripts - WikiWord - WikiTask Scheduler (2019-12-03 - Version 1.5.1.0) - Download - General Help & Support - WikiTutorials:ADO - Wiki, WebDriver - Wiki Share this post Link to post Share on other sites
jorge 0 Posted November 5, 2011 but how i can view code, typing http://test.com/code.html? As I add $sHTML = $sHTML & '<textarea id ="textSMS" name="textSMS" cols="5" style="margin-left:0px; width: 500px; height: 124px; font-size:small;">' & $Message & '</textarea><br/>' I must compile code to file.exe that work. Share this post Link to post Share on other sites