Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 08/20/2013 in all areas

  1. Jon

    AutoIt v3.3.9.18 Beta

    File Name: AutoIt v3.3.9.18 Beta File Submitter: Jon File Submitted: 20 Aug 2013 File Category: Beta 3.3.9.18 (20th August, 2013) (Beta) AutoIt: - Fixed #2384: UDPRecv() and TCPRecv() not setting @error correctly in some instances. - Fixed #2367: Sometimes two COM objects wouldn't be classed as equal during comparisons. UDFs: - Added: GDIPlus functions and their respective documentation and example. - Changed: _FileWriteToLine() can read a file with various line endings (not recommended). - Changed: Re-wrote _FileReadToArray() to use the native function FileReadToArray() when $iFlag is set to 0. - Removed: Documentation and example for _StringReverse(). Scripts should be updated to use the native function StringReverse() instead. Click here to download this file
    3 points
  2. dragan

    GuiCtrlSetPos problem

    How about this: -First you detect right keyboard button like you already did -Then you get current position of your $Icon1 control: Local $aPos = ControlGetPos($Form1, "", $Icon1) -Then (if no @errors), you will get array results to $aPos variable. -Then you set new position of the $Icon1 control using: GUICtrlSetPos($Icon1, $aPos[0]+5, $aPos[1]) ;will move 5 pixels to the right
    1 point
  3. gcue

    IP Camera stream + record

    looks like it got rid of the delay i mentioned earlier! =)
    1 point
  4. Of course you can, just _SQLite_FastEncode your binary data and insert into BLOB column. >This thread is a very complete example of using blobs with SQLite.
    1 point
  5. How about this: #RequireAdmin Local $RunDLLexe = 'rundll32.exe' Local $Parameters = @WindowsDir & '\system32\shell32.dll,Control_RunDLL ' & _ @WindowsDir & '\system32\desk.cpl desk,@Themes /Action:OpenTheme /file:"' & _ @WindowsDir & '\Resources\Ease of Access Themes\hc1.theme"' ShellExecuteWait($RunDLLexe, $Parameters, @SystemDir) Local $winClass = "[CLASS:CabinetWClass]" WinWait($winClass, '', 5) If NOT @error then WinClose($winClass)
    1 point
  6. Try to replace your ControlClick with this one: ControlClick("PW.sederhana", "", "[NAME:button1]")
    1 point
  7. This shouldn't be hard for you: InetRead("http://example.com/index.php?comments=approve") if(isset($_GET['comments'])&&$_GET['comments']=='approve') { ;do stuff exit; } Br, FireFox.
    1 point
  8. If this is true, you can have the same effect and even better achieved through programming languages ​​such as HTML JAVA PHP and many others. Of course, as good if not better results.
    1 point
  9. The IE functions work very well. Have you seen _IELoadWait? There is also _IEAction which can simulate mouse clicks which means that the window doesnt even have to be active.
    1 point
  10. Jon

    AutoIt v3.3.9.17 Beta

    Think I've found it. Found some suspicious-ish comparison code.
    1 point
  11. I see others are reading this thread. Please do not reply till M23 has a satisfactory response. kylomas
    1 point
  12. while 1 $soul =FileReadLine($file) $sou2 =FileReadLine($fil2) login() wend
    1 point
×
×
  • Create New...