Technical support and scripting issues
Moderators: Dorian (MJT support), JRL
-
armsys
- Automation Wizard
- Posts: 1108
- Joined: Wed Dec 04, 2002 10:28 am
- Location: Hong Kong
Post
by armsys » Thu May 23, 2013 10:39 pm
Marcus,
Thanks for fixing the regex issues in lightning fast speed far beyond my expectation.
BTW, would please explain the following enhancements?
Code: Select all
- Fixed: i146 - inline comment inside loops causing errors
- Added: i140 - Search box retains focus after search - switch focus to results list.
I have no idea as to "Search box retain focus...."
Thanks again.
-
CyberCitizen
- Automation Wizard
- Posts: 721
- Joined: Sun Jun 20, 2004 7:06 am
- Location: Adelaide, South Australia
Post
by CyberCitizen » Fri May 24, 2013 5:48 am
Inline comments fixes an issue similar to this below example.
Code: Select all
This code causes a While/EndWhile mismatch:
While>1<2
If>2<1 /*comment*/
Message>hello
Endif
EndWhile
Works if the /*comment*/ is removed.
The second one relates to once you search for a script the focus isn't set to the search results but to that of the original search box.
FIREFIGHTER
-
armsys
- Automation Wizard
- Posts: 1108
- Joined: Wed Dec 04, 2002 10:28 am
- Location: Hong Kong
Post
by armsys » Fri May 24, 2013 6:04 am
Hi CyberCitizen,
Thanks for your crystal-clear explanation.
Yeah, I did encounter the "inconvenenience" caused by inline comments. I didn't know it could be a bug.
You must be a busy MS programmer.
Thanks again.
-
CyberCitizen
- Automation Wizard
- Posts: 721
- Joined: Sun Jun 20, 2004 7:06 am
- Location: Adelaide, South Australia
Post
by CyberCitizen » Fri May 24, 2013 7:49 am
No not at all, I am your average MS user, just use it every so often to automate various tasks at work. I just remember seeing it in the forums recently.
FIREFIGHTER
-
HaydonJurai
- Newbie
- Posts: 1
- Joined: Wed Aug 17, 2022 1:09 am
Post
by HaydonJurai » Wed Aug 17, 2022 4:00 am
CyberCitizen wrote: ↑Fri May 24, 2013 5:48 am
Inline comments fixes an issue similar to this below example.
Code: Select all
This code causes a While/EndWhile mismatch:
While>1<2
If>2<1 /*comment*/
Message>hello
Endif
EndWhile
Works if the /*comment*/ is removed.
The second one relates to once you search for a script the focus isn't set to the search results but to that of the original search box.
For anyone else experiencing this issue, and happens along this post, it is still happening in 15.0.20, and it is specifically the "*/" that caused my problem. I started out a comment OK, "// ************..." with a space so it didn't start an inline comment, but I ended it out of habit as "...*/", and it was causing me considerable grief until I found this post. It may be years later, but thank you CyberCitizen!
-
CyberCitizen
- Automation Wizard
- Posts: 721
- Joined: Sun Jun 20, 2004 7:06 am
- Location: Adelaide, South Australia
Post
by CyberCitizen » Wed Aug 17, 2022 7:25 am
You're welcome
FIREFIGHTER