Search found 260 matches
- 28 Oct 2020, 04:39
- Forum: Ich brauche Hilfe
- Topic: AutoLesefehlerKorrektur
- Replies: 4
- Views: 214
Re: AutoLesefehlerKorrektur
Ich habe mal ein kleines Skript gebastelt, um ein Grundgerüst zu haben. Jedoch ist diese Hunspell Library nicht so dolle. Dein Input als Datei input.txt. Es liest die Zeile ein und schickt jedes Wort durch den Spellcheck. Bei mehrfachen Treffen holt es sich den ersten Treffer. Für dieses Problem hab...
- 27 Oct 2020, 16:55
- Forum: Ich brauche Hilfe
- Topic: AutoLesefehlerKorrektur
- Replies: 4
- Views: 214
Re: AutoLesefehlerKorrektur
Das auf Deutsch zu stellen ist easy. Einfach Zeile 6 von Example - Simple Test.ahk so ändern. Natürlich muss man vorher die zwei Dateien aus dem OpenOffice in das dict Verzeichnis kopieren. Ich habe sie mal angehängt. if not Spell_Init(hSpell,"dic\de_AT_igerman98.aff","dic\de_AT_igerman98.dic","lib\...
- 27 Oct 2020, 09:09
- Forum: AutoHotkey v2 Help
- Topic: 4 explorer windows + launch programs on starup
- Replies: 1
- Views: 216
Re: 4 explorer windows + launch programs on starup
take a look at this video.
https://www.youtube.com/watch?v=0kGP8S9o7qI
https://www.youtube.com/watch?v=0kGP8S9o7qI
- 27 Oct 2020, 03:38
- Forum: Ich brauche Hilfe
- Topic: AutoLesefehlerKorrektur
- Replies: 4
- Views: 214
Re: AutoLesefehlerKorrektur
Wie wäre es einen lokalen Spellchecker zu verwenden? Leider habe ich nicht herausfinden können, den Windowseigenen https://docs.microsoft.com/de-de/windows/win32/intl/about-the-spell-checker-api?redirectedfrom=MSDN zu verwenden. Aber hier im Forum gibt es das hier https://www.autohotkey.com/boards/v...
- 26 Oct 2020, 14:12
- Forum: Tooltime
- Topic: RIAA blockiert youtube-dl.exe
- Replies: 4
- Views: 675
Re: RIAA blockiert youtube-dl.exe
Mit blockieren meinst du das herunterladen, oder? Ich konnte gestern noch ein paar Videos downloaden.
Ich habe da noch ein nettes Video von Mental Outlaw zu dem Thema https://www.youtube.com/watch?v=rsUTtpb3k-w
Ich habe da noch ein nettes Video von Mental Outlaw zu dem Thema https://www.youtube.com/watch?v=rsUTtpb3k-w
- 26 Oct 2020, 14:07
- Forum: Ask For Help
- Topic: Programmatically change path of #32770 window
- Replies: 5
- Views: 231
Re: Programmatically change path of #32770 window
I got caught by your question. Unfortunately I can't give you a solution. As I understood the issue. The #32770 is not an application window. It's a class. Therefor the Powershell script doesn't list it. Trying to modify a class via dcom is very hard (no one gave an example). Every time this questio...
- 26 Oct 2020, 13:01
- Forum: Ich brauche Hilfe
- Topic: DLL laden
- Replies: 10
- Views: 267
Re: DLL laden
Ich bin in dem Thema leider nicht so sattelfest. Trotzdem treiben mich ein paar Fragen um, die du mir sicherlich beantworten kannst. Eine EXE Datei ist ein fertiges Programm, dass man ausführen kann. Wenn es läuft, dann passiert etwas. Eine DLL ist eine Library, in dem speziellen Fall eine während d...
- 26 Oct 2020, 12:53
- Forum: Ich brauche Hilfe
- Topic: Bestimmten Combobox-Inhalt auf Edit übertragen
- Replies: 5
- Views: 193
Re: Bestimmten Combobox-Inhalt auf Edit übertragen
Nicht böse sein, jedoch willst du doch das Kassenprogramm entwickeln und nicht von der Community entwickeln lassen. Wie wäre es, wenn du deinen Code postest und sagst, wo du nicht weiterkommst. Dann wird dir hier immer geholfen. Ich poste die mal hier ne MiniGui, die ich mal gemacht habe, als Idee w...
- 09 Sep 2020, 00:13
- Forum: Ich brauche Hilfe
- Topic: Verzeichnis effektiv durchsuchen
- Replies: 11
- Views: 579
Re: Verzeichnis effektiv durchsuchen
Unter Windows sind viele Dateien in einem Verzeichnis keine "schöne" Lösung. Besonders bei den Datenübernahmen im CAD/PLM Bereich. =) Was ich empfehlen würde ist, dass Ihr eine Verzeichnisebene dazwischen schiebt. Ich vermute, dass Eure Dateibenennungen immer die gleiche Struktur und Länge haben. Ma...
- 09 Sep 2020, 00:00
- Forum: Ich brauche Hilfe
- Topic: Verzeichnis effektiv durchsuchen
- Replies: 11
- Views: 579
Re: Verzeichnis effektiv durchsuchen
Für solche Fälle verwende ich immer PowerShell. Das ist echt mächtig. Guck dir mal diesen Post an https://stackoverflow.com/q/19774097/9307482 wenn du AHK programmieren kannst, dann sollte die Syntax verständlich sein. =)
- 07 Sep 2020, 17:25
- Forum: Gaming
- Topic: Exit the loop every time if it was done more than N times Topic is solved
- Replies: 4
- Views: 173
Re: Exit the loop every time if it was done more than N times Topic is solved
counter_first := 0 Loop, 100 { MsgBox,,,First %counter_first% counter_second := 0 Loop, 100 { MsgBox,,, Second %counter_second% if counter_second > 9 Break counter_second += 1 } if counter_first > 10 Break counter_first += 1 } Now you have only to know where to reset your counter variables, what ar...
- 07 Sep 2020, 17:14
- Forum: Ich brauche Hilfe
- Topic: UNC Pfad/Path Validation
- Replies: 3
- Views: 200
Re: UNC Pfad/Path Validation
Ein bisschen regex magic #NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases. ; #Warn ; Enable warnings to assist with detecting common errors. SendMode Input ; Recommended for new scripts due to its superior speed and reliability. SetWorkingDir %A_ScriptDir% ; Ens...
- 07 Sep 2020, 16:26
- Forum: Gaming
- Topic: Exit the loop every time if it was done more than N times Topic is solved
- Replies: 4
- Views: 173
Re: Exit the loop every time if it was done more than N times Topic is solved
I would use an index variable. You can define for every loop a separate one. Increase it and break at your defined counter.
- 07 Sep 2020, 16:22
- Forum: Gaming
- Topic: Help with script for TELEGRAM Topic is solved
- Replies: 11
- Views: 1370
Re: Help with script for TELEGRAM Topic is solved
Strange. i didn't block anyone on telegram. But you don't need to ask. I don't give you the code.
- 29 Aug 2020, 06:20
- Forum: Gaming
- Topic: Help with script for TELEGRAM Topic is solved
- Replies: 11
- Views: 1370
Re: Help with script for TELEGRAM Topic is solved
No. The Findtext script is only to get the "screenshot" which you are searching. FindText creates a code. This code you have to use to create the "loop".
As I wrote before. I don't post the code.
As I wrote before. I don't post the code.
- 27 Aug 2020, 16:52
- Forum: Ask For Help
- Topic: Send MMS or SMS message to iPhone
- Replies: 2
- Views: 125
- 24 Aug 2020, 01:39
- Forum: Ask For Help
- Topic: Time calculations from text file Topic is solved
- Replies: 4
- Views: 327
Re: Time calculations from text file Topic is solved
Looking at the documentation https://www.autohotkey.com/docs/commands/EnvSub.htm a time calculation is build in, when giving it the standard time format YYYYMMDDHH24MISS https://www.autohotkey.com/docs/commands/FileSetTime.htm#YYYYMMDD. Try to replace the ":" and do a "normal" subtraction.
- 24 Aug 2020, 01:29
- Forum: Gaming
- Topic: Help with script for TELEGRAM Topic is solved
- Replies: 11
- Views: 1370
Re: Help with script for TELEGRAM Topic is solved
Yeah. Just copy the code into a ".ahk" file and then you can execute it. The tool is easy. You define a text (needle), that should be found on the screen. Then the tool creates a bit of code, that you can use in your main AHK script in a loop. And everytime the needle is found, the function return a...
- 21 Aug 2020, 09:32
- Forum: Gaming
- Topic: Help with script for TELEGRAM Topic is solved
- Replies: 11
- Views: 1370
Re: Help with script for TELEGRAM Topic is solved
OK. I have a script. I used FindText ( https://www.autohotkey.com/boards/viewtopic.php?f=6&t=17834 ). Unfortunately the web app is not good, so you have to use the native client on Windows. The script has a few issues, and therefore they immediately recognized me as cheater. For example, you have to...
- 17 Aug 2020, 06:58
- Forum: Ask For Help
- Topic: Outlook Calendar read events
- Replies: 1
- Views: 968
Re: Outlook Calendar read events
Hi. I stole some code from here https://stackoverflow.com/q/21477599/9307482 and https://www.autohotkey.com/boards/viewtopic.php?p=135003#p135003 This is what I got for you. I changed your point direct to items to set the IncludeRecurrences and added the messagebox because I'm using a German outlook...