Search found 336 matches

by empardopo
09 Mar 2015, 03:44
Forum: Ask for Help (v1)
Topic: Sorry need Help
Replies: 3
Views: 1314

Re: Sorry need Help

I think the topic of this post is not very descriptive.
Can anyone change it?

Thanks!
by empardopo
09 Mar 2015, 03:30
Forum: Gaming Help (v1)
Topic: How to put a dot on center of screen?
Replies: 5
Views: 24433

Re: How to put a dot on center of screen?

Have you used google? Google is your friend. :bravo: ;Ejemplo 3 #Persistent OnExit, ExitRoutine xpos := A_ScreenWidth/2 ypos := A_ScreenHeight/2 hDrwArea := DllCall("GetDC", "uint", Null) SetTimer, SetPixel, 50 SetPixel: DllCall("SetPixel", "uint", hDrwArea, "int", xpos, "int", ypos - 1, "uint", 255...
by empardopo
26 Feb 2015, 09:42
Forum: Scripts and Functions (v1)
Topic: SciTE4AutoHotkey extension - Count occurrences of word
Replies: 50
Views: 18445

Re: SciTE4AutoHotkey v3.0.06.01 [Updated October 12 2014]

statusbar.text.1=\ #Line: $(LineNumber) | Column: $(ColumnNumber) | $(OverType) | ($(EOLMode)) | $(FileAttr) | $(countedOccurrences) Occurrences of "$(markedWord)" found Line: $(LineNumber) | Column: $(ColumnNumber) | $(OverType) | ($(EOLMode)) | Selection: $(SelLength) chars | $(countedOccurrences...
by empardopo
26 Feb 2015, 07:37
Forum: Scripts and Functions (v1)
Topic: SciTE4AutoHotkey extension - Count occurrences of word
Replies: 50
Views: 18445

Re: SciTE4AutoHotkey v3.0.06.01 [Updated October 12 2014]

I don't find any file called extension.lua... Have I make one? You should just be able to create a new file with that name with an editor and put it in the same directory. But if you don't have a Lua file, how are you getting the occurrence count to show up in your status bar like your picture show...
by empardopo
26 Feb 2015, 06:11
Forum: Scripts and Functions (v1)
Topic: SciTE4AutoHotkey extension - Count occurrences of word
Replies: 50
Views: 18445

Re: SciTE4AutoHotkey v3.0.06.01 [Updated October 12 2014]

Edit: Or perhaps you were referring to the extension.properties file That may be the best place for it. Yes that was the idea. I can upload a new extensionfile after work. Meanwhile i've put the color,alpha and lineending in the extension.properties file: The extension.properties file (same dir as ...
by empardopo
25 Feb 2015, 04:02
Forum: Scripts and Functions (v1)
Topic: SciTE4AutoHotkey extension - Count occurrences of word
Replies: 50
Views: 18445

Re: SciTE4AutoHotkey v3.0.06.01 [Updated October 12 2014]

Boiler, please could you tell me the complete instructions to implement it in my computer? Do you mean the whole thing, or you just this modification to it? I would follow haichen's instructions for implementing it in general, then I can describe how to modify it for this. Btw, would it possible to...
by empardopo
25 Feb 2015, 03:56
Forum: Ask for Help (v1)
Topic: [Solved] File-reading loop not working as EXE. Any ideas?
Replies: 6
Views: 1769

Re: [Solved] File-reading loop not working as EXE. Any idea

Miguel7 wrote:... but the problem was that my installer script didn't copy some of the images into the finished EXE's "images" folder. That's why the script worked, but the compiled version didn't (duh :lol:). Thanks again for helping me figure it out.
What installer are you using?
Thanks in advance.
by empardopo
24 Feb 2015, 09:34
Forum: Scripts and Functions (v1)
Topic: SciTE4AutoHotkey extension - Count occurrences of word
Replies: 50
Views: 18445

Re: SciTE4AutoHotkey v3.0.06.01 [Updated October 12 2014]

haichen: Here's one last mod I made to your Lua script that makes CountMarkedWords perfect for me now. Maybe it's more pronounced for me because my editor color scheme is a dark background, but I only want the highlight color for the matches it finds to be on the other matches, not superimposed ove...
by empardopo
24 Feb 2015, 09:30
Forum: Scripts and Functions (v1)
Topic: AHK Academy - AutoHotkey learning application
Replies: 8
Views: 5128

Re: AHK Academy - AutoHotkey learning application

Soft wrote:@empardopo / oops, I forgot to upload <CustomFont> library, its just only for font so you can remove it. On weekend I will upload all required lib

@garry / ur welcome!
OK, perfect. I thought I didn't know import a font...
Thanks!
by empardopo
24 Feb 2015, 07:19
Forum: Scripts and Functions (v1)
Topic: AHK Academy - AutoHotkey learning application
Replies: 8
Views: 5128

Re: AHK Academy - AutoHotkey learning application

No problem, Thanks! I have a problem when I run the ahk. >"C:\Program Files\AutoHotkey\AutoHotkey.exe" /ErrorStdOut "E:\Empardopo\Autohotkey\Programas-Y-Fuentes\Scripts\AHK Academy\src\AHK Academy.ahk" E:\Empardopo\Autohotkey\Programas-Y-Fuentes\Scripts\AHK Academy\src\AHK Academy.ahk (8) : ==> Func...
by empardopo
24 Feb 2015, 04:11
Forum: Ask for Help (v1)
Topic: AHK script does not get activated by Windows' Task Scheduler Topic is solved
Replies: 8
Views: 12554

Re: AHK script does not get activated by Windows' Task Sched Topic is solved

You could define a ini file with a time to run your task. Then, your script will check the actual time and will compare with your defined time in the ini file. While it be lower it will do nothing and when they have the same value then your script will run the task. It's only an idea and you have no...
by empardopo
23 Feb 2015, 08:34
Forum: Ask for Help (v1)
Topic: WinClose - WinWaitClose - not as expected
Replies: 8
Views: 3241

Re: WinClose - WinWaitClose - not as expected

I'm sorry. I don't know why I thought that the program waited for x seconds before closing the window.
Thank you very much for the clarification.
by empardopo
23 Feb 2015, 07:12
Forum: Ask for Help (v1)
Topic: WinClose - WinWaitClose - not as expected
Replies: 8
Views: 3241

Re: WinClose - WinWaitClose - not as expected

HotKeyIt wrote:What would you expect?
It would only wait if notepad could not be closed.
What you want is

Code: Select all

Sleep 3000
WinClose, ahk_exe notepad.exe
Yes, you are right. But, I don't understan why in the help appears this
WinClose [, WinTitle, WinText, SecondsToWait, ExcludeTitle, ExcludeText]
SecondsToWait?
by empardopo
23 Feb 2015, 05:44
Forum: Ask for Help (v1)
Topic: WinClose - WinWaitClose - not as expected
Replies: 8
Views: 3241

Re: WinClose - WinWaitClose - not as expected

Why the next code doesn't work fine?

Code: Select all

WinClose,ahk_exe notepad.exe, , 3
return
A notepad proccess is running.
Run the script and the notepad is closed without waiting 3 seconds.

Thanks
by empardopo
23 Feb 2015, 04:34
Forum: Ask for Help (v1)
Topic: Blocking website access to my computer
Replies: 5
Views: 2113

Re: Blocking website access to my computer

Look for a good antivirus and spyware program.
by empardopo
23 Feb 2015, 04:31
Forum: Scripts and Functions (v1)
Topic: AHK Academy - AutoHotkey learning application
Replies: 8
Views: 5128

Re: AHK Academy - AutoHotkey learning application

I run the program and when I press the Test code button, the app crash!
I'm using w7 64 bits and the 1.1.19.2 Ahk version.

Greetings.
by empardopo
23 Feb 2015, 04:18
Forum: Scripts and Functions (v1)
Topic: Move Pictures
Replies: 2
Views: 1876

Re: Move Pictures

???
by empardopo
20 Feb 2015, 09:08
Forum: Ask for Help (v1)
Topic: Closing 5 programs with 1 keyboard shortcut
Replies: 35
Views: 14095

Re: Closing 5 programs with 1 keyboard shortcut

enthused wrote:
empardopo wrote: I have two processes running called AllInOneFYC.exe and AllInOneFYC1055.exe. Is possible to kill them using a group? (AllInOneFYC(.*) or similar)
Thanks
I think it should work. Let me know if it works.
It does not work.
Thanks

Note: My processes do not have Gui.
by empardopo
20 Feb 2015, 08:58
Forum: Other Utilities & Resources
Topic: Looking for a program that uses mouse movements as hotkeys
Replies: 9
Views: 7388

Re: Looking for a program that uses mouse movements as hotke

@empardopo No, it's free for Personal Use! StrokeIt Downloads StrokeIt .9.7 Professional Enhanced Features Buy Now StrokeIt .9.7 Home Personal Use Only Download StrokeIt .9.7 Business Trial 10 Day Business Trial Download Trial Thanks for the link, MouseGestureL.ahk looks nice. Sorry, I was wrong. T...
by empardopo
20 Feb 2015, 06:44
Forum: Other Utilities & Resources
Topic: Looking for a program that uses mouse movements as hotkeys
Replies: 9
Views: 7388

Re: Looking for a program that uses mouse movements as hotke

tmplinshi wrote:Have you tried StrokeIt? I've been using it for years.
I've just to see StrokeIt and It's not free,isn't?However, browsing and browsing I've just found this.Looks awesome!
Take a look!

Go to advanced search