Search found 548 matches

by BNOLI
26 May 2020, 01:19
Forum: Ask for Help (v1)
Topic: Create a simple Gui Topic is solved
Replies: 6
Views: 733

Re: Create a simple Gui Topic is solved

GuiWidth ... when referenced in a GuiSize subroutine :!:
by BNOLI
25 May 2020, 23:12
Forum: Ask for Help (v1)
Topic: GUI modification questions
Replies: 20
Views: 1572

Re: GUI modification questions

JFTR (just for the records) BTBH is BNOLI-style for ... but TBH (to be honest) :mrgreen:. Yep, I'm not sure if an abbreviation really exists, but leave it with my counterpart to guess its minor variation - AFAIK (as far as I know) is AFAICS not that tough to guess (no idea if it exists :lol:)?
by BNOLI
25 May 2020, 23:04
Forum: Ask for Help (v1)
Topic: Create a simple Gui Topic is solved
Replies: 6
Views: 733

Re: Create a simple Gui Topic is solved

x+ % "w" A_GuiWidth / 3 ; Error: This parameter contains a variable name missing its ending percent sign (bc the line starts in "legacy style" a single % is invalid, so throws an error.) % "x+" A_GuiWidth / 3 ; Here you use the percent sign to declare a "forced expression", therefore the following ...
by BNOLI
25 May 2020, 11:15
Forum: Scripts and Functions (v1)
Topic: RemoteObj.ahk - Access objects remotely over a TCP/IP network
Replies: 10
Views: 4734

Re: RemoteObj.ahk - Access objects remotely over a TCP/IP network

@blue83 I'd assume that using the Socket.ahk (linked above) is all you need in your case.
by BNOLI
25 May 2020, 11:00
Forum: Ich brauche Hilfe
Topic: OBS und AHK
Replies: 6
Views: 989

Re: OBS und AHK

effel wrote:
25 May 2020, 10:50
Guten Abend,
mich interessiert es auch, leider kann ich mit der Information nichts anfangen

hat jemand fertigen code um obs zu steuern?
Wohl am ehesten OBS-Nutzer, diese dürften alle mit :arrow: diesen Posts zu tun haben. Vll ist ja was dabei. Good luck :)
by BNOLI
25 May 2020, 00:11
Forum: Ask for Help (v1)
Topic: GUI modification questions
Replies: 20
Views: 1572

Re: GUI modification questions

• How can I get the filenames to display with left justification rather than centered? https://www.autohotkey.com/docs/misc/Styles.htm#Button • Why does the name of the GUI (upper-left corner) display "w800" instead of "Excel Windows" as it did originally? Gui, Show,, wIBecameTheTitelBCSomeonePutAnA...
by BNOLI
24 May 2020, 11:46
Forum: Ich brauche Hilfe
Topic: LV_Add("",<continuation section>) Topic is solved
Replies: 7
Views: 1000

Re: LV_Add("",<continuation section>) Topic is solved

Thx, wasn't aware of that. Creating that array (continuation style) was just a by-product :)
by BNOLI
24 May 2020, 11:28
Forum: Ich brauche Hilfe
Topic: LV_Add("",<continuation section>) Topic is solved
Replies: 7
Views: 1000

Re: LV_Add("",<continuation section>) Topic is solved

swagfag , your second option was close! The fields content has to be handled in expression style :) Hätte nicht gedacht das wir es doch noch hinbekommen! Ergebnis: sowohl Gui, Add, ListView als auch LV_Add() kann parameter als :arrow: continuation section entgegen nehmen :thumbup: #NoEnv #SingleIns...
by BNOLI
24 May 2020, 10:01
Forum: Ask for Help (v1)
Topic: How can I start Music playing at 0:30 of the mp3 and not start at beginning of mp3?
Replies: 5
Views: 496

Re: How can I start Music playing at 0:30 of the mp3 and not start at beginning of mp3?

@swagfag Thx for that snippet. :thumbup:
I've found another thread that offers a few additional options. Just for the records: https://www.autohotkey.com/boards/viewtopic.php?t=15965
by BNOLI
24 May 2020, 09:55
Forum: SciTE4AutoHotkey
Topic: Scite4AutoHotkey "replace with" Topic is solved
Replies: 4
Views: 3877

Re: Scite4AutoHotkey "replace with" Topic is solved

Edit > Replace (Ctrl+H) or an icon ab :arrow: ac at the menu (taken from Notepad2 that is a Scite-clone) HTH :)
by BNOLI
24 May 2020, 09:41
Forum: Ask for Help (v1)
Topic: AutoHotKey Password
Replies: 14
Views: 2064

Re: AutoHotKey Password

@dmg Very nice option. Thx for sharing it :)
by BNOLI
24 May 2020, 09:10
Forum: Ich brauche Hilfe
Topic: LV_Add("",<continuation section>) Topic is solved
Replies: 7
Views: 1000

Re: LV_Add("",<continuation section>) Topic is solved

swagfag wrote:
24 May 2020, 08:18
granted im not exactly sure what ure asking for, maybe its this
Thx for dropping by :) Unfortunately both options didn't work as intended. The concept is indeed what I'm looking for.
by BNOLI
24 May 2020, 06:01
Forum: Ich brauche Hilfe
Topic: LV_Add("",<continuation section>) Topic is solved
Replies: 7
Views: 1000

Re: LV_Add("",<continuation section>) Topic is solved

Selbstverfreilich :) #NoEnv #SingleInstance, Force r3 = (LTrim r3 , r3 , r3 , r3 ) Gui, Add, ListView,, C1|C2|C3|C4 LV_ModifyCol() LV_Add("", r1 , r1 , r1, r1) LV_Add("", "r2", "r2", "r2", "r2") LV_Add("", r3) LV_Add("", "r4, r4, r4, r4") Gui, Show,, % chr(32) Return Gedankenblitz. Betrifft ja eigen...
by BNOLI
24 May 2020, 05:18
Forum: Ich brauche Hilfe
Topic: LV_Add("",<continuation section>) Topic is solved
Replies: 7
Views: 1000

LV_Add("",<continuation section>) Topic is solved

Hallo, :arrow: LV_ADD() tendiert bei langen Spalteneinträgen in Richtung Bandwurm, welcher selbst bei 16:9 PC screen gern zum rechten Bildschirmrand hinaus mäandert :roll: Meine Versuche die Komma-separierten Feldeinträge in einer 'continuation-section' zu layern blieben jedoch erfolglos. Ich fürcht...
by BNOLI
23 May 2020, 13:25
Forum: Skripte und Funktionen
Topic: €() - Währungformat zum Rechnen mit AHK umwandeln
Replies: 5
Views: 2057

Re: €() - Währungformat zum Rechnen mit AHK umwandeln

Super Fund ! Danke :thumbup: (ich wusste DllCall() holt mich irgendwie wieder ein) :lol:
by BNOLI
22 May 2020, 13:37
Forum: Skripte und Funktionen
Topic: €() - Währungformat zum Rechnen mit AHK umwandeln
Replies: 5
Views: 2057

Re: €() - Währungformat zum Rechnen mit AHK umwandeln

Hallo toralf, stimme dir da zu, sofern es um wissenschaftliche und techchnische Belange geht. Finanztechnisch dürften allerding bevorzugt Großbanken, Börsenhändler u.ä. > 2 Nachkommastellen rechnen. Sobald es ans Hartgeld, und alles Physische im Umfeld von Herrn Mustermann und Familie geht, wird vor...
by BNOLI
22 May 2020, 10:14
Forum: Ask for Help (v1)
Topic: GUI not changing position
Replies: 1
Views: 320

Re: GUI not changing position

Fullscreen-/Kiosk-Mode?
by BNOLI
22 May 2020, 10:07
Forum: Ask for Help (v1)
Topic: Automatically dropdown list using filenames
Replies: 4
Views: 1010

Re: Automatically dropdown list using filenames

So, where's your script? :wtf:
by BNOLI
22 May 2020, 10:05
Forum: Ask for Help (v1)
Topic: Is there a script that would paste formatted/clickable list of URL links into MS Word? Topic is solved
Replies: 10
Views: 1906

Re: Is there a script that would paste formatted/clickable list of URL links into MS Word? Topic is solved

Why you won't create an Html-file (that is plain text) and use its native functionality to provide active links? :eh:
by BNOLI
22 May 2020, 09:44
Forum: Ich brauche Hilfe
Topic: URL existiert Nachts nicht
Replies: 25
Views: 3112

Re: URL existiert Nachts nicht

Habe es etwas verändern müssen und musste noch ein https// davor setzen! UrlDownloadToFile, https//192.168.178.5/status.html , WR1.txt" Was für eine Funktion hat das Prozentzeichen? Danke nochmals. Ich denke das https//... dürfte noch einen Doppelpunkt vertragen: https://192.168.178.5/... !? Das Pr...

Go to advanced search