Search found 19 matches

by red_sun
13 Oct 2019, 08:22
Forum: Ask for Help (v1)
Topic: Edge missing characters or mixing them up
Replies: 9
Views: 1446

Re: Edge missing characters or mixing them up

For the moment it is solved by removing all the options win10 gives in the typing control setting ( like autocorrect ,suggestions , using AI !! of all things )
by red_sun
13 Oct 2019, 08:15
Forum: Off-topic Discussion
Topic: Behind the Mask [Username Lore]
Replies: 4
Views: 2658

Re: Behind the Mask [Username Lore]

I was impressed by the performance of Gummy on the show The Call

[youtube]https www.youtube.com /watch?v=BEcz3ULdAvM[/youtube] Broken Link for safety
by red_sun
06 Oct 2019, 02:48
Forum: Ask for Help (v1)
Topic: Unicode displayed as question marks Topic is solved
Replies: 3
Views: 1112

Re: Unicode displayed as question marks Topic is solved

It works for me , does it display the correct character in a message box ?

Code: Select all

msgbox г  ф

#Hotstring * ?
::f::ф
g::Send г
d::Send {U+0434}
Esc::ExitApp
by red_sun
03 Oct 2019, 06:47
Forum: Ask for Help (v1)
Topic: Autocorrect working inconsistently
Replies: 5
Views: 938

Re: Autocorrect working inconsistently

hi kobaltauge Don't think that is a windows or driver problem. I think it is , because I used it for many years but only recently hotstrings used on edge browser are scrambled and I also use ahk code that when a key is hold longer it gives you "uppercase" .When a lowercase string is send some letter...
by red_sun
20 Sep 2019, 10:42
Forum: Ask for Help (v1)
Topic: Edge missing characters or mixing them up
Replies: 9
Views: 1446

Re: Edge missing characters or mixing them up

I have the same problem with edge browser so I use clipboard instead of sending keys.
example:

Code: Select all

k::
clipboard:="dontusemy code"
send ^v
return
by red_sun
11 Aug 2019, 05:02
Forum: Ask for Help (v1)
Topic: GDIP ImageSearch
Replies: 1
Views: 5904

Re: GDIP ImageSearch

The code from masterfocus is well documented but be sure to use gdip_all.ahk for windows 64bit. https://github.com/MasterFocus/AutoHotkey/blob/master/Functions/Gdip_ImageSearch/Gdip_ImageSearch.ahk p.s. I could not download https i.imgur.com /94zrKax.png Broken Link for safety , the needle image was...
by red_sun
09 Aug 2019, 12:58
Forum: Ask for Help (v1)
Topic: Change initial screen position of GUI Topic is solved
Replies: 2
Views: 1436

Re: Change initial screen position of GUI Topic is solved

Code: Select all

Gui, Border: Show, x%xpos% y%ypos% w%width% h%height%
There are no "," between the parameters for x y w h and you have a typo with 2x show here:

Code: Select all

Gui, Colored: Show, Show, x%xpos%, y%ypos%, w%width% h%height%
by red_sun
07 Aug 2019, 10:41
Forum: Ask for Help (v1)
Topic: How can i show images without background of GUI? Topic is solved
Replies: 7
Views: 2288

Re: How can i show images without background of GUI? Topic is solved

This code is not the best way of changing images but you can do it if the first image is the biggest one . If you want all kind of dimensions with the same Gui you have to use another concept or destroying the image and reloading the code. Here is an example to change to another smaller or same size...
by red_sun
07 Aug 2019, 05:45
Forum: Ask for Help (v1)
Topic: How can i show images without background of GUI? Topic is solved
Replies: 7
Views: 2288

Re: How can i show images without background of GUI? Topic is solved

There is a function that you can use inside dropandcreate , but it needs the gdip library .

https://www.autohotkey.com/boards/viewtopic.php?t=31432
Here is a simplified extract of noname 's code just showing a selected file attached file image.ahk , the library is included .
by red_sun
04 Aug 2019, 12:59
Forum: Ask for Help (v1)
Topic: Delayed shift-leftclick after a rightclick
Replies: 3
Views: 702

Re: Delayed shift-leftclick after a rightclick

You could try this :

Code: Select all

rbutton::
if status
{
mouseclick ,right
  return
}
status:=1
settimer,action,-3000 ; - will execute only once
return

action:
soundbeep   ; just for testing 
sendinput +{click}
status:=0
return

esc::exitapp
by red_sun
04 Aug 2019, 04:19
Forum: Ask for Help (v1)
Topic: Delayed shift-leftclick after a rightclick
Replies: 3
Views: 702

Re: Delayed shift-leftclick after a rightclick

If it is a "long" delay I prefer to use settimer .

example :

Code: Select all

rbutton::
settimer,action,-3000 ; - will execute only once
return

action:
soundbeep   ; just for testing 
sendinput +{click}
return

esc::exitapp
by red_sun
20 Jul 2019, 09:21
Forum: Ask for Help (v1)
Topic: Simple windows move not working - NEW USER
Replies: 2
Views: 621

Re: Simple windows move not working - NEW USER

WinMove, WinTitle, WinText, X, Y , Width, Height, ExcludeTitle, ExcludeText

You are missing the "wintext" parameter , even if you do not use it you must leave it empty . WinMove, WinTitle , , X, Y

https://www.autohotkey.com/docs/commands/WinMove.htm
by red_sun
16 Jul 2019, 12:06
Forum: Ask for Help (v1)
Topic: ListView search / filter Topic is solved
Replies: 29
Views: 13443

Re: [Solved] ListView search / filter Topic is solved

Now I see what you mean by checkboxes ! But still I think it is best to create a new post with listview in the title that would entice some experts to it :) I am not very familiar with listviews but I found a interesting one here: https://autohotkey.com/board/topic/37651-how-to-hiding-and-showing-ba...
by red_sun
16 Jul 2019, 08:34
Forum: Ask for Help (v1)
Topic: ListView search / filter Topic is solved
Replies: 29
Views: 13443

Re: [Solved] ListView search / filter Topic is solved

I hate to be the guy who revives dead threads :problem: this post is marked as solved so only by accident forum users will open it …….. like me ;) Can you create a new post and give some info what you want to do , because after clearing the edit it is logical that the selection is also reset. If yo...
by red_sun
14 Jul 2019, 10:06
Forum: Scripts and Functions (v1)
Topic: trim and merge 4k video lossless
Replies: 7
Views: 3620

Re: trim and merge 4k video lossless

Thanks for the suggestions , the path info is set as a OSD layered on the video as an option but I could not capture it . Purely serendipitous I found that f12 opens a small navigation window that has the current video path/filename as part of the title . It is not a "clean" way but still an easy on...
by red_sun
13 Jul 2019, 10:46
Forum: Scripts and Functions (v1)
Topic: GDIP Art ?
Replies: 16
Views: 6298

Re: GDIP Art ?

but in the same ballpark
:thumbup:

Amazing ( but it gobbles up 27% cpu………………..)

I think I gonna adapt it to get a new frequency analyser interface for the chilltrack player of noname .

Thanks for sharing
by red_sun
13 Jul 2019, 10:32
Forum: Ask for Help (v1)
Topic: Limit script to ACAD but exclude dialog boxes Topic is solved
Replies: 2
Views: 910

Re: Limit script to ACAD but exclude dialog boxes Topic is solved

If you use #if you can combine more than one condition.With "WinSpy" you can find the title or class of the dialog box and use it for a second condition. I do not have AutoCad so I cannot check the windows but here is an example using my editor PSPad that has a dialog box for opening a file.It will ...
by red_sun
13 Jul 2019, 04:50
Forum: Ask for Help (v1)
Topic: Searching files in autohotkey Topic is solved
Replies: 3
Views: 856

Re: Searching files in autohotkey Topic is solved

It is difficult to parse a text file without original example because of use of tabs and spaces , I created an example but cleanup to remove the tabs / spaces . data= ( 11/07/2019 8:58:10 AM peterp Peter Pan LTMEL0271 11/07/2019 8:59:20 AM mjackson Michael Jackson LTMEL1007 1048475495 11/07/2019 9:0...
by red_sun
12 Jul 2019, 05:47
Forum: Scripts and Functions (v1)
Topic: trim and merge 4k video lossless
Replies: 7
Views: 3620

trim and merge 4k video lossless

This code relies on potplayer as video editor viewer and ffmpeg as processing software , the free editors I tested were overkill for the simple tasks of trimming and merging.The win10 video editor could trim but not merge . The code is an example because it is "taylor made " for the job I needed ( o...

Go to advanced search