AutoHotkey Community

It is currently May 22nd, 2012, 12:06 pm

All times are UTC [ DST ]


Search found 237 matches
Search these results:

Author Message

 Forum: Support   Topic: [SOLVED] Binding area of GuiDropFiles

Posted: Yesterday, 6:25 pm 

Replies: 12
Views: 72


Yeh I figured that out little while ago :) Take a look at this on changing the cursor and see if you can put together a code. I have to go unfortunately. Can't play around with it right now. http://www.autohotkey.com/community/viewtopic.php?t=6107 This is also under the Ahk_L Documentation under &qu...

 Forum: Support   Topic: [SOLVED] Gui opacity

 Post subject: Re: Gui opacity
Posted: Yesterday, 6:19 pm 

Replies: 15
Views: 112


This will call a function when the mouse is on the Black Semi-Transparent window ; gdi+ ahk tutorial 8 written by tic (Tariq Porter) ; Requires Gdip.ahk either in your Lib folder as standard library or using #Include ; ; Tutorial to write text onto a gui #SingleInstance, Force #NoEnv SetBatchLines, ...

 Forum: Support   Topic: increasing value of variable

Posted: Yesterday, 5:48 pm 

Replies: 5
Views: 38


#space:: InputBox, [color=#FF00FF]Town[/color], Enter town name Loop { ToolTip, Town: [color=#FF00FF]%Town%[/color]`nCycle: %A_Index%,[color=#0080FF] 0, 0[/color] ; [color=#408000]Cordinates of the tooltip (Top left corner of the active window[/color] Cycle:=A_Index [color=#FF0000]; Save the cycle[...

 Forum: Support   Topic: [SOLVED] Binding area of GuiDropFiles

Posted: Yesterday, 5:38 pm 

Replies: 12
Views: 72


The code above works in both AHK and AHK_L - I tried it in both. The code works flawlessly for me.

 Forum: Support   Topic: [SOLVED] Right mouse click on current file

Posted: Yesterday, 5:35 pm 

Replies: 3
Views: 32


Code:
#space::Send, {AppsKey} ; AppsKey is the key on the Keyboard that open the right-click menu - which is what I believe you are referring to.

 Forum: Support   Topic: What am I doing wrong?

 Post subject: Re: What am I doing wrong?
Posted: Yesterday, 5:25 pm 

Replies: 9
Views: 95


How or what part of the code assigns values to %0% and %1%? I'm sort of lost.

 Forum: Support   Topic: [SOLVED] Binding area of GuiDropFiles

Posted: Yesterday, 5:17 pm 

Replies: 12
Views: 72


Can you post your code then I could try and understand better and debug it. Also are you using AHK basic or Ahk_L?

 Forum: Support   Topic: [SOLVED] Gui opacity

 Post subject: Re: Gui opacity
Posted: Yesterday, 5:13 pm 

Replies: 15
Views: 112


To mark post as Solved: Go back to you starting post at the top. Click Edit and add "[SOLVED]" at the start of the Subject/Title

And I'm glad I could help :) Let me know if I can help again

 Forum: Support   Topic: increasing value of variable

Posted: Yesterday, 5:06 pm 

Replies: 5
Views: 38


Just make sure the variable is NOT blank before the look. Like so: [color=#FF0000]A=0[/color] Loop A++ ;or Loop A := A+1 ;or Loop A +=1 Since you want to count Loop's use this variable: Loop ToolTip, %A_Index% [color=#40BF00]; This variable is built into AHK, it counts the loop number for you :)[/co...

 Forum: Support   Topic: [SOLVED] Binding area of GuiDropFiles

Posted: Yesterday, 4:55 pm 

Replies: 12
Views: 72


#Persistent #SingleInstance, Force [color=#40BF00]; Top Left Corner of region[/color] RegionX = 100 RegionY = 100 [color=#40BF00];Bottom Right Corner of region [/color]RegionW = 300 RegionH = 300 Gui, Add, Text, x%RegionX% y%RegionY% w%RegionW% h%RegionH% Border Center, Drop Files Here Gui, Show, w...

 Forum: Support   Topic: Run program from internet/cloud?

Posted: Yesterday, 4:33 pm 

Replies: 2
Views: 36


Well when the script is Compiled. It turns into .exe and to run this, you do not need any additional programs. So simply on the "other computer" find the .exe file you added to cloud service on your computer, right-click and choose Copy . Go to you desktop right click and click Paste Short...

 Forum: Support   Topic: [SOLVED] Gui opacity

 Post subject: Re: Gui opacity
Posted: Yesterday, 4:13 pm 

Replies: 15
Views: 112


Okay this is a working example in the code you provided. When you move the Black Semi-transparent window, the other window will Move: ; gdi+ ahk tutorial 8 written by tic (Tariq Porter) ; Requires Gdip.ahk either in your Lib folder as standard library or using #Include ; ; Tutorial to write text ont...

 Forum: Support   Topic: MoveWin

 Post subject: Re: MoveWin
Posted: Yesterday, 4:01 pm 

Replies: 4
Views: 31


#s:: WinActivate , SAPI5 TTSAPP Click 498, 106 WinMove, [color=#FF0000]SAPI5 TTSAPP[/color], , 200,600 [color=#FF0000]; You need to mention the window's title like so[/color] return #p:: send ^c WinActivate , SAPI5 TTSAPP Click 300, 100 send ^a send ^v= Click 498, 106 WinMove, [color=#FF0000]SAPI5 ...

 Forum: Support   Topic: [SOLVED] Gui opacity

 Post subject: Re: Gui opacity
Posted: Yesterday, 3:48 pm 

Replies: 15
Views: 112


Okay here is a working example that moves the transparent window when the Main window is moved: #Persistent #SingleInstance, Force SetBatchLines, -1 SetWinDelay, -1 [color=#00BF00]; Main window/GUI[/color] Gui 1: Add, Text, , Move this window to move the Transparent background window Gui 1: +LastFou...

 Forum: Support   Topic: [SOLVED] Gui opacity

 Post subject: Re: Gui opacity
Posted: Yesterday, 2:57 pm 

Replies: 15
Views: 112


Okay, since this window has no "Title", you can get its ID like so: #Persistent #SingleInstance, Force Gui, Add, Button, , AAAAAAAA Gui, Add, Button, , BBBBBBBB Gui, Add, Button, , CCCCCCCC Gui, +ToolWindow -Caption [color=#FF0000]+LastFound[/color] [color=#FF0000]GuiID:=WinExist()[/color]...
Sort by:  
Page 1 of 16 [ Search found 237 matches ]


All times are UTC [ DST ]


Powered by phpBB® Forum Software © phpBB Group