Jump to content

DVDRW

Members
  • Posts

    12
  • Joined

  • Last visited

Profile Information

  • Location
    Estonia
  • Interests
    Autoit :)

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

DVDRW's Achievements

Seeker

Seeker (1/7)

0

Reputation

  1. Solved, cannot delete post.
  2. Works for me also, just have to wait data loaded after _iecreate #include <IE.au3> Local $oIE = _IECreate("http://192.168.137.174/RTData.html",0,0) sleep(2000) $oDiv = _IEGetObjById($oIE, "RTData1") while 1 $voltage = _IEPropertyGet($oDiv, "innertext") sleep(5000) tooltip($voltage) wend Thanks.
  3. Same here, I have solar controller that sends real time data via web. I want to read it with Autoit. There is javascript beginning of html. I think data is in the variables when i look source. "RTDdata11" etc. How i can read it? <tr> <td height="28" align="center"><div align="right"><span class="STYLE8">Charge Power<span class="STYLE6">(W):</span></span></div></td> <td style="width: 107px" class="style1"> <div id="RTData4" style="width: 93px" class="STYLE7"> </div> </td> <td align="center" style="width: 283px"><div align="right"><span class="STYLE8">Remote Sensor Temp.(</span><span class="style4"><sup>o</sup></span><span class="STYLE6">C</span><span class="STYLE8">):</span></div></td> <td class="style1"> <div id="RTData11" style="width: 93px" class="STYLE7"> </div> </td> </tr> IE9 W7
  4. Sorry another dumb question: How I can read cell like old Excel UDF.? I mean using integer row number and column number: _ExcelReadCell($oExcel, 1, 1) _ExcelRangeRead($oWorkbook, Default, ????
  5. Aah sorry I didn-t know that choosing cells same row makes 2D array. Checked only concatenated 1D and 2D array result. Thanks
  6. Just installed Autoit and using Exel UDF that came with it. I have Rangeread problem: When I try to read range on same row. I get no result and no error. _Excel_RangeRead($oWorkbook, Default, "A12:C12") Am i missing something? A12:A15 works just fine.
  7. Hey! I know @DesktopWidth and @DesktopDepth but how I can retrieve exended monitor DesktopWidth and DesktopDepth or full monitor screen area? Also important is to retrieve that is my extended monitor is left or right side of primary monitor? I just want to make script which moves current active window to another monitor (if exist) and maximizes it.
  8. Thanx got it work! "INPOUT32.dll" caused the problem. "c:\INPOUT32.dll" worked I heard that when script location is the same place as file then you wont need write full path. It seems that is not true
  9. Yep i started from there. Set all bits to 1 and read result was all 0s Tried two different computers
  10. Hi! I want to set or read LPT port bits. Placed Inpout32.dll to script folder. Is there something more should i do? This should send all LPT data bits to high level? DllCall( "INPOUT32.dll", "int", "out32", "int",0x378, "int", 255 ) When i launch that, nothing happens, my multimeter still shows 0V on parallel port 0x378 address is right because DIK74 software works without problem + my multimeter shows 3,3V. OS is WinXP Pro SP2
  11. $files = DirGetSize ( "c:\",1) MsgBox(0,"",$files[1]) Thanks for quick reply
  12. Cant find function for that. What is the simplest way to do this.
×
×
  • Create New...