Search found 3720 matches

by garry
16 Mar 2024, 16:39
Forum: Off-topic Discussion
Topic: « What's on your mind? » Topic is solved
Replies: 4893
Views: 1386400

Re: « What's on your mind? » Topic is solved

> AHK v.1.1 is dead (?) . I hope it will always work ....
100 'Dartmouth DTSS TeleBASIC (c) 1964,1966,1969,1970,1971,1979
110 a=100:c=(a*3):print "Result=";c
Result= 300
by garry
15 Mar 2024, 14:19
Forum: Ich brauche Hilfe
Topic: Run(Wait) - Ergebnis prüfen Topic is solved
Replies: 4
Views: 103

Re: Run(Wait) - Ergebnis prüfen Topic is solved

ja , einfach mit runwait,%comspec% /k ... versuchen -- cmdret teadrinker https://www.autohotkey.com/boards/viewtopic.php?p=369467#p369467 -- Beispiel mit GUI https://www.autohotkey.com/boards/posting.php?mode=edit&f=76&p=562142 -- Beispiel , hidden PR:=a_scriptdir . "\exiftool\exiftool.exe " F1:="D:...
by garry
14 Mar 2024, 03:56
Forum: Ask for Help (v1)
Topic: Send input to rename files with words from a gui without exiting the file renaming
Replies: 31
Views: 653

Re: Send input to rename files with words from a gui without exiting the file renaming

example with irfanview ;- copy photo's from AA to BB renames with original YEAR and added NAME , like : ;- > ... \BB\2018_Selma en Mieke\2018_10_05 16_43_56_Selma en Mieke_DSC00285.jpg ;- copy photo's from AA to BB renames with YEAR and name , like : ;- > ... \BB\2018_Selma en Mieke\2018_10_05 16_43...
by garry
12 Mar 2024, 05:38
Forum: Ask for Help (v1)
Topic: Send input to rename files with words from a gui without exiting the file renaming
Replies: 31
Views: 653

Re: Send input to rename files with words from a gui without exiting the file renaming

mikeyww thank you for the good example , select in explorer a file and rename it , ( I just had a problem to get the original date/time ) here a script with irfanview ( I like it also as my default viewer ) , to get original date from photo , write to filename ;- example : copy photo 'TEST.jpg' to ...
by garry
10 Mar 2024, 17:36
Forum: Ask for Help (v1)
Topic: Send input to rename files with words from a gui without exiting the file renaming
Replies: 31
Views: 653

Re: Send input to rename files with words from a gui without exiting the file renaming

also an example , downloaded a picture from internet , don't see in exif data the original date/time File Modification Date/Time : 2024:03:09 21:31:08+01:00 < M- downloaded a picture from Internet File Access Date/Time : 2024:03:10 23:31:30+01:00 < A- show this picture ( last access ) File Creation ...
by garry
10 Mar 2024, 15:21
Forum: Ask for Help (v1)
Topic: Send input to rename files with words from a gui without exiting the file renaming
Replies: 31
Views: 653

Re: Send input to rename files with words from a gui without exiting the file renaming

I think to get 'Date/Time Original' / 'Create Date' , needs exiftool example /* ;- example with exiftool ---------------------------------------------------------------------------------------------- ;- PHOTO original : Date/Time Original : 2019:06:27 17:06:02 Create Date : 2019:06:27 17:06:02 Sony ...
by garry
10 Mar 2024, 04:51
Forum: Ask for Help (v1)
Topic: Send input to rename files with words from a gui without exiting the file renaming
Replies: 31
Views: 653

Re: Send input to rename files with words from a gui without exiting the file renaming

@mikeyww thank you , works from explorer , for me is this the original created date , C is the new date when I moved the photo to folder
FileGetTime createdTime, % Explorer_GetSelection()[1], M ; Get the photo creation time
by garry
10 Mar 2024, 04:24
Forum: Ask for Help (v1)
Topic: Send input to rename files with words from a gui without exiting the file renaming
Replies: 31
Views: 653

Re: Send input to rename files with words from a gui without exiting the file renaming

maybe you want add the created date from a photo ... https://exiftool.org/ Example with exiftool https://www.autohotkey.com/boards/viewtopic.php?f=76&t=121282 ;- Run cmd command and VIEW all commands in the cmd command window ;- https://www.autohotkey.com/boards/viewtopic.php?f=76&t=121282 #NoTrayIc...
by garry
08 Mar 2024, 09:15
Forum: Ask for Help (v1)
Topic: encrypt - decrypt
Replies: 4
Views: 131

Re: encrypt - decrypt

script from @jNizM
viewtopic.php?f=83&t=96117
-- CNG (Cryptography API: Next Generation) - user > jNizM
by garry
08 Mar 2024, 05:12
Forum: Ask for Help (v1)
Topic: CMD Get Text Response
Replies: 4
Views: 153

Re: CMD Get Text Response

from user teadrinker you can write commands below ( example is in the script , variable 'cmdx' ) , get output in a textfile > f1=%a_desktop%\%a_now%_DOS_SCREEN_OUTPUT.txt -- variable 'cmdx' : PR:=a_scriptdir . "\pngquant\pngquant.exe" ;cmdx:=pr . " -h" pic:=a_scriptdir . "\test.png" cmdx:=pr . " --f...
by garry
06 Mar 2024, 14:24
Forum: Ask for Help (v1)
Topic: Copying a VERY Little Bit of Text from Chrome Webpage
Replies: 4
Views: 143

Re: Copying a VERY Little Bit of Text from Chrome Webpage

here an example with script from SKAN , function xSTR https://www.autohotkey.com/boards/viewtopic.php?f=6&t=74050 try to download URL and search in text e4 /* url:="https://ccccc" ;- <<<< your url ;- whr := ComObjCreate("WinHttp.WinHttpRequest.5.1") whr.Open("GET", url,false) ;- false for less error...
by garry
06 Mar 2024, 10:33
Forum: Ask for Help (v1)
Topic: i like to hear your thought: on usefull commands
Replies: 11
Views: 240

Re: i like to hear your thought: on usefull commands

also a Listview example , run something in column-2 #Warn #NoEnv #SingleInstance force Setworkingdir,%a_scriptdir% SetBatchLines, -1 var:="" s:=Chr(127) ;- delimiter gosub,varx windowtitle:="TEST" Gui,1: default Gui,1: -dpiscale Gui,1:Color,Black,Black Gui,1:Font,s14 cBlack,Lucida Console wa:=A_scre...
by garry
06 Mar 2024, 04:43
Forum: Ask for Help (v1)
Topic: Detect how long a key is held down? Topic is solved
Replies: 5
Views: 164

Re: Detect how long a key is held down? Topic is solved

thank's for different good solutions here also a link , Fkee3 > https://www.autohotkey.com/board/topic/9166-fkee3/ from user msgbox I like to use it for keyboard F1-12 can have 96 possibilities ( click ctrl+F1 or twice F1 ... ) to start different programs / Keyboard labeled with > ( example brother ...
by garry
06 Mar 2024, 04:18
Forum: Off-topic Discussion
Topic: Flat Earth vs. Globe Earth
Replies: 115
Views: 61978

Re: Flat Earth vs. Globe Earth

@Ernestheili from Estonia (?) , welcome to programming with AutoHotkey for useful things ...
was thinking we're just kidding here ... maybe useless ...
by garry
05 Mar 2024, 03:23
Forum: Ask for Help (v1)
Topic: Find the coordinates of X
Replies: 17
Views: 368

Re: Find the coordinates of X

Descolada thank you for your explanation from your good function parktaije at the moment I made little complicated , use ctrl+c, click on X in browser from papago, use ctrl+v, also a script from user teadrinker google translator with audio ;- Using Google Translate to automate text translation ;- h...
by garry
04 Mar 2024, 15:51
Forum: Ask for Help (v1)
Topic: Find the coordinates of X
Replies: 17
Views: 368

Re: Find the coordinates of X

Descolada yes I tried , it works fine , but don't know how ... :) I used Autohotkey Version1 , now installed Version2 , different version ahk scripts work fine dont know where I can put UIA_interface.ahk, earlier it was in folder "C:\Program Files\AutoHotkey\LIB" ;- https://www.autohotkey.com/board...
by garry
04 Mar 2024, 14:51
Forum: Ask for Help (v1)
Topic: Find the coordinates of X
Replies: 17
Views: 368

Re: Find the coordinates of X

mikeyww thank you , I tried to define the area for search , it was then very fast parktaije for what use this script ? ( click on x > clear translation/words ) ;- Find the coordinates of X ;- https://www.autohotkey.com/boards/viewtopic.php?f=76&t=126791 #warn #persistent #SingleInstance,Force SetWo...
by garry
02 Mar 2024, 03:53
Forum: Ich brauche Hilfe
Topic: Gelöst! --- Batch OCR & Translate Script dreht extra Runden Topic is solved
Replies: 15
Views: 411

Re: Gelöst! --- Batch OCR & Translate Script dreht extra Runden Topic is solved

@effel danke , kein Problem
habe für mich x y w h angepasst
wichtig ist dass das Program funktioniert , kann Dir evtl Privat message senden betreff Grösse/Position ( wobei dies z.T. individuell ist )
20240302094921_screenshot.png
20240302094921_screenshot.png (623.04 KiB) Viewed 183 times
by garry
02 Mar 2024, 02:50
Forum: Ich brauche Hilfe
Topic: Gelöst! --- Batch OCR & Translate Script dreht extra Runden Topic is solved
Replies: 15
Views: 411

Re: Gelöst! --- Batch OCR & Translate Script dreht extra Runden Topic is solved

@effel
Danke für Deine grosse Arbeit , funktioniert gut , die Details kann ich anpassen.
( betr. GUI, mein letztes Beispiel war Fullsize , habe mit 4K-3840 und FullHD-1920 getestet )
20240302084513_screenshot.png
20240302084513_screenshot.png (592.37 KiB) Viewed 190 times

Go to advanced search