Leaderboard
Popular Content
Showing content with the highest reputation on 08/26/2015 in all areas
-
The best way to think of this forum is simple. It is a classroom. Not a take away restaurant. You came in here to order food, not learn. We don't have food here. We teach people.2 points
-
Version 3. 0. 0. 1
1,624 downloads
Utter is simply a UDF created for the maximum utilization of SAPI (Speech Recognition API) in windows you can add your own words to be recognized by the computer you can set speed,picth and select the voice you want by speech synthesis included in windows.Utter can create a free grammar recognition engine as well as custom made grammar recognition engine suiting according to your need also it is flexible.The shutdown function of the UDF must be called before calling another one to destroy the current engine running when autoit closes the engine will also close many functionalities are included an update will be soon in future github: https://github.com/thesunRider/Utter1 point -
3-8-2015: updates available in the beta directory: *** Merged the SciTE v 3.6.0 by Neil Hodgson with our own version of SciTE. (Jos) Fixed some outputpane lexing to ensure FuncTrace generated lines work again. *** Updated AutoIt3Wrapper v15.729.1555.0 (Jos) - 15.729.1555.1: Fixed /Watcher and /Jump2FirstError mechanism to kill the script when Ctrl+Break or via the Menu the script should be terminated. - 15.729.1555.2: Added Win10 to the Manifest and made that the default similar to what aut2exe does. *** Updated Au3Stripper v15.729.1555.0 (Jos) - 15.729.1555.2: Fixed issue for Include files with BOM encoding not recognizing #Include-once on the first line. - 15.729.1555.2: Fixed hardcrash in case de au3stripper didn't exist and /debug was specified. *** Updated SciTEConfig v15.729.1555.0 (Jos) *** Updated Au3Stripper v15.729.1555.0 (Jos) - 15.729.1555.1: Fixed hardcrash in case an Include is used with BOM and #include-once on the first line. *** Updated Tidy v15.729.1555.0 (Jos) 1-8-2015: update available in the beta directory: *** Updated AutoIt3Wrapper v15.729.1555.0 (Jos) - 15.729.1555.1: Fixed /Watcher and /Jump2FirstError mechanism to kill the script when Ctrl+Break or via the Menu the script should be terminated. - 15.729.1555.2: Added Win10 to the Manifest and made that the default similar to what aut2exe does. 29-7-2015: Uploaded a new SciTE4AutoIt3.exe. I have made a big change in the whole setup, making it work without any compiled scripts, to mainly avoid the false positives we have been faced with during the last couple of days. This new installer will use, and thus depends on, the installed AutoIt3.exe which needs to reside one level higher as in the standard installations. All references to any compiled script is changed to reflect this, which means it runs AutoIt3.exe ScriptName.au3 parameters. We are pretty sure everything should be running fine, but let me know when you have something that is now broken due to these changes. Enjoy, Jos Addition/Changes/Fixes in the current installer: 29-7-2015 This release has all the compiled scripts pulled out of the setup and we are now only using AutoIt3.exe to run the source for all the script utilities. Main reason for making the change is the regular reports of False Positive Virus warmings. Please report any issues due to this change of approach. *** Updated AutoIt3Wrapper v15.729.1555.0 (Jos) *** Updated Au3Stripper v15.729.1555.0 (Jos) *** Updated SciTEConfig v15.729.1555.0 (Jos) *** Updated Au3Stripper v15.729.1555.0 (Jos) *** Updated Tidy v15.729.1555.0 (Jos) - Removed the inline errors and only report Console Tidy Errors. ==> ScitillaHistory page containing all SciTE-Scintilla updates. ==> Visit the SciTE4AutoIt3 Download page for the latest versions. ==> Check the newly formatted the online documentation for an overview of all extras you get with this installer.1 point
-
Compile new icon.
gottygolly reacted to Skysnake for a topic
Which version of Windows and which AutoIt versions are you using? Saving a file as .ico is not enough. Try something like Junior Icon Editor I (a) made several custom icons, (b) put them in a DLL and call them from there. In addition I compile an EXE with three additional custom icons... #AutoIt3Wrapper_Res_Icon_Add=C:\ABC\myCustomDevs\current\au3_next\timer2.ico #AutoIt3Wrapper_Res_Icon_Add=C:\ABC\myCustomDevs\current\au3_next\timer_2.ico [these are absolute file paths as the .ico files are not located in the Au3 folders...]1 point -
I like those ideas. Stack overflow.1 point
-
Compile new icon.
gottygolly reacted to AdmiralAlkex for a topic
Have you tried to exclude the folder that error (C:\Users\User\AppData\Local\AutoIt v3\Aut2exe\) in your antivirus? In an ideal world that shouldn't matter... But you never know. Edit: You should not need to put in the folder if IconName.ico is in the same folder as the au3 script1 point -
Script takes ages on startup
Natulux reacted to AdmiralAlkex for a topic
Well according do the console output you posted you are running x86 AutoIt on x64 Windows, that means you would be opening the file in WysWOW64 not System32. File System Redirector Either make sure you are using x64 with #AutoIt3Wrapper_UseX64=y or work around it with \Sysnative folder. You probably shouldn't mess around with Wow64DisableWow64FsRedirection() if you don't know what you're doing.1 point -
Mr.Nguyen, Welcome to the AutoIt forums. But please stick to just the one thread - I have deleted the other posts. M231 point
-
You could end with something like this: #include <Word.au3> Global Const $wdStyleHeading1 = -2 Global Const $wdStyleHeading2 = -3 Global Const $wdStyleHeading3 = -4 $oWord = _Word_Create() $oDoc = _Word_DocAdd($oWord) $oRange = _Word_DocRangeSet($oDoc, -1) ; Set the Range start/end to the start of the document ; Heading 1 $oRange.InsertBefore("Department 1") $oRange.Style = $wdStyleHeading1 $oRange.InsertParagraphAfter() $oRange = _Word_DocRangeSet($oDoc, -2) ; Set the Range to the end of the document ; Heading 2 $oRange.InsertAfter("Sub-Department 1.1") $oRange.Style = $wdStyleHeading2 $oRange.InsertParagraphAfter() $oRange = _Word_DocRangeSet($oDoc, -2) ; Heading 3 - Line 1 $oRange.InsertAfter("Boss") $oRange.Style = $wdStyleHeading3 $oRange.InsertParagraphAfter() $oRange = _Word_DocRangeSet($oDoc, -2) ; Heading 3 - Line 2 $oRange.InsertAfter("POC") $oRange.Style = $wdStyleHeading3 $oRange.InsertParagraphAfter() $oRange = _Word_DocRangeSet($oDoc, -2)1 point
-
The Word UDF only provides basic stuff. So there is no formatting function available. You could activate the macro recorder in Word and format the 3 levels of entries. Grab the macro and translate it to AutoIt. Unfortunately the recorded macro works with Selections and not with Ranges. But this should be easy too.1 point
-
Issues Transfering Script to a new PC
CrypticKiwi reacted to BrewManNH for a topic
Post a reproducer script, one that functions the same as the original script, and that demonstrates the error. As I said, there's no magic involved here, we can't say that X is the problem if we don't know what you're doing in X. BTW, your internal network information is useless to anyone not on your network, or even help them to know where your internal network is. Just because you're internal IP address might be 10,60.1.100, doesn't mean anyone can use that information to get into your network. User names and passwords to externally accessible data and customer names would be an issue, but nothing related to your internal network would be. Just an FYI1 point -
Uploaded v3.3.14.1 Removed au3record.exe as it's often mistakenly flagged as malware causing the entire AutoIt zip/installer to be flagged. We'll host it separately.Reworked AutoIt3Help.exe and applied a digital signature to help with malware false positives - as above.No other changes to the AutoIt exes so no real need to update if you are not having issues.1 point