Search found 42 matches

by mragtronx8
Jun 11th, ’22, 18:49
Forum: General Discussion
Topic: lowercase letters are changed to CAPITAL
Replies: 7
Views: 1121

lowercase letters are changed to CAPITAL

lowercase letters are changed to CAPITAL sometimes [happens suddenly] Fastkeys when executing text-expander or a gesture to run a webpage, instead of typing https://www.fastkeysautomation.com/forum/, Fastkeys writes https://www.fastkeysautomation.com/FORUM/ "the last bit of the address is chang...
by mragtronx8
Apr 14th, ’22, 14:20
Forum: General Discussion
Topic: Modify Font Size in Script
Replies: 5
Views: 1914

Re: Modify Font Size in Script

hi Marko,
thanx for the support.

what about the outer border color "white", if am setting to red or blue; there is still a white border around it.
can this also be changed?

Best Regards
by mragtronx8
Apr 9th, ’22, 18:11
Forum: General Discussion
Topic: Modify Font Size in Script
Replies: 5
Views: 1914

Re: Modify Font Size in Script

please advise how to change the border and font color.
I changed the EEAA99 codes, but it didn't work.

PLEASE ADVISE.
by mragtronx8
Mar 26th, ’22, 15:05
Forum: General Discussion
Topic: Autocomplete Pop-up Menu Color
Replies: 1
Views: 498

Autocomplete Pop-up Menu Color

Hi;
please advise how to change the blue color in Autocomplete Pop-up Menu, to color of choice.

Image
Image
by mragtronx8
Mar 24th, ’22, 16:04
Forum: General Discussion
Topic: Automate Folders / Files
Replies: 5
Views: 723

Re: Automate Folders / Files

thanx.

I know it is a simple task.
but when there are over 500 folders daily and daily sorting, this automation will help.

can u please advise how-to code/script [KeyWait] using SEND, and not COMMAND.
by mragtronx8
Mar 21st, ’22, 15:42
Forum: General Discussion
Topic: Automate Folders / Files
Replies: 5
Views: 723

Re: Automate Folders / Files

Hi Tom, i tried to create a code, but was unable to figure it out. Am unable to figure out how to pause , to select the folder [in the code] Could you please help me with the code. I want to automate this process, so when i execute a gesture or start menu command; i just select the files and point t...
by mragtronx8
Mar 20th, ’22, 03:41
Forum: General Discussion
Topic: Automate Folders / Files
Replies: 5
Views: 723

Automate Folders / Files

i have some folders and files that i want to move/copy to a folder [user selection].

STEPS:-
1- select the folders and files
2- cut or copy OPTION
3- pause for user selection to select target folder [to paste]
4- paste in selected folder

is there a macro or script to help automate this.
by mragtronx8
Oct 17th, ’21, 16:21
Forum: General Discussion
Topic: how to replace a word or , or bracket
Replies: 6
Views: 1201

Re: how to replace a word or , or bracket

can the result be saved in the clipboard
instead of opening notepad and pasting the result there

thx again
by mragtronx8
Oct 17th, ’21, 13:22
Forum: General Discussion
Topic: how to replace a word or , or bracket
Replies: 6
Views: 1201

Re: how to replace a word or , or bracket

string:=Clipboard replacements:=",|.|,|[|]|{|}|(|)|-|_|Default|Beta|Multi|etc" loop, parse, replacements, | StringReplace, string, string, %A_LoopField%, %A_Space%, all loop StringReplace, string, string, %A_Space%%A_Space%,%A_Space%, UseErrorLevel until !ErrorLevel string=%string% sendin...
by mragtronx8
Oct 17th, ’21, 10:31
Forum: General Discussion
Topic: how to replace a word or , or bracket
Replies: 6
Views: 1201

Re: how to replace a word or , or bracket

Something like this? string:=Clipboard replacements:=".;,;[;];{;};(;);-;_;Default;Beta;Multi;etc" loop, parse, replacements, `; StringReplace, string, string, %A_LoopField%, %A_Space%, all loop StringReplace, string, string, %A_Space%%A_Space%,%A_Space%, UseErrorLevel until !ErrorLevel se...