Search found 47 matches

by ahkDustVorteX
05 Apr 2018, 12:16
Forum: Notepad++
Topic: Enable Function List in Notepad++ for AHK Scripts (with classes now)
Replies: 64
Views: 75815

Re: Enable Function List in Notepad++ for AHK Scripts (with classes now)

Hi Trogludite,

I'm glad that this thread helped you. If you have any idea to share please feel free.

Regards
by ahkDustVorteX
27 Dec 2017, 14:21
Forum: Ask for Help (v1)
Topic: Sending Special Character for non-English languages Topic is solved
Replies: 19
Views: 6315

Re: Sending Special Character for non-English languages Topic is solved

Hi Lexicos and Helgef,

You were right. I saved a new file in notepad++ as UTF-8 with BOM, and things worked.

Thanks a lot.
by ahkDustVorteX
27 Dec 2017, 14:07
Forum: Ask for Help (v1)
Topic: How to add to special number ?
Replies: 3
Views: 1195

Re: How to add to special number ?

Hi,

I don't think that sending 999 straight will make the operand add. You should treat input text as a string. Hence, if the script 'see' 1 in the inputbox, it will send '000' as text..
by ahkDustVorteX
26 Dec 2017, 06:44
Forum: Ask for Help (v1)
Topic: How to add to special number ?
Replies: 3
Views: 1195

Re: How to add to special number ?

Hi,

I don't get the whole idea. Do you want to add a unit (+1) every time you call this hotkey? Have you tried to use static variable?
by ahkDustVorteX
21 Dec 2017, 09:40
Forum: Ask for Help (v1)
Topic: Sending Special Character for non-English languages Topic is solved
Replies: 19
Views: 6315

Re: Sending Special Character for non-English languages Topic is solved

Hi Rindis,

It shows: x = Nível A - Inspeção B

Which is different from the original string x := "Nível A - Inspeção B"
by ahkDustVorteX
21 Dec 2017, 09:34
Forum: Gaming Help (v1)
Topic: Rainbow Six Siege Leaning AHK
Replies: 6
Views: 5547

Re: Rainbow Six Siege Leaning AHK

You have to use RButtonDown event. When you click and hold, the code begins. If you release the button, it stops.
by ahkDustVorteX
21 Dec 2017, 07:49
Forum: Gaming Help (v1)
Topic: Rainbow Six Siege Leaning AHK
Replies: 6
Views: 5547

Re: Rainbow Six Siege Leaning AHK

Hi DoobieToTheHead,

Something like this? I did not tested, but i guess is some sort of this: :)

Code: Select all

{LAlt}{RButtonDown}::
{
	i := 1
	While (i<100)
	{
		Send, q
		Sleep, 250
		Send, e
		i := i + 1
	}
	Return
}

Regards
by ahkDustVorteX
21 Dec 2017, 07:32
Forum: Ask for Help (v1)
Topic: Sending Special Character for non-English languages Topic is solved
Replies: 19
Views: 6315

Re: Sending Special Character for non-English languages Topic is solved

Hi Rindis and divanebaba, the code MsgBox % A_IsUnicode ? "Unicode" : "ANSI" tells me it is Unicode . The weird stuff, is that my script is in UTF-8 mode. And when I import the text from a file, it sends the text perfectly. But when I send a text that is a variable defined in the script, it messes u...
by ahkDustVorteX
20 Dec 2017, 13:44
Forum: Ask for Help (v1)
Topic: Sending Special Character for non-English languages Topic is solved
Replies: 19
Views: 6315

Re: Sending Special Character for non-English languages Topic is solved

Hi Rindis,

Yes, I do have a switch button for keyboard layout. I switch sometimes to english layout when I need. Is this the issue?
Dude, how you get the string, lol...

In your script, when I do "F1" it sends:

Nível A - Inspeção B

Thanks
by ahkDustVorteX
20 Dec 2017, 13:19
Forum: Ask for Help (v1)
Topic: Showing a variable within a variable
Replies: 5
Views: 1504

Re: Showing a variable within a variable

Hi Lyla, You can use the Return statement, to return the value. Search about procedures and functions. I would recomend you to do some tutorials about Autohotkey. showResult(var1,var2) { statement = The result is %var1% and %var2% Return statement } if (condition=1) { x := showResult(1,2) msgbox, %x...
by ahkDustVorteX
20 Dec 2017, 13:02
Forum: Ask for Help (v1)
Topic: Sending Special Character for non-English languages Topic is solved
Replies: 19
Views: 6315

Re: Sending Special Character for non-English languages Topic is solved

Thanks Rindis,

FileEncodings is a good idea reading from a file. I didn't know that. Thanks
Although, I still have problem when I declare the variable content directly in the script. How do you get the same string? Maybe is keyboard layout?
by ahkDustVorteX
20 Dec 2017, 12:36
Forum: Ask for Help (v1)
Topic: Showing a variable within a variable
Replies: 5
Views: 1504

Re: Showing a variable within a variable

Hey Lyla,

Why you dont use a function for that?

like:

Code: Select all


showResult(var1,var2)
{
    msgbox, The result is %var1% and %var2%
    Return
}

if (condition=1)
	showResult(1,2)
else
	showResult(3,4)
by ahkDustVorteX
20 Dec 2017, 12:25
Forum: Ask for Help (v1)
Topic: Sending Special Character for non-English languages Topic is solved
Replies: 19
Views: 6315

Sending Special Character for non-English languages Topic is solved

Hello Everyone :D , I am trying to send strings in a field using AHK script. The string has some characters that is not used in English (I am portuguese speaker), like: x := "Nível A - Inspeção B" When I send x, using send command, the x content appears weird. For instance, the character í is replac...
by ahkDustVorteX
28 Nov 2017, 12:41
Forum: Notepad++
Topic: Enable Function List in Notepad++ for AHK Scripts (with classes now)
Replies: 64
Views: 75815

Re: Enable Function List in Notepad++ for AHK Scripts (with classes now)

Hello everyone!

Thanks a lot everyone for the effort to improve this function list. I've been absent for several weeks and I am really surprised with the progress in this subject. I will update the first message with the last modification made by Nightwolf85.
by ahkDustVorteX
10 Mar 2017, 12:13
Forum: Scripts and Functions (v1)
Topic: Internet Explorer Element Spy (alternative to iWB2 Learner)
Replies: 67
Views: 42487

Re: Internet Explorer Element Spy (alternative to iWB2 Learner)

@ahkDustVorteX- thanks for the props! BTW- I find the following workd great to get a pointer to IE11
Thanks Joe. Pretty useful for IE11!
by ahkDustVorteX
22 Feb 2017, 09:17
Forum: Scripts and Functions (v1)
Topic: Internet Explorer Element Spy (alternative to iWB2 Learner)
Replies: 67
Views: 42487

Re: Internet Explorer Element Spy (alternative to iWB2 Learner)

Hey Bruttosozialprodukt! Pretty nice project btw! There are some points I would add here if you allow. The big issue I see in AHK scripts for webscrapping is that Internet Explorer have had too many upgrades, and each upgrade adds incompatibilities in AHK scripts. I realized that after I upgraded IE...
by ahkDustVorteX
13 Feb 2017, 06:02
Forum: Notepad++
Topic: Enable Function List in Notepad++ for AHK Scripts (with classes now)
Replies: 64
Views: 75815

Re: Enable Function List in Notepad++ for AHK Scripts (with classes now)

Awesome Nightwolf85!

Thanks for your interest in this subject, I appreciate your help.

I will keep my efforts to improve this function list too.
by ahkDustVorteX
07 Feb 2017, 16:04
Forum: Notepad++
Topic: Enable Function List in Notepad++ for AHK Scripts (with classes now)
Replies: 64
Views: 75815

Re: Enable Function List in Notepad++ for AHK Scripts

found your code and thought it was extremely useful, and so I took a shot at adding support for classes, including classes that use 'extends'. Hi Nightwolf86! Thanks for sharing your work! I have tried several times to add classes in this xml file but without success. It is not intuitive to add, in...
by ahkDustVorteX
27 Sep 2016, 14:39
Forum: Tutorials (v1)
Topic: MS Office COM Basics
Replies: 116
Views: 196079

Re: MS Office COM Basics

Hey Kon,

Very good job. This is a great compilation to help understand COM

Thanks a lot!

:clap:
by ahkDustVorteX
19 Sep 2016, 13:55
Forum: Ask for Help (v1)
Topic: Gui Only When Needed
Replies: 3
Views: 1811

Re: Gui Only When Needed

Hey Builder01,

This is kinda of help request, isn't it? You should remake your post in "ask for help" section.

Anyway, building GUI and rebuilding is messy and not effective. You should try making a full GUI a make it with visible property off. When you want to use it, you just enable it.

Go to advanced search