Search found 18 matches

by s0ftnauxz
24 Apr 2024, 20:46
Forum: Ask for Help (v1)
Topic: Goto Line # Edit1 ahk_class Notepad
Replies: 1
Views: 369

Goto Line # Edit1 ahk_class Notepad

below exam work fine for ComboBox, exist something simple for Edit1?

Code: Select all

Control, Choose,6,ComboBox2, A
by s0ftnauxz
12 Jun 2022, 18:35
Forum: Ask for Help (v1)
Topic: Countdown ToolTip Topic is solved
Replies: 3
Views: 551

Re: Countdown ToolTip Topic is solved

press hotkey 3 start counter, press again to stop, press alt for reset..

still last 3 numbers randomly but not zeroes, u have zero everything?
by s0ftnauxz
11 Jun 2022, 20:30
Forum: Ask for Help (v1)
Topic: Countdown ToolTip Topic is solved
Replies: 3
Views: 551

Countdown ToolTip Topic is solved

how reset timer on ALT? #NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases. SendMode Input ; Recommended for new scripts due to its superior speed and reliability. SetWorkingDir %A_ScriptDir% ; Ensures a consistent starting directory. DetectHiddenWindows On Detect...
by s0ftnauxz
03 Apr 2022, 01:03
Forum: Ask for Help (v1)
Topic: GUI, Edit Choose Line # Topic is solved
Replies: 2
Views: 377

Re: GUI, Edit Choose Line # Topic is solved

thankyou, that work for test but, by regret for 5000 and 20000 lines that work very slow, need dig in Send/PostMessage side..
by s0ftnauxz
26 Mar 2022, 19:24
Forum: Ask for Help (v1)
Topic: GUI, Edit Choose Line # Topic is solved
Replies: 2
Views: 377

GUI, Edit Choose Line # Topic is solved

like this bellow (from AHK.chm) only for Edit, exist? GuiControl, ChooseString, ControlID, String: Sets the selection (choice) in a ListBox, DropDownList, ComboBox i try Sendmessage, but that complex for me ;SendMessage, 0x00B6,2,, Edit1, ahk_class Notepad ; EM_LINESCROLL=$00B6 ; Edit ;SendMessage, ...
by s0ftnauxz
20 Mar 2022, 19:09
Forum: Ask for Help (v1)
Topic: Count of All Files in Sub Dirs
Replies: 8
Views: 711

Re: Count of All Files in Sub Dirs

i'll want make count leftside and extensions right, but there problem, somehow "var not in" dont work properly If sp1 not In ini, ahk, txt, [cnt] ; i still see ahk and [cnt]... #NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases. SendMode Input ; Recommended for ne...
by s0ftnauxz
15 Mar 2022, 18:23
Forum: Ask for Help (v1)
Topic: change (rename) SysListView other app with post/sendmessage
Replies: 0
Views: 174

change (rename) SysListView other app with post/sendmessage

Problem of "other app" is 17 char limited, so app not extract all 224 files, i dont know how hack 17 char limited in bin(hex) mb some Post/Send message can do that, sure u can rename manually but that slow, if u have plain text with proper names... script bellow can only change Width of Header, that...
by s0ftnauxz
25 Feb 2022, 14:45
Forum: Ask for Help (v1)
Topic: Count of All Files in Sub Dirs
Replies: 8
Views: 711

Re: Count of All Files in Sub Dirs

mikeyww wrote:
19 Feb 2022, 18:56
Have you thought about using the latest version?
800kb my base AHK, many old Libs and Funcs binded, which not work on modern AHK, and im low skill for do that manually, maybe if some AHK script manager, which automatically do this..
by s0ftnauxz
19 Feb 2022, 18:49
Forum: Ask for Help (v1)
Topic: Count of All Files in Sub Dirs
Replies: 8
Views: 711

Re: Count of All Files in Sub Dirs

thankYou mikeyww, but by regret i still on AHK_L 1.1.20.00 Unicode, and ur current script work only for ansi, dunno why also i forgot i do my "too much code" solution this task. #NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases. SendMode Input ; Recommended for n...
by s0ftnauxz
19 Feb 2022, 13:54
Forum: Ask for Help (v1)
Topic: Count of All Files in Sub Dirs
Replies: 8
Views: 711

Count of All Files in Sub Dirs

that ready script, but need count extensions like below example TXT 12 files EXE 2 files AHK 8 files WAV 40 files Make List of All Files in Sub Dirs #NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases. SendMode Input ; Recommended for new scripts due to its superio...
by s0ftnauxz
08 Nov 2021, 09:10
Forum: Ask for Help (v1)
Topic: Post\SendMessage - Change Icon of other App Topic is solved
Replies: 2
Views: 339

Post\SendMessage - Change Icon of other App Topic is solved

i suppose something like below, but forgot how.

Code: Select all

newico = shell32.dll, 2
PostMessage, 0x80, 0, %newico%,, ahk_class Notepad  ;
ExitApp
by s0ftnauxz
07 Nov 2021, 02:24
Forum: Ask for Help (v1)
Topic: Force Language switch on ENG, before MsgBox
Replies: 0
Views: 256

Force Language switch on ENG, before MsgBox

Note: The hotkey !x will not be active because it does not exist in the current keyboard layout. that possible escape MsgBox or Press Ok button automatically in 1 script or only list below?: 1. use scancode or virtual key 2. script launcher who use PostMess & Run your script 3. kill some string in a...
by s0ftnauxz
16 Sep 2021, 05:48
Forum: Ask for Help (v1)
Topic: PostMessage Notepad PopUp
Replies: 0
Views: 609

PostMessage Notepad PopUp

That exam work for uTorrent traypopup #IfWinActive, A F1:: SoundPlay, %A_WinDir%\Media\ding.wav DetectHiddenWindows On PostMessage, WM_COMMAND := 0x111, UM := 60, 1,, µTorrent ;Resume All Torrents \xb5Torrent key=1:&Hide/Show µTorrent-ID=60 return #IfWinActive, A ; for MainMenu of Notepad working, b...
by s0ftnauxz
16 Mar 2021, 21:57
Forum: Scripts and Functions (v1)
Topic: [Library] fmod fsound wrapper
Replies: 4
Views: 2420

Re: [Library] fmod fsound wrapper

i try script effects, dont work for me, or maybe i do some wrong? fsound.FX_SetEcho(sound1, 1) fsound.SetPan(sound1,Right, 20) fsound.SetVolume(sound1,10) fsound.SetFrequency(sound1,8000) #noenv #persistent #singleinstance,force #include fmod_fsound.ahk ;downloads 2 example sounds from my dropbox If...
by s0ftnauxz
21 Feb 2021, 19:17
Forum: Ask for Help (v1)
Topic: RegExp - remains only Letters,Numbs & standart symbols
Replies: 3
Views: 259

Re: RegExp - remains only Letters,Numbs & standart symbols

i edited post, mb more understandable now.

Code: Select all

*-+{}:',./?
that result of your code, there only 7 symbols (i use Autohotkey v1.1.20.00)
by s0ftnauxz
19 Feb 2021, 23:12
Forum: Ask for Help (v1)
Topic: RegExp - remains only Letters,Numbs & standart symbols
Replies: 3
Views: 259

RegExp - remains only Letters,Numbs & standart symbols

by standart symbols (md) i mean all what see on keyboard buttons

Code: Select all

md  = `~!@#$%^&*()-_=+[]{};:'"\|  ; <---- remain that (27 standart symbols on keyboard) + A-Z,a-z,0-9
s := RegExReplace(md,"i)[^a-zA-Z0-9:*-/+,.?'{}]")  ; that just i try, but dont work.
MsgBox % s
by s0ftnauxz
19 Feb 2021, 22:55
Forum: Ask for Help (v1)
Topic: FileGetSize MSWindows Like
Replies: 6
Views: 349

Re: FileGetSize MSWindows Like

you almost do that, but there error on 1 unit, btw this app show same size like Windows
www.explorerxp.com
by s0ftnauxz
27 Sep 2020, 14:58
Forum: Ask for Help (v1)
Topic: FileGetSize MSWindows Like
Replies: 6
Views: 349

FileGetSize MSWindows Like

fn = 3 420 573 bytes
3,26 Mb Win7 Properties aka ALT+Enter window
3 FileGetSize,fs,%fn%,M

what math need do for get 3,26

Go to advanced search