Search found 115 matches

by moefr01
18 Sep 2017, 09:10
Forum: Scripts and Functions (v1)
Topic: [GDI+ Object] Subtitle.Render() - Beautiful Text on Screen
Replies: 62
Views: 24435

Re: Subtitle.Render() - Show text with style (Easy, painless Gdip interpreter)

thanks for the clear explanation, iseahound ... while checking out my tips'n'tricks-repository grabbed the following solution: :wtf: after coding a little with sendmessage, 0xA1, 2 I found out that using a dummy-key for GetKeyState, status would position the objects (background and text) by dragging...
by moefr01
17 Sep 2017, 10:01
Forum: Scripts and Functions (v1)
Topic: [GDI+ Object] Subtitle.Render() - Beautiful Text on Screen
Replies: 62
Views: 24435

Re: Subtitle.Render() - Show text with style (Easy, painless Gdip interpreter)

Any chance to get x and y position after dragging with left mouse? I tried it with postmessage, a1, 2... no success! :?:
by moefr01
15 Sep 2017, 00:47
Forum: Scripts and Functions (v1)
Topic: [GDI+ Object] Subtitle.Render() - Beautiful Text on Screen
Replies: 62
Views: 24435

Re: Subtitle.Render() - Show text with style (Easy, painless Gdip interpreter)

thanx a lot for these great examples... opened my eyes instantly! :wtf: :superhappy:
by moefr01
13 Sep 2017, 15:03
Forum: Scripts and Functions (v1)
Topic: [GDI+ Object] Subtitle.Render() - Beautiful Text on Screen
Replies: 62
Views: 24435

Re: Subtitle.Render() - Show text with style (Easy, painless Gdip interpreter)

Thanks for your Great Code, iseahound... very usable for informative devs. I am looking for a possibilty to exchange the formatted text by a timer, eg a clock, countdown ... With gdip you can define a prush, which erases the already displayed string every tick, so its easy to create a smooth Desktop...
by moefr01
04 Sep 2017, 12:43
Forum: Ich brauche Hilfe
Topic: Outlook-Kontakte Notizen auslesen und schreiben
Replies: 2
Views: 1182

Re: Outlook-Kontakte Notizen auslesen und schreiben

just me, vielen Dank... funktioniert einwandfrei! :bravo:
...und Du bist doch'n E x p e r t e.
by moefr01
04 Sep 2017, 10:27
Forum: Ich brauche Hilfe
Topic: Outlook-Kontakte Notizen auslesen und schreiben
Replies: 2
Views: 1182

Outlook-Kontakte Notizen auslesen und schreiben

Liebe AHK'ler, bin fast am verzweifeln, ich bekomme es einfach nicht gebacken über die ComObject-Methode einen Outlook 2013-Kontakt auszulesen, bzw. den Notiztext mit eigenem Text zu ergänzen. Das Auslesen des gesamten Notizfeldes eines gesuchten Kontakts funktioniert zwar, aber wie kann ich den Tex...
by moefr01
24 Aug 2017, 13:52
Forum: Scripts and Functions (v1)
Topic: AHK Telegram MsgBox (Telegram_MsgBox)
Replies: 25
Views: 17355

Re: AHK Telegram MsgBox (Telegram_MsgBox)

Append the following line into the StringReplace-block of my suggestion regarding german Umlauts (see above):

Code: Select all

StringReplace, Infotext, Infotext, &, `%26, All
should work for any ampersand in your string. :wtf:
by moefr01
19 Jun 2017, 03:49
Forum: Scripts and Functions (v1)
Topic: AHK Telegram MsgBox (Telegram_MsgBox)
Replies: 25
Views: 17355

Re: AHK Telegram MsgBox (Telegram_MsgBox)

try it with
FileEncoding, UTF-8
at the beginning of your ahk-code
by moefr01
18 Jun 2017, 01:30
Forum: Scripts and Functions (v1)
Topic: AHK Telegram MsgBox (Telegram_MsgBox)
Replies: 25
Views: 17355

Re: AHK Telegram MsgBox (Telegram_MsgBox)

mustang , use this as own ico: Telegram_MsgBox( "%F0%9F%A4%BE" ,2,RandomVariable) You can see the working html-code on your browser's statusline by pointing your mouse over the unicode U+1F93E at line Codepoints of your emojipedia.org site. 8-) other Emojis work too... give them a try! ;) moefr01
by moefr01
05 May 2017, 09:56
Forum: Scripts and Functions (v1)
Topic: AHK Telegram MsgBox (Telegram_MsgBox)
Replies: 25
Views: 17355

Re: AHK Telegram MsgBox (Telegram_MsgBox)

nice code... spur thx :clap: looking for a solution to send german letters in specified telegram-Messages so I decided to use StringReplace : StringReplace, text, text, ä, `%C3`%A4 , All StringReplace, text, text, ö, `%C3`%B6 , All StringReplace, text, text, ü, `%C3`%BC , All StringReplace, text, t...
by moefr01
16 Mar 2017, 10:01
Forum: Skripte und Funktionen
Topic: NoUAC - Benutzerkontensteuerungs-Abfrage umgehen
Replies: 11
Views: 15038

Re: NoUAC - Benutzerkontensteuerungs-Abfrage umgehen

@Best-Code-in-Use nicht der Rede wert... ;) habe ich gerne gemacht (brannte mir irgendwie auf den Fingern!) Deine semantische Anpassung gefällt mir sehr gut, manchmal steht man irgendwie auf'm Schlauch vor lauter Coding und findet einfach nicht die treffenden Strings :think: ...danke. Deshalb ein gr...
by moefr01
14 Mar 2017, 13:43
Forum: Scripts and Functions (v1)
Topic: FrameShadow(): Drop Shadow On Borderless Window, (DWM STYLE)
Replies: 40
Views: 19999

Re: FrameShadow(): Drop Shadow On Borderless Window

@Klark92 Thanks for your awesome code :thumbup: tested on win 10 x64... works fine, but if you add a picture for the background it will show an ugly 1-pixel border around the whole window, changing its color if window is active or not. Playing around with the numput-values from -1, 0, 1 showed me a ...
by moefr01
13 Mar 2017, 11:38
Forum: Skripte und Funktionen
Topic: NoUAC - Benutzerkontensteuerungs-Abfrage umgehen
Replies: 11
Views: 15038

Re: NoUAC - Benutzerkontensteuerungs-Abfrage umgehen

@AHKler hinsichtlich der nachträglichen Anpassung für Notebooknutzer bei Akkustromnutzung habe ich eine Lösung gefunden: Der Trick besteht darin eine XML-Datei mit der gewünschten Parametrisierung ( false/true ) zu erstellen und diese anschl. per schtasks /create auszuführen. Dabei werden die Beding...
by moefr01
13 Mar 2017, 11:28
Forum: Ich brauche Hilfe
Topic: AHK und UAC
Replies: 11
Views: 6378

Re: AHK und UAC

@Best-Code-In-Use done... :P war ein bisschen tricky, da die Parameter von schtasks.exe (siehe schtasks /create /? ) zum Ändern der Bedingungen der jeweiligen Aufgabe nicht existieren... dennoch gibt es eine Lösung: Der Trick besteht darin eine XML-Datei mit der gewünschten Parametrisierung ( false/...
by moefr01
05 Mar 2017, 09:58
Forum: Skripte und Funktionen
Topic: NoUAC - Benutzerkontensteuerungs-Abfrage umgehen
Replies: 11
Views: 15038

Re: NoUAC - Benutzerkontensteuerungs-Abfrage umgehen

TIPP: Mir ist aufgefallen, dass die NoUAC-erstellte Verknüpfung auf Notebooks nicht ausgeführt wird, wenn diese mit Akkustrom laufen... ergo bei Registerkarte [Bedingungen] in der Aufgabenbibliothek/ meine Aufgabe nachträglich den Haken entfernt: Aufgabe nur starten, falls Computer im Netzbetrieb a...
by moefr01
05 Mar 2017, 09:51
Forum: Ich brauche Hilfe
Topic: AHK und UAC
Replies: 11
Views: 6378

Re: AHK und UAC

Hallo Bassman, ich kann dir hierzu mein Script NoUAC empfehlen...> https://autohotkey.com/boards/viewtopic.php?f=10&t=10733 Ansonsten folge den Anweisungen unten: Aufgabenplanung: Wichtig sind bei der Erstellung der Aufgabe folgende Parameter: sc beim Start und rl mit höchsten Berechtigungen Du kont...
by moefr01
30 Jan 2017, 14:21
Forum: Scripts and Functions (v1)
Topic: Ticker: An RSS Scroller
Replies: 77
Views: 27081

Re: Ticker: An RSS Scroller

IT WORKS!!! I checked my buggy code and rearranged it successfully :dance: To fulfil my needs I added the following: - vertical position of the banner with y-value ....... added: TickerGuiY:=2032 - manual height of the banner (new: TickerHeightDif=12 ....... modified: TickerGuiH:=SubStr(TickerGuiH,...
by moefr01
29 Jan 2017, 10:21
Forum: Scripts and Functions (v1)
Topic: Ticker: An RSS Scroller
Replies: 77
Views: 27081

Re: Ticker: An RSS Scroller

Very nice code... Nextron :thumbup: I was looking for a working smoothy ticker on my Razer Blade Stealth with 3840x2160 pixels and defined 200% display solution. I found out neither -DPIScale nor exe-settings did work (every textline truncated after 3-5 words). In addition the settings of LnC are n...
by moefr01
22 Jan 2017, 02:53
Forum: Scripts and Functions (v1)
Topic: Rubbish - System Tray Recycle Bin
Replies: 18
Views: 30924

Re: Rubbish - System Tray Recycle Bin

:bravo: @TheDewd ...works now as expected! :bravo: size and item-counting failed issue regards only your previously release: it double-counted the recyclebin items, so I tried to recode as in your first release.. that worked fine temporarily. Now I've tested your last release without any issues , al...
by moefr01
21 Jan 2017, 17:32
Forum: Scripts and Functions (v1)
Topic: Rubbish - System Tray Recycle Bin
Replies: 18
Views: 30924

Re: Rubbish - System Tray Recycle Bin

P.S.: size and item-counting failed... here's the corrected code: replace line 62 - 80 with RBQuery: /* TotalSize := 0 TotalNumItems := 0 DriveGet, FixedDrives, List, Fixed Loop, Parse, FixedDrives { SHQueryRecycleBin(A_LoopField ":\", Size, NumItems) TotalSize += Size TotalNumItems += NumItems } */...

Go to advanced search