AutoHotkey Community

It is currently May 22nd, 2012, 2:36 pm

All times are UTC [ DST ]


Search found 49 matches
Search these results:

Author Message

 Forum: Support   Topic: ControlGetTextFromWebsite?

Posted: May 15th, 2011, 10:03 pm 

Replies: 1
Views: 87


Download html file and use string scraping functions to get thoose numbers :lol:

 Forum: Support   Topic: uh.. parameters in functions?

Posted: May 15th, 2011, 9:58 pm 

Replies: 8
Views: 177


Be creative

Code:
ok := PixelGetColor()

PixelGetcolor()
{
   MouseGetPos, x, y
   PixelGetcolor, ok, x, y
   return, ok
}

 Forum: Support   Topic: uh.. parameters in functions?

Posted: May 15th, 2011, 9:47 pm 

Replies: 8
Views: 177


Yes. You can pass parameters "ByRef". Look at parameters section in help file.

Code:
Swap(ByRef Left, ByRef Right)
{
    temp := Left
    Left := Right
    Right := temp
}

 Forum: Support   Topic: Context menu for folders

 Post subject: Context menu for folders
Posted: May 15th, 2011, 9:43 pm 

Replies: 0
Views: 150


Hello guys, I am having trouble making context menu item for folder. I have followed this guide: Right Click on Folder addition: -open regedit (start\run, type regedit) -expand until you are in: HKEY_CLASSES_ROOT\Folder\shell -if the key ’shell’ does not exist, right click on ‘Folder’ and add new ke...

 Forum: Support   Topic: IR remote control and Autohotkeys

Posted: December 29th, 2009, 9:07 pm 

Replies: 2
Views: 811


WinLIRC works great on win7. I have build my receiver and am using succesifuly with WIN7 + WinLIRC + AHK.

 Forum: Support   Topic: Overlay full screen video

 Post subject: Overlay full screen video
Posted: September 19th, 2009, 4:44 pm 

Replies: 1
Views: 362


Hello. I have one problem with GUI allways on top. I want to create GUI with some settings like SOUND, Video birghtnes etc. It works OK if no full screen programs are run. I want that my application could be seen when I'm in full screen mode watching movies. (VLC or Windows media player) Any help? T...

 Forum: Support   Topic: Can't merge two scripts into one

Posted: September 4th, 2009, 10:16 am 

Replies: 9
Views: 595


Fileinstall funcion (in second.exe) will include that first.exe in itself, so every time you run secone.exe, first.exe is extracted from second one. After you are closing aplication you can delete the first.exe. (When you will run second exe again, it will extract first one again). Hope you understo...

 Forum: Support   Topic: Can't merge two scripts into one

Posted: September 3rd, 2009, 8:48 pm 

Replies: 9
Views: 595


I would choose simplest way to run thoose two scripts :lol: Compile I.E first one to first.exe, then add
Code:
fileinstall, first.exe, first.exe
run, first.exe
to your second script and compile second. :D After that, once first executed, both working :twisted:

 Forum: Support   Topic: start Sounplay by clicking on a HTML page's thumbnail

Posted: September 3rd, 2009, 8:12 pm 

Replies: 3
Views: 334


Your welcome :P

milk wrote:
Your last script made me laugh a lot :lol: :lol: :lol:


Why? :D :lol:

 Forum: Support   Topic: Windows 7 problem

Posted: September 3rd, 2009, 3:08 pm 

Replies: 1
Views: 316


Stuck here too :roll:

 Forum: Support   Topic: start Sounplay by clicking on a HTML page's thumbnail

Posted: September 3rd, 2009, 2:58 pm 

Replies: 3
Views: 334


Hi. I have written a script to open my computer files from PHP/HTML file remotely from my mobile. Maybe it will help ya. I will give you simple examples of my script. This is example of .php file witch i have in my simple web server. (I think you will have to remove comments to avoid errors) index.p...

 Forum: Support   Topic: Online forms (increasing numbers)

Posted: August 26th, 2009, 6:05 pm 

Replies: 13
Views: 391


Open AU3_spy.exe (usually on C:\Program Files\AutoHotkey\AU3_Spy.exe)
While running that stuff, move your mouse on that check box and write down that X and Y cordinates. Then add theese lines to script:
Code:
mouseclick, left, your_x, your_y
This would be the simplest way to make that shit. ;D

 Forum: Support   Topic: Online forms (increasing numbers)

Posted: August 26th, 2009, 3:44 pm 

Replies: 13
Views: 391


name = blablabla email = blablabla email_domain = @bla.com nickname = nickblabla pass = passblabla digit = 1 ^s:: ;ctrl+s to start script send, %name%%digit% {tab} %email%%digit%%email_domain% {tab} %nickname%%digit% {tab} %pass% {tab} %pass% digit ++

 Forum: Support   Topic: escaping sequences

Posted: August 26th, 2009, 3:33 pm 

Replies: 4
Views: 410


Anamacha wrote:
okay, thanks for the response. Will that same key also UNpause it? Will the same key start it up again after being paused?

thanks


Yes

 Forum: Support   Topic: Keyboard + Mouse = GamePad

Posted: August 25th, 2009, 7:10 pm 

Replies: 8
Views: 1348


Try to use Xpadder. Works great even with games that don't have a gamepad support. Download from: http://www.xpadder.com/
Sort by:  
Page 1 of 4 [ Search found 49 matches ]


All times are UTC [ DST ]


Powered by phpBB® Forum Software © phpBB Group