Jump to content

atzoref

Active Members
  • Posts

    189
  • Joined

  • Last visited

Recent Profile Visitors

147 profile views

atzoref's Achievements

Prodigy

Prodigy (4/7)

1

Reputation

  1. Finally it works with the FileRead method, To get the path I taking the folder name through the "SaveAs" Window with the WinGetText. and build the full path to the specific file so I can use the FileRead which get the all text from the file By the way, PhoenixXL - your method still cut the data. Thanks all
  2. BrewManNH:It is notepad which popup so I need to get from this window, I can't know the path of the specific file because it depands on current time. But maybe I will use the "Save As" option in order to save it with a path I'm know and doing what you said. PhoenixXL: Thanks, I will try it first and update here
  3. Hi, I'm doing WinGetText from a Notepad, I am use the ConsolWrite in order to see what he get, and everytime he is cutting the information in the same place, so I am missing everytime the relevant info I want to. Here is info about the characters it took: see picture Also the notepad files are above 64k (as it written in the help file) Is there another Function I can use for large files?
  4. I have been installed it, but I still get the TimeOut error /:
  5. Where I put this file? How do I use this? Thanks
  6. There is some updates on this issue? Someone maybe created an *.au3 file for Chrome? Because I have some problems with the FF.au3 and IE is very slow. Thanks
  7. Even on 19 not works
  8. I install the "MozRepl" Add-On from the FireFox site and install it, make it start and allow outside connection and verify the port is 4242. But nothing help I will try to install version 19
  9. I download some files there, but where should I put it? And how I make it works?
  10. The last one: 20.0.1 How do I start the "MozRepl addon"?
  11. Thanks, _FFStart("file:///C:atp.html") It works and open the FF with the specific HTML which I want too. But there is another problem, after I did it it takes ~30 seconds he move to the next line. There is Timeout for some reason. Why it happens? I just want to open this HTML and read Table Data/Text from it. This is the log I get: __FFStartProcess: ""C:Program Files (x86)Mozilla Firefoxfirefox.exe" -new-window "file:///C:atp.html" "-repl 4242 " _FFConnect: OS: WIN_7 WIN32_NT 7601 Service Pack 1 _FFConnect: AutoIt: 3.3.8.0 _FFConnect: FF.au3: 0.6.0.1b-8 _FFConnect: IP: 127.0.0.1 _FFConnect: Port: 4242 _FFConnect: Delay: 2ms _FFConnect ==> Timeout: TCPConnect Error: 10061 _FFConnect ==> General Error: Timeout: Can not connect to FireFox/MozRepl on: 127.0.0.1:4242 _FFIsConnected ==> Socket Error: -1 +>10:10:33 AutoIT3.exe ended.rc:0 >Exit code: 0 Time: 72.165 Thanks.
  12. Sorry, because it is different forums so I think some people would not see it. By the way I post another question there about it, I will glad if you can help me. Thanks
  13. Hi, I still don't understand which functions do I need in order to implement all these set of IE functions: $oIE = _IECreate("C:\atp.html", 1, 0) Local $oTable = _IETableGetCollection($oIE, 0) Local $aTableData = _IETableWriteToArray($oTable, True) $iIndex = _ArraySearch($aTableData, $strField, 0, 0, 0, 0, 1, 0) $strValue = $aTableData[$iIndex][1] When I'm trying to open an exist html on "C:" like this: _FFStart("C:atp.html", "default", 1, False, "127.0.0.1", 4242) I get this error: _FFStart ==> Invalid data type: (URL) $sURL: http://C:atp.html How can I make it works? why there is "http://" Thanks
  14. Hi, How can I implement this IE functions in FireFox: Local $oTable = _IETableGetCollection($oIE, 0) Local $aTableData = _IETableWriteToArray($oTable, True) $iIndex = _ArraySearch($aTableData, $strField, 0, 0, 0, 0, 1, 0) $strValue = $aTableData[$iIndex][1] Thanks
  15. Hi, How can I implement this IE functions: Local $oTable = _IETableGetCollection($oIE, 0) Local $aTableData = _IETableWriteToArray($oTable, True) $iIndex = _ArraySearch($aTableData, $strField, 0, 0, 0, 0, 1, 0) $strValue = $aTableData[$iIndex][1] with this FF include: FF V0.6.0.1b-8.au3 Thanks
×
×
  • Create New...