Let>field1=%arrCSV_%row%_%col%% <--- wrong
Let>field1=arrCSV_%row%_%col% <--- correct
Search found 814 matches
- Wed Feb 08, 2023 7:42 pm
- Forum: Technical / Scripting
- Topic: CSVtoarray get column values
- Replies: 2
- Views: 14
- Tue Dec 27, 2022 4:03 pm
- Forum: Beginners
- Topic: Running Multiple Lines At The Same Time
- Replies: 4
- Views: 374
Re: Running Multiple Lines At The Same Time
Any text accepting fields will only register one pressed key at the time. You should try your code using some keyboard monitoring software.
- Tue Dec 27, 2022 3:05 am
- Forum: Beginners
- Topic: Running Multiple Lines At The Same Time
- Replies: 4
- Views: 374
Re: Running Multiple Lines At The Same Time
Press and release commands are what you're looking for.
- Fri Nov 04, 2022 8:39 am
- Forum: Scripts and Tips
- Topic: Is Process Running Elevated?
- Replies: 1
- Views: 4098
Re: Is Process Running Elevated?
Simple and easy to implement. Thank you!
- Fri Oct 07, 2022 5:17 pm
- Forum: Technical / Scripting
- Topic: "incompatible with String" errors
- Replies: 3
- Views: 2208
Re: "incompatible with String" errors
Aha, great.
- Fri Oct 07, 2022 4:09 am
- Forum: Technical / Scripting
- Topic: "incompatible with String" errors
- Replies: 3
- Views: 2208
Re: "incompatible with String" errors
Trailing spaces maybe? Do a test by multiply the values by zero and check if the test result is zero. If not then add a breakpoint and investigate.
- Thu Sep 15, 2022 7:43 pm
- Forum: Technical / Scripting
- Topic: [Solved]Cannot access frame attributes
- Replies: 5
- Views: 2435
Re: Cannot access frame attributes
Sure it's a string you get when using the Javascript (in console?). Maybe you need to use stringify to get it back into MS? My guess is that the values are objects and not strings.
- Sun Jul 24, 2022 8:09 pm
- Forum: Technical / Scripting
- Topic: What section should i be in for Read/WriteMemory
- Replies: 1
- Views: 2298
Re: What section should i be in for Read/WriteMemory
You're leaving us the guessing game. Please give us more information about exactly what you're trying to do. What game, script so far etc
- Sun Jul 10, 2022 4:44 pm
- Forum: Technical / Scripting
- Topic: GetWindowHandle Timeout?
- Replies: 10
- Views: 3803
Re: GetWindowHandle Timeout?
Use a custom event which look for the window continously. The custom event isn't part of the main loop. You can then keep track of a variable which is set to 1 or 0. If it's 0 just go into a loop in the main thread for X amount of iterations just to be sure you wait a minimum time before acting.
- Sun Jul 10, 2022 5:18 am
- Forum: Technical / Scripting
- Topic: GetWindowHandle Timeout?
- Replies: 10
- Views: 3803
Re: GetWindowHandle Timeout?
I would think that if you do this, lowering the time, you may get false negative results. I can imagine that the command will start parsing from the top for each iterating. Why not use RegEx instead?
Let>WIN_REGEX=1
Let>WIN_REGEX=1
- Thu Jul 07, 2022 10:05 am
- Forum: Technical / Scripting
- Topic: Stopping a compiled script from running more than once
- Replies: 2
- Views: 2384
Re: Stopping a compiled script from running more than once
Use the hidden/zero size dialog trick JRL came up with. If the dialog is found you know you have a process running already.
- Sat Jul 02, 2022 8:41 pm
- Forum: Technical / Scripting
- Topic: ObjectSendKeys Ideas
- Replies: 3
- Views: 2608
- Sat Jul 02, 2022 8:39 pm
- Forum: Technical / Scripting
- Topic: ObjectSendKeys Ideas
- Replies: 3
- Views: 2608
Re: ObjectSendKeys Ideas
I got this from a very good friend here in the forum. LabelToVar>VK_Codes,vVKCodes IncludeFromVar>vVKCodes /* VK_Codes: Let>VK_LBUTTON=1 Let>VK_RBUTTON=2 Let>VK_CANCEL=3 Let>VK_MBUTTON=4 Let>VK_XBUTTON1=5 Let>VK_XBUTTON2=6 Let>VK_BACK=8 Let>VK_TAB=9 Let>VK_CLEAR=12 Let>VK_RETURN=13 Let>VK_SHIFT=16 L...
- Wed Jun 29, 2022 6:21 pm
- Forum: Technical / Scripting
- Topic: BUG: WaitKeyDown
- Replies: 8
- Views: 3218
Re: BUG: WaitKeyDown
Not running games in full screen prohibits the game from taking "full control" of the peripherals.
- Tue Jun 14, 2022 3:59 am
- Forum: General Discussion
- Topic: Tell us how Macro Scheduler helps you, what you use it for.
- Replies: 47
- Views: 222166
Re: Tell us how Macro Scheduler helps you, what you use it for.
If you want to share some code I suggest you break it down in small parts instead of showing your full script. It's easier to apply and understand snippets of code compared to a full project of code.