Search found 804 matches

by divanebaba
10 Nov 2017, 01:03
Forum: Ask for Help (v1)
Topic: OMG lisbox making me crazy. Help please. Topic is solved
Replies: 3
Views: 736

Re: OMG lisbox making me crazy. Help please. Topic is solved

Hi.
Maybe it is an encoding problem. Try to save allatten.txt in UTF-8 format.
The help says:
*t: Replaces any/all occurrences of carriage return & linefeed (`r`n) with linefeed (`n)
So try the *t parameter like:

Code: Select all

fileread, readallatten, *t %userprofile%\managertools\attendance\allatten.txt
by divanebaba
10 Nov 2017, 00:30
Forum: Ich brauche Hilfe
Topic: Icons in Tab Topic is solved
Replies: 3
Views: 1049

Icons in Tab Topic is solved

Hallo. Das Beispiel in der Hilfedatei, um Icons in Tabs anzuzeigen, funktioniert bei mir nicht. Fehlermeldung lautet: " AutoHotkey Unicode 64-bit funktioniert nicht mehr. ... " Schade, ein paar Icons in den Reitern wäre nett. Ich habe etwas gefunden, welches TC_EX.ahk genannt wird und auch funktioni...
by divanebaba
29 Oct 2017, 10:31
Forum: Ask for Help (v1)
Topic: WinWait Loop and WinClose Repeat Topic is solved
Replies: 3
Views: 1019

Re: WinWait Loop and WinClose Repeat Topic is solved

Hi.
Take this as base to modify for your own needs.

Code: Select all

breakthis = no
Loop
{
	ifequal, breakthis, yes
	break
	sleep 1000
	ifwinactive, Team calc
	{
		; do something
	}
}
return

$F7::
breakthis = yes
return
WinWait and similar commands can be very stressful.
by divanebaba
26 Oct 2017, 14:59
Forum: Ask for Help (v1)
Topic: Run script that opens word - if I run another script (10 different) end it
Replies: 18
Views: 4026

Re: Run script that opens word - if I run another script (10 different) end it

Why don't you trigger the rest of your code with a hotkey?
When the user knows, that a script is running, it would be not to much required, pressing a predifined key.
WinWait and similar commands can be very unreliable.
by divanebaba
26 Oct 2017, 14:42
Forum: Ask for Help (v1)
Topic: What does '%' signify in the following
Replies: 2
Views: 478

Re: What does '%' signify in the following

When you enclose a variable into %-chars, you get the content of the variable. For example: x = 2500 sleep %x% In this case, AHK takes the content of the variable called x. You can use only one %-char at the beginning, to make calculations. For example: x = 2500 y = 3 sleep % x * y In this case, AHK...
by divanebaba
26 Oct 2017, 14:31
Forum: Ask for Help (v1)
Topic: msgbox
Replies: 2
Views: 603

Re: msgbox

As I know, inserting GUI-elements into a MsgBox is not possible. A MsgBox has its own parameters to modify, for example, the buttons, that can be shown or its behaviour. When you want to insert text into more than one field at the same time, you should use one of the GUI-elements like below: Gui, ad...
by divanebaba
20 Oct 2017, 15:36
Forum: Off-topic Discussion
Topic: Looking for hired help! (Word COM)
Replies: 3
Views: 1608

Re: Looking for hired help! (Word COM)

Hi. I've seen your pm to me and the macro you've recorded. When a predefined letter with letterheads and so on has to be created, normally a few words or dates are filled in. For example, an invoice for a company. Nobody creates everytime a complete new document. Most information is static, like the...
by divanebaba
17 Oct 2017, 02:32
Forum: Pulovers Macro Creator
Topic: Hello someone can help me how to make this 2 gui 1
Replies: 2
Views: 2521

Re: Hello someone can help me how to make this 2 gui 1

Hi. I don't know, what exactly you wish. I have only reordered your code and turn some lines into comment lines and have achieved a bit different Gui. Maybe this was your desired purpose. ; Gui, 1:Add, Picture, w750 h-1 +BackgroundTrans vT1, untitled3.png ; Gui, 1:Show InputBox, uPass, Password`?, E...
by divanebaba
17 Oct 2017, 01:12
Forum: Off-topic Discussion
Topic: Looking for hired help! (Word COM)
Replies: 3
Views: 1608

Re: Looking for hired help! (Word COM)

Hi. There are definitely many ways to solve your issue. One way I realized filling Microsoft Office Word documents is, to insert something called in german language "Textmarke" (Maybe called Bookmark in Redmond) and then fill it with AHK. To find out, which Word command is called "Textmarke" , look ...
by divanebaba
17 Oct 2017, 00:30
Forum: Ask for Help (v1)
Topic: CTRL, control send, and block input
Replies: 3
Views: 1451

Re: CTRL, control send, and block input

Hi.
Maybe you will get more sensible support, when you post your whole script or at least the relevant whole label.
by divanebaba
17 Oct 2017, 00:20
Forum: Ask for Help (v1)
Topic: Use AutoHotKey to send Email via Gmail
Replies: 7
Views: 3543

Re: Use AutoHotKey to send Email via Gmail

Hi. My example could look a little bit tricky but after so many fails it worked fine. The thread is in german language. If you have not visited school in Germany, you should have no problems to understand. You only need Original Microsoft Powershell and you have to allow gmail to accept bit less sec...
by divanebaba
16 Oct 2017, 06:50
Forum: Ask for Help (v1)
Topic: help with clip filter
Replies: 3
Views: 590

Re: help with clip filter

Hi.
You could save your digits into a variable and than you can use sort with U-parameter to remove duplicates.

EDIT: Sort is not able to solve this issue.
BoBo made me aware of my mistake.
EDIT: Not mistake. I meant miseducation. :HeHe: :HeHe: :trollface: :trollface:
by divanebaba
16 Oct 2017, 06:31
Forum: Ask for Help (v1)
Topic: If message appears, press ''z'' ... Topic is solved
Replies: 1
Views: 366

Re: If message appears, press ''z'' ... Topic is solved

To less information.
If it is a window, you can use ifwinexist.
by divanebaba
16 Oct 2017, 06:26
Forum: Gaming Help (v1)
Topic: Disable the Enter key Topic is solved
Replies: 1
Views: 1488

Re: Disable the Enter key Topic is solved

Code: Select all

$Enter::return
will work. (I hope:)
For the enter-key at the numpad.

Code: Select all

$NumPadEnter::return
by divanebaba
16 Oct 2017, 06:16
Forum: Ask for Help (v1)
Topic: Script causes mouse to get stuck
Replies: 6
Views: 1011

Re: Script causes mouse to get stuck

Hi. I think that this line sendInput {LAlt down} stucks your script. Try it with $ -prefix to prevent the hotkey triggering itself. $Alt:: ... You can add the $ -prefix even to your other hotkeys. EDIT: What is this? mouseclick, left, %c%, %v%,c 1, 0 I don't find any information about the " c 1 " pa...
by divanebaba
28 Sep 2017, 08:50
Forum: Ask for Help (v1)
Topic: Need helping editing a ListView that pulls results back. Topic is solved
Replies: 6
Views: 1134

Re: Need helping editing a ListView that pulls results back. Topic is solved

Hi, bballjoe12. You have to parse the content of your array with " Loop, parse ... ", but I don't know how to do this. I'm using the script Seek -- by Phi as template for similar tasks. Look into your help file under "Script showcase". This is everything I can do with my german education for foreign...
by divanebaba
28 Sep 2017, 07:03
Forum: Ask for Help (v1)
Topic: Need helping editing a ListView that pulls results back. Topic is solved
Replies: 6
Views: 1134

Re: Need helping editing a ListView that pulls results back. Topic is solved

Answer 1: LV_Add("", SubStr(A_LoopFileName, 1, -4), CTime(A_LoopFileTimeCreated), A_LoopFileFullPath) Code above fills the LV at program start. Dates and paths are derived correctly in a parsing loop. LV_Add("", FileName) Code above in your search label writes only the name of the file. There are no...
by divanebaba
24 Sep 2017, 15:08
Forum: Ask for Help (v1)
Topic: help with gui Topic is solved
Replies: 5
Views: 1220

Re: help with gui Topic is solved

Hi.
Try

Code: Select all

2GuiClose
or

Code: Select all

Gui, 2: destroy
in combine with

Code: Select all

Gui, 1: default
and similar commands.
As Spawnova said, without seeing your code, real sensible support is difficult.
by divanebaba
24 Sep 2017, 14:56
Forum: Ask for Help (v1)
Topic: Need a simple scirpt
Replies: 2
Views: 564

Re: Need a simple scirpt

Hi. Could it be, that you're in wrong section? The AHK-forum has a special GAMING-forum. Last time I reply a displaced question, somebody try to discredit my unbelievable high IQ :HeHe: :HeHe: :trollface: :trollface: IQ without education is like a supercomputer without sensible software. Thanks to g...
by divanebaba
24 Sep 2017, 14:34
Forum: Ask for Help (v1)
Topic: Remap right alt key to left ctrl left shift \
Replies: 1
Views: 790

Re: Remap right alt key to left ctrl left shift \

Hi. I'm nor sure, but sending backslash (\) don't need to be inside braces. Try it without braces Ralt::^+\ If it don't works, I'm sorry. I'm only a foreigner in Germany beeing fooled out my education. (Google Translator) :HeHe: :HeHe: Original: Ich bin nur ein um seine Bildung geprellter kleiner Tü...

Go to advanced search