Search found 25 matches

by emrekarahan0001
06 Feb 2022, 18:07
Forum: Ask for Help (v1)
Topic: Need help with GDI button and Layered Window
Replies: 39
Views: 4566

Re: Need help with GDI button and Layered Window

Maybe it will be of use to you. #NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases. ; #Warn ; Enable warnings to assist with detecting common errors. SendMode Input ; Recommended for new scripts due to its superior speed and reliability. SetWorkingDir %A_ScriptDir...
by emrekarahan0001
06 Feb 2022, 17:27
Forum: Scripts and Functions (v1)
Topic: Examples of Non-Standard GUIs (ActiveX, GDI, etc.)
Replies: 391
Views: 247557

Re: Examples of Non-Standard GUIs (ActiveX, GDI, etc.)

Maybe it will be of use to someone. 8-) #NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases. ; #Warn ; Enable warnings to assist with detecting common errors. SendMode Input ; Recommended for new scripts due to its superior speed and reliability. SetWorkingDir %A_S...
by emrekarahan0001
20 Jan 2022, 04:57
Forum: Scripts and Functions (v1)
Topic: [Editor] CodeQuickTester - Write and run code without saving to a temporary file
Replies: 204
Views: 119191

Re: [Editor] CodeQuickTester - Write and run code without saving to a temporary file

A little bit color change.. 8-) ; CodeQuickTester v2.8 ; Copyright GeekDude 2018 ; https://github.com/G33kDude/CodeQuickTester #SingleInstance, Off #NoEnv SetBatchLines, -1 SetWorkingDir, %A_ScriptDir% global B_Params := [] Loop, %0% B_Params.Push(%A_Index%) Menu, Tray, Icon, %A_AhkPath%, 2 FileEnco...
by emrekarahan0001
23 Sep 2021, 20:04
Forum: Ask for Help (v1)
Topic: How do I launch Chrome minimized? Topic is solved
Replies: 13
Views: 6244

Re: How do I launch Chrome minimized? Topic is solved

Code: Select all

WinRestore, ahk_exe chrome.exe
WinMinimize, ahk_exe chrome.exe
Sleep, 500
WinMaximize, ahk_exe chrome.exe
by emrekarahan0001
11 Aug 2021, 05:47
Forum: Ask for Help (v1)
Topic: Script that ask for the loop count then perform the loop Topic is solved
Replies: 5
Views: 808

Re: Script that ask for the loop count then perform the loop Topic is solved

try this ;) Gui, +Lastfound +Toolwindow Gui, Add, Edit, x5 y10 w20 h20 vEdit1, Gui, Add, Button, x+5 y10 w65 h20 gSave, OK Gui, Show, w100 h40, Return Save: Guicontrolget, Edit1 Loop, %Edit1% { Sleep,300 Send,^p Sleep,5000 Click,155,746 Sleep,5000 Send,{enter} Sleep,1000 Send,^w Sleep,2000 } Return ...
by emrekarahan0001
09 Aug 2021, 05:46
Forum: Ask for Help (v1)
Topic: upload screenshot
Replies: 2
Views: 473

Re: upload screenshot

i hope this will help you

Code: Select all

F0 = https://i.imgur.com/JP5qtSC.jpg
F1 = %A_Desktop%\JP5qtSC.jpg
ifnotexist,%f1%
   urldownloadtofile,%f0%,%f1%

Gui, Add, Picture, x0 y0 w560 h315, %f1%
Gui, Show, xCenter yCenter w560 h315, Picture
Return

GuiEscape:
GuiClose:
ExitApp
by emrekarahan0001
09 Aug 2021, 05:35
Forum: Ask for Help (v1)
Topic: how can i send tweet with Twitter Api in the Ahk?
Replies: 1
Views: 335

how can i send tweet with Twitter Api in the Ahk?

how can i send tweet with Twitter Api in the Ahk?
by emrekarahan0001
19 Jul 2021, 16:03
Forum: Ask for Help (v1)
Topic: window position
Replies: 3
Views: 228

Re: window position

i got it done.. :thumbup:

Code: Select all

WinRestore, ahk_exe chrome.exe
by emrekarahan0001
19 Jul 2021, 15:53
Forum: Ask for Help (v1)
Topic: window position
Replies: 3
Views: 228

Re: window position

if page is maximize or minimize, this is not work..

Code: Select all

^z::
CenterWindow("ahk_exe chrome.exe")

CenterWindow(WinTitle)
{
    WinGetPos,,, Width, Height, %WinTitle%
    WinMove, %WinTitle%,, (A_ScreenWidth/2)-(Width/2), (A_ScreenHeight/2)-(Height/2)
}
Return
by emrekarahan0001
19 Jul 2021, 15:25
Forum: Ask for Help (v1)
Topic: window position
Replies: 3
Views: 228

window position

Hello.. if it is a full screen window, how can I move a window position to and from the location I have specified?
by emrekarahan0001
09 Jul 2021, 10:08
Forum: Ask for Help (v1)
Topic: Convert seconds to specific format in ahk?
Replies: 10
Views: 1023

Re: Convert seconds to specific format in ahk?

Minute And Second To Convert Miliseconds #NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases. ; #Warn ; Enable warnings to assist with detecting common errors. SendMode Input ; Recommended for new scripts due to its superior speed and reliability. SetWorkingDir %A_...
by emrekarahan0001
05 Jul 2021, 07:40
Forum: Ask for Help (v1)
Topic: Simple countdown/up to a .txt file
Replies: 9
Views: 997

Re: Simple countdown/up to a .txt file

Maybe this? #NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases. ; #Warn ; Enable warnings to assist with detecting common errors. SendMode Input ; Recommended for new scripts due to its superior speed and reliability. SetWorkingDir %A_ScriptDir% ; Ensures a consis...
by emrekarahan0001
05 Jul 2021, 07:31
Forum: AutoHotkey Development
Topic: New icons for v2
Replies: 48
Views: 19750

Re: New icons for v2

For 2021 )
by emrekarahan0001
05 Jul 2021, 07:05
Forum: AutoHotkey Development
Topic: New icons for v2
Replies: 48
Views: 19750

Re: New icons for v2

i hope you like :)

Image

Image

Image

Image
by emrekarahan0001
22 Jun 2021, 11:56
Forum: Ask for Help (v1)
Topic: Get Window Title at Specific Coordinates
Replies: 50
Views: 9418

Re: Get Window Title at Specific Coordinates

teadrinker wrote:
22 Jun 2021, 11:51
emrekarahan0001 wrote: English = **Home** / Twitter - Google Chrome
Turkish = **Anasayfa** / Twitter - Google Chrome
This is a wrong result. If you launch my code, it must show "This text must be shown".
believe me brother, i understand you, but i can't explain to my problem.. whatever thank you :salute:
by emrekarahan0001
22 Jun 2021, 11:48
Forum: Ask for Help (v1)
Topic: Get Window Title at Specific Coordinates
Replies: 50
Views: 9418

Re: Get Window Title at Specific Coordinates

teadrinker wrote:
22 Jun 2021, 11:42
emrekarahan0001 wrote: if title "Anasayfa / Twitter - Google Chrome"
But it must show "This text must be shown".
English = **Home** / Twitter - Google Chrome
Turkish = **Anasayfa** / Twitter - Google Chrome

Code: Select all

WinWait, **Home** / Twitter - Google Chrome
by emrekarahan0001
22 Jun 2021, 11:41
Forum: Ask for Help (v1)
Topic: Get Window Title at Specific Coordinates
Replies: 50
Views: 9418

Re: Get Window Title at Specific Coordinates

by the way, i dont need this ^z:: varSetCapacity(title, 200, 0) DllCall("GetWindowText", "ptr", DllCall("WindowFromPoint", "Int", 500, "Int", 500) , "str", title, "int", 199) if title = Home / Twitter - Google Chrome { Msgbox, English gosub, En } else if title = Anasayfa / Twitter - Google Chrome { ...
by emrekarahan0001
22 Jun 2021, 11:34
Forum: Ask for Help (v1)
Topic: Get Window Title at Specific Coordinates
Replies: 50
Views: 9418

Re: Get Window Title at Specific Coordinates

WinWait, Anasayfa / Twitter - Google Chrome As I see, you are trying to get the title from the browser. Most likely, it is open in full screen. Your code really gets the title of the window from coords 500, 0. But what my code shows in its message box? if title "Anasayfa / Twitter - Google Chrome" ...
by emrekarahan0001
22 Jun 2021, 10:53
Forum: Ask for Help (v1)
Topic: Get Window Title at Specific Coordinates
Replies: 50
Views: 9418

Re: Get Window Title at Specific Coordinates

Image
teadrinker wrote:
22 Jun 2021, 10:27
Are you sure you launch it on 64 bit? This code can't show you "This text must be shown" with 64 bit AHK.

Go to advanced search