Search found 27 matches

by IRBaboon
15 Mar 2016, 08:32
Forum: Ich brauche Hilfe
Topic: DllCall naming convention
Replies: 8
Views: 2446

Re: DllCall naming convention

Hallo nnnik, vielen Dank noch mal und entschuldige die späte Antwort, mich hat die Grippe dahingerafft. Einen Versuch mach ich noch, danach lass ich dich in Ruhe da das Thema langsam nichts mehr mit ahk zu tun hat und mein Wissensstand auch nicht annähernd ausreicht um hier Fortschritte zu machen. M...
by IRBaboon
08 Mar 2016, 08:23
Forum: Spiele
Topic: Anfänger braucht Hilfe
Replies: 1
Views: 4561

Re: Anfänger braucht Hilfe

Code: Select all

toggle = 0

F1::
If (toggle = 0) {
    SendInput, t
    SetTimer, myLabel, 121000
} else
    SetTimer, myLabel, Off
    toggle = 0
return

myLabel:
toggle = 1
SendInput, t
return

Esc::
ExitApp
return
by IRBaboon
08 Mar 2016, 05:07
Forum: Ich brauche Hilfe
Topic: DllCall naming convention
Replies: 8
Views: 2446

Re: DllCall naming convention

Ich versuche jetzt schon seit ein paar Tagen ein Objekt für Id3Frame zu bekommen. Habe mir die Referenz für COM Objekte usw. mehrmals durchgelesen und auch wikipedia etc. und ich bin noch nicht wirklich klüger. Wie kommt man bei ComObjCreate("ID3COM.ID3COMTag") auf das ID3COM und auf das ID3COMTag? ...
by IRBaboon
02 Mar 2016, 05:32
Forum: Ich brauche Hilfe
Topic: DllCall naming convention
Replies: 8
Views: 2446

Re: DllCall naming convention

DllCall("shell32\ShellExecute", "uint", 0, "str", "RunAs", "str", "regsvr32", "str", Path, "str", A_WorkingDir, "int", 1) ;registers the dll with admin rights hier wird das RunAs anscheinend nicht beachtet, die Fehlermeldung sagt das die Ressource nicht vorhanden ist. Wenn ich die Admin Abfrage sep...
by IRBaboon
29 Feb 2016, 03:02
Forum: Ich brauche Hilfe
Topic: DllCall naming convention
Replies: 8
Views: 2446

Re: DllCall naming convention

Vielen Dank das du dir so viel Zeit genommen hast! Nirsoft ist eine super Seite, hab dort schon oft nützliche tools gefunden. Bei mir zeigt es exportierte Funktionen an, evtl. 32/64 bit Programm- bzw. dll-Version? (ID3Tag_Link 0x10006bc8 0x00006bc8 41 (0x29) Exported Function) Allerdings ist dort au...
by IRBaboon
25 Feb 2016, 09:51
Forum: Ich brauche Hilfe
Topic: Surface Onenote Screenshot erstellen
Replies: 1
Views: 1120

Re: Surface Onenote Screenshot erstellen

keine ahnung was F19 ist.. bei mir gehts nur bis F12 :) .. hab mal F9 draus gemacht. Wenn du das sleep und send, ^n nicht brauchst kann das auch raus

Code: Select all

#F9::
run, C:\Program Files\Microsoft Office 15\root\office15\onenote.exe
Sleep, 1000
Send, ^n
return
by IRBaboon
25 Feb 2016, 09:14
Forum: Ask for Help (v1)
Topic: How to keyboard create N send Ctrl?
Replies: 5
Views: 2197

Re: How to keyboard create N send Ctrl?

then try this:

n::LControl

i recommend reading https://www.autohotkey.com/docs/misc/Remap.htm
by IRBaboon
25 Feb 2016, 05:58
Forum: Ask for Help (v1)
Topic: How to keyboard create N send Ctrl?
Replies: 5
Views: 2197

Re: How to keyboard create N send Ctrl?

n:: send {LControl}
by IRBaboon
25 Feb 2016, 05:47
Forum: Ich brauche Hilfe
Topic: <xyz> aus dem String "abc <xyz>" entfernen
Replies: 2
Views: 1273

Re: <xyz> aus dem String "abc <xyz>" entfernen

warum es das erste < nicht entfernt hat kann ich auch nicht erklären aber * ist nur ein quantifier. der hätte sich in deinem fall eigentlich auf das erste < beziehen sollen. der . bedeutet das er alle zeichen ausser zeilenumbrüche findet. das * danach bedeutet das er das so oft macht wie möglich (gr...
by IRBaboon
25 Feb 2016, 04:38
Forum: Ich brauche Hilfe
Topic: DllCall naming convention
Replies: 8
Views: 2446

DllCall naming convention

Hallo zusammen, ich versuche eine Funktion aus einer dll aufzurufen. Leider bin ich nicht fähig die richtigen Argumente zu übergeben wie es scheint. Das ist mein erster Versuch mit DllCall, deswegen bin ich mit nicht sicher ob die class reference der dll überhaupt die benötigten Informationen hergib...
by IRBaboon
09 Feb 2016, 08:11
Forum: Ask for Help (v1)
Topic: Safe handling of passwords
Replies: 12
Views: 14255

Re: Safe handling of passwords

I'm not sure that the crypt.ahk library is fully working. There may be problems with Unicode/UTF-8 and/or x64 systems. But im not sure. Here's another one for TAE algorithm by Laszlo : https://autohotkey.com/board/topic/4147-small-and-fast-text-file-encryptor/ . Whatever you do, you're still vulnera...
by IRBaboon
09 Feb 2016, 04:49
Forum: Ask for Help (v1)
Topic: Outlook
Replies: 6
Views: 1765

Re: Outlook

I think that just a copy/paste error, or else the script wouldn't run. Are you sure the body of the message is active (you see the blinking caret) when triggering the hotkey? The missing "W" may be a copy/paste error. But since he wrote WinActivate it means that every time the script is started the...
by IRBaboon
04 Feb 2016, 09:35
Forum: Spiele
Topic: Warface norecoil Macro/Script
Replies: 2
Views: 8135

Re: Warface norecoil Macro/Script

findet man über suchmaschinen nen haufen.. allerdings sind das meist nur pseudo norecoil weil sie die entfernung zum gegner nicht beachten. wenn man das machen will muss man memory überschreiben.. macht man das, wird das auch schnell detected und gebannt.. das beste wäre üben oder sich eingestehn da...
by IRBaboon
04 Feb 2016, 08:18
Forum: Other Utilities & Resources
Topic: Anyone familiar with captcha sniper?
Replies: 4
Views: 4930

Re: Anyone familiar with captcha sniper?

https://www.youtube.com/watch?v=NNO-mPFm0fg

you could also pay for solving captchas: imagetyperz[dot]com
by IRBaboon
02 Feb 2016, 08:59
Forum: Ask for Help (v1)
Topic: New, can't seem to get this simple script to work.
Replies: 7
Views: 1817

Re: New, can't seem to get this simple script to work.

Code: Select all

!1::
SendInput {LButton}
Sleep 300
SendInput {1}
Return
i changed ^1 to !1 (altkey+1) cause ^1 is blocked from another hotkey for me
by IRBaboon
02 Feb 2016, 08:42
Forum: Ask for Help (v1)
Topic: Outlook
Replies: 6
Views: 1765

Re: Outlook

your first line is wrong. should be #IfWinActive.
the rest is working for me with Outlook 2013 Win7 x64.
try to run ahk or your compiled script with admin privileges.
by IRBaboon
01 Feb 2016, 05:35
Forum: Gaming Help (v1)
Topic: A noob user writes...
Replies: 4
Views: 1720

Re: A noob user writes...

Try to compile it and run with admin privileges
by IRBaboon
28 Jan 2016, 09:20
Forum: Ask for Help (v1)
Topic: Maximize window anomaly
Replies: 16
Views: 3817

Re: Maximize window anomaly

Win7 64bit, two screens, the second one extends the desktop

on screen one with MaximizeBox : 748
on screen two with MaximizeBox : 748

on screen one without MaximizeBox: 718
on screen two without MaximizeBox: 748
by IRBaboon
28 Jan 2016, 09:11
Forum: Ask for Help (v1)
Topic: Logging in to auction site and entering value
Replies: 2
Views: 932

Re: Logging in to auction site and entering value

Take a look in documentation for SetTimer, Sleep and SetKeyDelay
by IRBaboon
28 Jan 2016, 08:46
Forum: Ask for Help (v1)
Topic: Cannot execute AHK scripts within certain programs
Replies: 3
Views: 1118

Re: Cannot execute AHK scripts within certain programs

I migrated my old HDD to a bigger one using a cloning tool. This has worked without any problems, but could this have caused some issues in relation to permissions? And if yes, is there any way to fix permissions? If you really cloned it then there can't be issues with permissions. Its completely t...

Go to advanced search