Search found 12 matches

by axxomano
24 May 2019, 20:02
Forum: Scripts and Functions (v1)
Topic: A possible solution to modifier hangings
Replies: 0
Views: 749

A possible solution to modifier hangings

Many different solutions are provided to modifier hanging problems. I have replicated a solution and feel so to have made it better. Perhaps you could make it even better or even find issues in it. The original solution is as in this link below https://autohotkey.com/board/topic/16033-releasing-modi...
by axxomano
22 May 2019, 02:00
Forum: Ask for Help (v1)
Topic: Getkeystate of ` Key not working Topic is solved
Replies: 3
Views: 1003

Re: Getkeystate of ` Key not working Topic is solved

thanks for the clear explanation. I'm looking to solve key hanging issues.
by axxomano
11 May 2019, 14:04
Forum: Ask for Help (v1)
Topic: Getkeystate of ` Key not working Topic is solved
Replies: 3
Views: 1003

Getkeystate of ` Key not working Topic is solved

Hi friends I tried the following code. The Virtual keycode for ` is not working if i use it in GetKeystate ` & a:: if (GetKeyState("vkC0")) ;VKC0 is for ` and it's not working send {SC029 down}{SC029 up} ;SC029 is for ` return other virtual keycodes are working fine as below for eg:- +a:: if (GetKey...
by axxomano
11 Mar 2019, 02:00
Forum: Ask for Help (v1)
Topic: [deleted]
Replies: 1
Views: 626

[deleted]

[/deleted]
by axxomano
14 Feb 2019, 11:52
Forum: Ask for Help (v1)
Topic: detect if improper tags are found in a text Topic is solved
Replies: 8
Views: 1627

Re: detect if improper tags are found in a text Topic is solved

text := "Some Text <en> <es>" MsgBox, % (RegExMatch(text, "<(?!e(n|s)>)") ? "Improper" : "Proper") . " Tag" text := "Some text <en> <whatever> <else> <tag>" MsgBox, % (RegExMatch(text, "<(?!e(n|s)>)") ? "Improper" : "Proper") . " Tag" ? Thanks a lot. It's working. The part i was missing was the ?! ...
by axxomano
14 Feb 2019, 11:12
Forum: Ask for Help (v1)
Topic: detect if improper tags are found in a text Topic is solved
Replies: 8
Views: 1627

Re: detect if improper tags are found in a text Topic is solved

Did you try my code? Sorry i didn't reply you in first. :) What i want is anything other than <en> or <es> tag to be detected.There are multiple language codes where i am working so i need it to detect if any other tag to be detected false. Eg1:- Some Text <en> <es> output:- MsgBox, Proper Tag Eg2:...
by axxomano
14 Feb 2019, 10:27
Forum: Ask for Help (v1)
Topic: detect if improper tags are found in a text Topic is solved
Replies: 8
Views: 1627

Re: detect if improper tags are found in a text Topic is solved

thanks for your reply but what i wanted was anything other than <en> and <es> to be detected in the text

Eg:-
some text <en> <es>
Output:
MsgBox, Tags are correct


some text <en><es><whatever><tag><being><used>
Output:
MsgBox, incorrect tags found
by axxomano
13 Feb 2019, 17:36
Forum: Ask for Help (v1)
Topic: detect if improper tags are found in a text Topic is solved
Replies: 8
Views: 1627

detect if improper tags are found in a text Topic is solved

I want to detect in a text if improper tags are found if text is: some text <en> <es> then :- MsgBox, Good usage of tags if text is: some text <en> <ta> then :- MsgBox, Improper tag found Basically there should be only <en> or <es> tags in a text. I don't know how to implemment this with regexmatch....
by axxomano
30 Jan 2019, 18:39
Forum: Ask for Help (v1)
Topic: While removing spaces via regexreplace it removes curly braces too Topic is solved
Replies: 5
Views: 1204

Re: While removing spaces via regexreplace it removes curly braces too Topic is solved

:bravo: oh thanks a million I was knocking my head off with this problem.

Can you please also guide me where to learn best practices or where can i learn better
by axxomano
30 Jan 2019, 18:26
Forum: Ask for Help (v1)
Topic: While removing spaces via regexreplace it removes curly braces too Topic is solved
Replies: 5
Views: 1204

Re: While removing spaces via regexreplace it removes curly braces too Topic is solved

But it is not working for me. Below is my code #NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases. ; #Warn ; Enable warnings to assist with detecting common errors. SendMode Input ; Recommended for new scripts due to its superior speed and reliability. SetWorkingD...
by axxomano
30 Jan 2019, 17:43
Forum: Ask for Help (v1)
Topic: While removing spaces via regexreplace it removes curly braces too Topic is solved
Replies: 5
Views: 1204

While removing spaces via regexreplace it removes curly braces too Topic is solved

Please help me on this one: while removing spaces the curly braces/squiggly brackets are removed This is my code clipboard:= regexreplace(clipboard, "^\s+") ;trim beginning whitespace If the text is like: {Hello} the curly braces are removed Please help me i want to retain the squiggly brackets

Go to advanced search