awesomejimistgeil 0 Posted March 30, 2011 My script interacts with this website http://www.weather.com/activities/health/allergies/ My source #include <FF.au3> #Include <Array.au3> Local $oZipCode Local $oSubmit Local $ZipCode = "xxxxx" $url = "http://www.weather.com/activities/health/allergies/" $oFF = _FFStart($url) $aArray = _FFXPath("//input[@value='Enter US city or zip']","",9) MsgBox(64,"", _FFObj("xpath.type") & @crlf & _FFObj("xpath.value")) _FFObj("xpath", "value", $ZipCode) sleep(2000) $aArray = _FFXPath("//input","src",7) _ArrayDisplay($aArray) MsgBox(0,"", $aArray) _FFClick("input", "tag", 22) MsgBox(0,"", _FFReadText(24)) On the page that comes up when you enter your zip i use _FFReadText to get the text that has the pollen forecast for my zip code. However the text that i need, and a lot of other text doesnt come up. It seems like the page is inside another page. How can i access text that doesnt come up from _FFReadText Share this post Link to post Share on other sites
PsaltyDS 39 Posted March 30, 2011 It's probably a Frame you need to address. Valuater's AutoIt 1-2-3, Class... Is now in Session!For those who want somebody to write the script for them: RentACoder"Any technology distinguishable from magic is insufficiently advanced." -- Geek's corollary to Clarke's law Share this post Link to post Share on other sites