Search found 182 matches

by tomoe_uehara
22 Aug 2018, 22:21
Forum: About This Community
Topic: autohotkey.net up for grabs
Replies: 47
Views: 47566

Re: autohotkey.net up for grabs

What's the purpose of getting autohotkey.net domain back, only for script storage? If yes, then just use git hosting services, they usually give 'more than enough' storage for casual users. Note: I'm not endorsing any hosting services in this list . So my point is, there's no benefit of paying $3k j...
by tomoe_uehara
22 Aug 2018, 10:57
Forum: Ask for Help (v1)
Topic: Help with math please
Replies: 9
Views: 2357

Re: Help with math please

Hi, tomoe_uehara ! :wave: Try this... Hello wolf_II & garry, the script works great, Thanks! Maybe this will give a more homogeneous spread Sorry but I need the math, by using only the MouseMove command, AHK calculates the coordinates by itself, thus I can't accept this as accepted answer, sorry ;)...
by tomoe_uehara
22 Aug 2018, 10:39
Forum: Tutorials (v1)
Topic: [Help Requested]:Teamwork
Replies: 42
Views: 38874

Re: [Help Requested]:Teamwork

Spoiler
Both the wall and floor texture didn't get loaded.
by tomoe_uehara
22 Aug 2018, 00:35
Forum: Tutorials (v1)
Topic: [Help Requested]:Teamwork
Replies: 42
Views: 38874

Re: [Help Requested]:Teamwork

Sorry for necroing an old thread, but the LoadTexture didn't work on Windows 10 x64
by tomoe_uehara
21 Aug 2018, 22:36
Forum: Ask for Help (v1)
Topic: Help with math please
Replies: 9
Views: 2357

Help with math please

Hello, here's what I'm trying to do: Press F1 to start the script It will move the mouse cursor to center of monitor screen Then the mouse cursor will move away from the center, toward the edge of the screen The angle should be randomized (imagine an exploding firework) When the mouse cursor hits th...
by tomoe_uehara
01 May 2018, 09:49
Forum: Ask for Help (v1)
Topic: Remove HTMl tags and curses
Replies: 11
Views: 2196

Re: post removed

Note to the original poster: Please refrain from deleting your own posts after getting your answer.
The purpose of this forum is to maintain collection of information, so other users can search and possibly found the answer to their questions.
by tomoe_uehara
19 Feb 2018, 21:42
Forum: Ask for Help (v1)
Topic: deleting part of MP3-title in its metadata
Replies: 2
Views: 871

Re: deleting part of MP3-title in its metadata

Yes AHK can edit it, with the help of a 3rd party .dll file.
For full information, you can refer to this topic
by tomoe_uehara
19 Feb 2018, 21:35
Forum: Ask for Help (v1)
Topic: DLLCall("mouse_event"): How do I use continous values?
Replies: 6
Views: 4598

Re: DLLCall("mouse_event"): How do I use continous values?

I'm afraid you can't use a float value because it's stated on the MSDN page that it only accepts integer value.
However, if you want to refine your mouse movement, you can try to change your mouse's DPI.
You can refer to this topic
by tomoe_uehara
19 Feb 2018, 21:17
Forum: Ask for Help (v1)
Topic: Newbie Q - Edit box and indexes
Replies: 1
Views: 452

Re: Newbie Q - Edit box and indexes

Maybe this? ::!H:: Array := [] myVar := 1 Array.push("Dog") Array.push("cat") Array.push("mouse") MsgBox % Array[myvar] ; so far so good ; everything up to here works. Gui, New Gui, Add, Text,, varid Gui, Add, Edit, vvarid Gui, Add, Button, Default gRunMe, OK Gui, Show return OK: Gui, Submit MsgBox ...
by tomoe_uehara
07 Jun 2017, 07:26
Forum: Ask for Help (v1)
Topic: How to connect to DDE server? (MT4)
Replies: 3
Views: 5877

Re: How to connect to DDE server? (MT4)

Hmm I think it will be easier to write an EA directly rather than using AHK, but I'm not sure what you're going to do though
by tomoe_uehara
07 Jun 2017, 07:23
Forum: Ask for Help (v1)
Topic: Need help with converting Korean characters
Replies: 1
Views: 737

Need help with converting Korean characters

Hello, I have a question about character conversion, basically I need to convert this -> Âû¶û¸ðÀÚ into this -> 찰랑모자 and vice versa.
But I have no idea on how to do this..
Any help is appreciated, thank you very much :)
by tomoe_uehara
15 Apr 2017, 11:19
Forum: About This Community
Topic: [Vote] IRC Channel Merge Proposal
Replies: 9
Views: 5367

[Vote] IRC Channel Merge Proposal

Hello, As most of you already know, AutoHotkey community has multiple platforms to discuss things and socialize together. We have Forum, Webinar, IRC, etc. Today I want to bring up the IRC platform. Currently, there are two channels there, #ahk and #ahkscript. Originally there's only 1 channel, the ...
by tomoe_uehara
14 Apr 2017, 12:09
Forum: Ask for Help (v1)
Topic: Gui, Add, Hotkey and Joypad buttons ?
Replies: 5
Views: 1399

Re: Gui, Add, Hotkey and Joypad buttons ?

Test your joystick button using this script (Taken from AutoHotkey help file) ; July 6, 2005: Added auto-detection of joystick number. ; May 8, 2005 : Fixed: JoyAxes is no longer queried as a means of ; detecting whether the joystick is connected. Some joysticks are ; gamepads and don't have even a ...
by tomoe_uehara
01 Apr 2017, 17:07
Forum: Ask for Help (v1)
Topic: Script that Checks for processes without using Infinite Loop Topic is solved
Replies: 10
Views: 2953

Re: Script that Checks for processes without using Infinite Loop Topic is solved

Well, your Loop works like 10ms (or so) per cycle, if you add a Sleep on it, it will reduce the amount of cycle per second. Several IFs won't hurt the performance so much, but the speed of your Loop is what really matters. Or you can try to use IfWinExist command, but it can't determine from PID, it...
by tomoe_uehara
01 Apr 2017, 16:58
Forum: Ask for Help (v1)
Topic: creating a new email from GUI with several attachments
Replies: 4
Views: 1515

Re: creating a new email from GUI with several attachments

Hello, you can find such info on AHK Documentation, it's located on your AHK installation directory. You can search and learn about thing called as "Variable", where you can put some data on it. For example: var1 = banana var2 = apple var3 = orange msgbox Example 1: I want to eat a %var1%, I don't l...
by tomoe_uehara
01 Apr 2017, 16:49
Forum: Ask for Help (v1)
Topic: Dropdown menu with no button.
Replies: 9
Views: 2027

Re: Dropdown menu with no button.

Hello, you can use a g-label, but in your code there's no actual link on it?
Another work around is to make 2 DropDownLists but make the second to be 'invisible' and then use AltSubmit on them.
by tomoe_uehara
01 Apr 2017, 16:11
Forum: Ask for Help (v1)
Topic: Script that Checks for processes without using Infinite Loop Topic is solved
Replies: 10
Views: 2953

Re: Script that Checks for processes without using Infinite Loop Topic is solved

I think you can reduce the CPU usage by adding a Sleep, or just use SetTimer.
Your Loop is running endlessly and eating your CPU resources.
by tomoe_uehara
01 Apr 2017, 13:04
Forum: Ask for Help (v1)
Topic: checkbox issue Topic is solved
Replies: 5
Views: 1706

Re: checkbox issue Topic is solved

Hello, the checkbox works fine, I guess your problem lies within your IF statement: ; SU Quickpaste Gui,+AlwaysOnTop gui, font, s10, Verdana Gui, Add, Tab2, x42 y20 w390 h310 , SC created | Chasing | PO created Gui, Add, Edit, vPR x232 y100 w160 h30 Gui, Add, Edit, vSC x232 y170 w160 h30 Gui, Add, T...
by tomoe_uehara
01 Apr 2017, 12:51
Forum: Gaming Help (v1)
Topic: Chat Game help
Replies: 5
Views: 1515

Re: Chat Game help

You can try this

Code: Select all

!X::
SetKeyDelay, 50
Sleep 500
SendInput {enter}reverse{enter}
return
Or this:

Code: Select all

!X::
Sleep 500
SendPlay {enter}reverse{enter}
return

Go to advanced search