Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 07/08/2014 in all areas

  1. Extended Path Checked (should have worked ok in 3.3.12.0) ========================================================= DirCreate DirGetSize FileExists FileFindFirstFile FileFindNextFile FileFlush FileGetAttrib FileGetEncoding FileGetLongName FileGetPos FileGetSize FileGetShortName FileGetTime FileGetVersion FileRead FileReadLine FileReadToArray FileSetPos FileWrite FileWriteLine Extended Path Fixed in 3.3.13.1+ (Didn't work correctly in 3.3.12.0) ==================================================================== FileCopy FileDelete FileMove FileOpen (when used with DirCreate flag) Extended Path Rewrite Needed ============================ DirCopy (shell32) DirMove (shell32) DirRemove (shell32) FileSetAttrib FileSetTime FileCreateNTFSLink FileInstall IniDelete IniRead IniReadSection IniReadSectionNames IniRenameSection IniWrite IniWriteSection Extended Path Incompatible (Underlying API does not support) - Some may be possible to rewrite ============================================================================================== FileChangeDir (no function exists that can set directory with long paths) FileCreateShortcut (shell32) FileGetShortcut (shell32) FileOpenDialog (shell32) FileRecycle (shell32) FileRecycleEmpty (shell32) FileSaveDialog (shell32) FileSelectFolder (shell32)
    2 points
  2. Jon

    AutoIt v3.3.13.0 Beta

    File Name: AutoIt v3.3.13.0 Beta File Submitter: Jon File Submitted: 07 Jul 2014 File Category: Beta 3.3.13.0 (7th July, 2014) (Beta) AutoIt: - Added #2761: AutoIt.chm title versioning. - Fixed #2755: SetError() doc precision. UDFs: - Changed: _SQLite 3.8.4.3 -> 3.8.5.0. - Added #2732: ObjName() doc example. - Added #2751: Regions and GUI control tip labels to the control sample example. - Added #2764: _WinAPI_ShellExecuteEx(), _WinAPI_GetPriorityClass() doc constants. - Fixed #2734: Incorrectly setting the wrong member. - Fixed #2736: DriveGetType() and _WinAPI_SetWindowPos() Doc Constants.au3 to AutoItConstants.au3. - Fixed #2737: _WinAPI_ShellGetStockIconInfo() doc $SIID_ constants. - Fixed #2744: Requires IE5 removal as Min OS = Windows XP. - Fixed #2741: _WinAPI_DrawThemeEdge() constants reference in BorderConstants.au3. - Fixed #2740: _WinAPI_IsProcessorFeaturePresent() doc $PF_* constants. - Fixed #2739: _WinAPI_SetLocaleInfo() doc $LOCALE_* constants. - Fixed #2738: _WinAPI_ShellRestricted() doc $REST_* constants. - Fixed #2745: Mismatch of supported operating system with the official AutoIt site. - Fixed #2746: IE6Example.htm refreshing and associated COMRef.htm. - Fixed #2749: Bad Include in Com example. - Fixed #2748: Variable used before declaration. - Fixed #2758: _ArrayPermute() with multicharacter delimiter. Au3Check: - Fixed: False error report on Com variable. Click here to download this file
    2 points
  3. The AutoIt help file is very useful for learning and contains examples for the functions I mentioned above. Long time forum posters are also congnicent of the forum rules (at the bottom of each page) which prohibit the discussion of certain automation tasks, such as game related automation. Things like sending key strokes for durations are often red flag indicators for this usage--as are unclear responses to direct inquiries of intention. We cannot regulate how you use AutoIt on your own, but we try to hold ourselves accountable on this forum and adhere to the rules put in place.
    1 point
  4. Unregistered, first off welcome to the forum. Secondly, you are being asked for more information by experienced members of this forum for a reason. The more you explain in detail about what you're trying to do, the more help you will receive. The more your answers lean toward "what does it matter why, just give me what I want", the less likely people will be to assist. Help us help you
    1 point
  5. Changing variable name $ghGDIPDll to $__g_hGDIPDll in whole _GUIResourcePic.au3 (18 occurences) helped. Now everything is OK. Thanx JScript for your very helpful UDF and you guinness thanx for your help.
    1 point
  6. You can access arrays this way: $tStruct = DllStructCreate("uint X[10];") For $i = 1 To 10 $tStruct.X(($i)) = $i Next For $i = 1 To 10 $tStruct.X(($i)) *= 2 Next For $i = 1 To 10 ConsoleWrite("> " & $tStruct.X(($i)) & @CRLF) Next Here is a benchmarkscript i wrote some time ago: http://www.autoit.de/index.php?page=Thread&postID=358070#post358070 E
    1 point
  7. I have the same problem, ive tried it on different computers and OS's. This is my temporarily solution. I will rewrite it so everyone can use it. local $app_focus = true Func dedu_copy() $oText = $oIE.document.selection.createrange.text ClipPut($oText) EndFunc hotkeyset("^c","dedu_copy") and I use this in my while loop. if wingettitle("[ACTIVE]") = "My programs title" then hotkeyset("^c","dedu_copy") else hotkeyset("^c");Will remove the hotkeyset by autoit. endif however, i havent figured out how to make the "right click" to work. edit: i have tried on IE11 and IE8, same result...
    1 point
×
×
  • Create New...