Search found 264 matches

by Kobaltauge
14 May 2021, 11:31
Forum: Ich brauche Hilfe
Topic: Navigationsbereich im Windows (10) Explorer ausblenden
Replies: 8
Views: 1175

Re: Navigationsbereich im Windows (10) Explorer ausblenden

Da fällt mir noch etwas ein.
Man könnte das aktive Fenster ermitteln und dann per ControlSend die Tasten schicken. Vielleicht ist das "stabiler" und schneller weil man auf die sleeps verzichten kann.
by Kobaltauge
14 May 2021, 10:51
Forum: Ich brauche Hilfe
Topic: Navigationsbereich im Windows (10) Explorer ausblenden
Replies: 8
Views: 1175

Re: Navigationsbereich im Windows (10) Explorer ausblenden

Nicht schön aber selten.
Ich habe diese Seite gefunden. https://techne.alaya.net/?p=12885

Damit habe ich das hier gebastelt. STRG+w. Funktioniert natürlich nur auf einem deutschen Windows.

Code: Select all

^w::
Sleep, 100
Send {Alt}
sleep, 100
Send a
sleep, 100
Send n
sleep, 100
send {enter}
return
by Kobaltauge
13 May 2021, 13:42
Forum: Ich brauche Hilfe
Topic: Befehle an ein Fenster per ID-Identifikation senden
Replies: 3
Views: 632

Re: Befehle an ein Fenster per ID-Identifikation senden

Hallo. Keine Komplettlösung aber vielleicht etwas an dem du dich entlanghangeln kannst. Schau die mal den Befehl ControlSend an. Damit kann man alles Mögliche an Fenster schicken auch, wenn diese nicht im Focus sind. https://www.autohotkey.com/docs/commands/ControlSend.htm Als Identifizierung kann d...
by Kobaltauge
13 May 2021, 12:56
Forum: Ich brauche Hilfe
Topic: Navigationsbereich im Windows (10) Explorer ausblenden
Replies: 8
Views: 1175

Re: Detailbereich im Windows (10) Explorer ausblenden

Irgendwas verstehe ich nicht. Dein Screenshot zeigt den Navigationsbereich. Dein Text spricht über den Detailbereich.
Und für diesen gibt es ein Shortcut. Alt+Shift+P
grafik.png
grafik.png (12.1 KiB) Viewed 1167 times
Oder versteh ich etwas falsch?
by Kobaltauge
28 Oct 2020, 04:39
Forum: Ich brauche Hilfe
Topic: AutoLesefehlerKorrektur
Replies: 4
Views: 819

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...
by Kobaltauge
27 Oct 2020, 16:55
Forum: Ich brauche Hilfe
Topic: AutoLesefehlerKorrektur
Replies: 4
Views: 819

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\...
by Kobaltauge
27 Oct 2020, 03:38
Forum: Ich brauche Hilfe
Topic: AutoLesefehlerKorrektur
Replies: 4
Views: 819

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...
by Kobaltauge
26 Oct 2020, 14:12
Forum: Tooltime
Topic: RIAA blockiert youtube-dl.exe
Replies: 4
Views: 4617

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
by Kobaltauge
26 Oct 2020, 14:07
Forum: Ask for Help (v1)
Topic: Programmatically change path of #32770 window
Replies: 10
Views: 1258

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...
by Kobaltauge
26 Oct 2020, 13:01
Forum: Ich brauche Hilfe
Topic: DLL laden
Replies: 10
Views: 776

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...
by Kobaltauge
26 Oct 2020, 12:53
Forum: Ich brauche Hilfe
Topic: Bestimmten Combobox-Inhalt auf Edit übertragen
Replies: 5
Views: 673

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...
by Kobaltauge
09 Sep 2020, 00:13
Forum: Ich brauche Hilfe
Topic: Verzeichnis effektiv durchsuchen
Replies: 11
Views: 1366

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...
by Kobaltauge
09 Sep 2020, 00:00
Forum: Ich brauche Hilfe
Topic: Verzeichnis effektiv durchsuchen
Replies: 11
Views: 1366

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. =)
by Kobaltauge
07 Sep 2020, 17:25
Forum: Gaming Help (v1)
Topic: Exit the loop every time if it was done more than N times Topic is solved
Replies: 4
Views: 630

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...
by Kobaltauge
07 Sep 2020, 17:14
Forum: Ich brauche Hilfe
Topic: UNC Pfad/Path Validation
Replies: 3
Views: 663

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...
by Kobaltauge
07 Sep 2020, 16:26
Forum: Gaming Help (v1)
Topic: Exit the loop every time if it was done more than N times Topic is solved
Replies: 4
Views: 630

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.
by Kobaltauge
07 Sep 2020, 16:22
Forum: Gaming Help (v1)
Topic: Help with script for TELEGRAM Topic is solved
Replies: 11
Views: 2066

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.
by Kobaltauge
29 Aug 2020, 06:20
Forum: Gaming Help (v1)
Topic: Help with script for TELEGRAM Topic is solved
Replies: 11
Views: 2066

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.

Go to advanced search