Search found 1048 matches

by Grovkillen
Sun Jul 07, 2024 6:57 pm
Forum: Beginners
Topic: HTML code on multiple lines
Replies: 8
Views: 2332

Re: HTML code on multiple lines

1.
Yes the command needs to be above the label.

2.
Let>PERCENT=%

Code: Select all

width:100%PERCENT%
by Grovkillen
Sun Jul 07, 2024 8:38 am
Forum: Beginners
Topic: HTML code on multiple lines
Replies: 8
Views: 2332

Re: HTML code on multiple lines

LabelToVar>LabelName,VariableName[,WantLineBreaks,IgnoreVariables,EndToken

https://www.mjtnet.com/manuals/b/v15/in ... ntext=3980
by Grovkillen
Sat Jul 06, 2024 6:38 pm
Forum: Beginners
Topic: HTML code on multiple lines
Replies: 8
Views: 2332

Re: HTML code on multiple lines

Use Labeltovar
by Grovkillen
Sat Jun 29, 2024 8:09 pm
Forum: Technical / Scripting
Topic: ScreenCapture with Cursor
Replies: 1
Views: 1278

Re: ScreenCapture with Cursor

No, you need to fake it.

viewtopic.php?f=15&t=8010
by Grovkillen
Thu Jun 27, 2024 10:36 am
Forum: Enhancement Suggestions
Topic: Plans for future updates?
Replies: 2
Views: 2528

Re: Plans for future updates?

I'm interested too :D
by Grovkillen
Fri Jun 21, 2024 6:59 pm
Forum: Technical / Scripting
Topic: How to hide or remove Windows title bar
Replies: 5
Views: 1823

Re: How to hide or remove Windows title bar

Ah, JRL's answer makes me revaluate my answer. You're asking to remove the title bar of the individual window, my answer is regarding the Taskbar.
by Grovkillen
Thu Jun 20, 2024 6:20 am
Forum: Technical / Scripting
Topic: How to put an array as a combo box item
Replies: 6
Views: 2298

Re: How to put an array as a combo box item

Glad to have helped
by Grovkillen
Tue Jun 18, 2024 4:23 pm
Forum: Enhancement Suggestions
Topic: WaitMs> wait in milliseconds
Replies: 1
Views: 1268

Re: WaitMs> wait in milliseconds

I have now replaced all my Wait commands with the LibFunc>Kernel32,Sleep,Sres,100 function that JRL demoed here: https://www.mjtnet.com/forum/viewtopic.php?f=9&t=10672&p=47640 This one works great so far, will test it for a few days and make it permanent in my scripts until we get a native command.
by Grovkillen
Tue Jun 18, 2024 11:02 am
Forum: Enhancement Suggestions
Topic: WaitMs> wait in milliseconds
Replies: 1
Views: 1268

WaitMs> wait in milliseconds

I find myself using Wait>{100/1000} to wait for 100 milliseconds. Why I use the equation you may wonder, well that's because MacroScheduler uses the decimal of the local system and I cannot know if Wait>0.1 will work. Forcing the decimal symbol isn't a fool proof solution either. COMMA seems to be u...
by Grovkillen
Mon Jun 17, 2024 3:19 pm
Forum: Technical / Scripting
Topic: Simulated Mouse clicks in unity3d
Replies: 1
Views: 1312

Re: Simulated Mouse clicks in unity3d

Unity allow for disabling of automation perhaps? Tried running the script as Admin?

Another thing, unity probably use the relative mouse position inside the window.
by Grovkillen
Fri Jun 14, 2024 8:49 pm
Forum: Technical / Scripting
Topic: RegEx Help, Please
Replies: 1
Views: 1288

Re: RegEx Help, Please

Single RegEx will probably not do exactly what you want (memory for pulling of that one might be big?). This is how I would do it: Let>STRING=;1;2;3;4;5;6;7;8;9;1;2;3;23;34;51; Let>REGEX_PATTERN=\b(\d+)\b(?=.*\b\1\b) RegEx>REGEX_PATTERN,STRING,0,FOUND,FOUND_count,0,, If>FOUND_count>0 Let>k=0 Repeat>...
by Grovkillen
Fri Jun 07, 2024 10:49 am
Forum: Technical / Scripting
Topic: How to put an array as a combo box item
Replies: 6
Views: 2298

Re: How to put an array as a combo box item

Here's an example: Dialog>Dialog1 object Dialog1: TForm Left = 2496 Top = -1121 HelpContext = 5000 BorderIcons = [biSystemMenu] Caption = 'CustomDialog' ClientHeight = 211 ClientWidth = 476 Color = clBtnFace Font.Charset = DEFAULT_CHARSET Font.Color = clWindowText Font.Height = -11 Font.Name = 'MS S...
by Grovkillen
Mon Jun 03, 2024 3:26 pm
Forum: Technical / Scripting
Topic: How to put an array as a combo box item
Replies: 6
Views: 2298

Re: How to put an array as a combo box item

You want them in one combo box or multiple combo boxes?
Sign up to our newsletter for free automation tips, tricks & discounts