Same brand monitor, same resolution, same color depth, and most importantly the same color profiles (no profile).
The script above can be easily run if you have a solid color desktop background and horizontally placed monitors.
Thanks
Search found 43 matches
- Fri Jun 17, 2022 10:08 am
- Forum: Technical / Scripting
- Topic: GetRectCheckSum on extended monitor returns unexpected results
- Replies: 6
- Views: 5785
- Thu Jun 16, 2022 9:46 pm
- Forum: Technical / Scripting
- Topic: Virus Total False Positives
- Replies: 8
- Views: 7089
Re: Virus Total False Positives
I have had many false positives when trying to transport compiled scripts from either Email, Discord, other messaging, or Uploads. My quick solution was to encrypt the Zip file so the transport mechanism cannot scan it and flag it. Then give the password to the end-user. The end user PC will still d...
- Thu Jun 16, 2022 9:40 pm
- Forum: Technical / Scripting
- Topic: GetRectCheckSum on extended monitor returns unexpected results
- Replies: 6
- Views: 5785
- Thu Jun 16, 2022 9:39 pm
- Forum: Technical / Scripting
- Topic: Out of system resources
- Replies: 20
- Views: 27046
Re: Out of system resources
X2 should always be larger than X1
Y2 should always be larger than Y1
The coordinate are always Top Left, Bottom Right.
The previous scripts show Y2 is smaller than Y1
Y2 should always be larger than Y1
The coordinate are always Top Left, Bottom Right.
The previous scripts show Y2 is smaller than Y1
- Sat Jun 11, 2022 3:06 am
- Forum: Technical / Scripting
- Topic: GetRectCheckSum on extended monitor returns unexpected results
- Replies: 6
- Views: 5785
Re: GetRectCheckSum on extended monitor returns unexpected results
Here is a test script, the desktop background was changed to Solid Red so the CRC should be equal. This was compiled and tested on Win7 and Win10, MS 15.0.19b with the same results. Other functions like GetPixel, WaitPixelColor, ScreenCapture all work fine when working with the secondary monitor //S...
- Fri Jun 10, 2022 5:29 pm
- Forum: Technical / Scripting
- Topic: GetRectCheckSum on extended monitor returns unexpected results
- Replies: 6
- Views: 5785
Re: GetRectCheckSum on extended monitor returns unexpected results
I'll do more testing on this end.
For the results above I was using Win7, MS 15.0.19, and Y1=Y2, a horizontal line essentially. I'll try Y1 and Y2=Y1+1 instead. If that fails I'll try Win10.
Thanks for the tips.
For the results above I was using Win7, MS 15.0.19, and Y1=Y2, a horizontal line essentially. I'll try Y1 and Y2=Y1+1 instead. If that fails I'll try Win10.
Thanks for the tips.
- Fri Jun 10, 2022 9:29 am
- Forum: Technical / Scripting
- Topic: GetRectCheckSum on extended monitor returns unexpected results
- Replies: 6
- Views: 5785
GetRectCheckSum on extended monitor returns unexpected results
Using GetRectCheckSum on extended monitors returns unexpected results and always seems to return the same value no mater the bounding rectangle within the second monitor. As expected, use of GetRectCheckSum on the primary monitor works as intended.
- Sat Jul 24, 2021 8:40 pm
- Forum: General Discussion
- Topic: Release notes for 15.0.19?
- Replies: 7
- Views: 18517
Re: Release notes for 15.0.19?
Blindly installed version 19b, now waiting for release notes
fingers crossed for deleting and re-diming dynamic variables
fingers crossed for deleting and re-diming dynamic variables
- Wed Jun 09, 2021 12:58 pm
- Forum: Technical / Scripting
- Topic: Unable to set TIME OnEvent during a Button OnClick event
- Replies: 2
- Views: 3612
Re: Unable to set TIME OnEvent during a Button OnClick event
Thanks for the workaround, if this behavior is intended then I'll continue using this workaround.
- Mon Jun 07, 2021 5:04 pm
- Forum: Technical / Scripting
- Topic: Unable to set TIME OnEvent during a Button OnClick event
- Replies: 2
- Views: 3612
Unable to set TIME OnEvent during a Button OnClick event
Hi again, as the title suggests i am Unable to set TIME OnEvent during a Button OnClick event, the code immediately exits the SRT after the OnEvent and the OnEvent is never set and fired at the selected time. The below code is arbitrary code for example only. Thank you. If this behavior is intended ...
- Thu May 27, 2021 10:13 am
- Forum: Technical / Scripting
- Topic: MultiDIM Array Quirks
- Replies: 7
- Views: 7393
Re: MultiDIM Array Quirks
Could I get confirmation that these quirks are intended and I can continue to find workarounds on my own. Thank you.
- Tue May 25, 2021 10:04 am
- Forum: Technical / Scripting
- Topic: MultiDIM Array Quirks
- Replies: 7
- Views: 7393
Re: MultiDIM Array Quirks
Same, creates {"THISARRAY_%WW%"} array Just so this thread does not get lost in it main purpose I will re-list the quirks: ArrayDim>THISARRAY_%WW%,8,integer ArrayDim>THISARRAY_%WW%,11,integer Re-dim'ing a multi-dim array creates an unexpected array DelArray>THISARRAY_%WW% Cannot delete a multi-dim a...
- Mon May 24, 2021 9:05 am
- Forum: Technical / Scripting
- Topic: MultiDIM Array Quirks
- Replies: 7
- Views: 7393
Re: MultiDIM Array Quirks
Just did it made these vars
Code: Select all
0: {THISARRAY_%WW%}_1=55
0: {THISARRAY_%WW%}_2=66
0: {THISARRAY_%WW%}_3=77
0: {THISARRAY_%WW%}_4=88
0: {THISARRAY_%WW%}_5=99
0: {THISARRAY_%WW%}_6=11
0: {THISARRAY_%WW%}_COUNT=6
- Mon May 24, 2021 5:32 am
- Forum: Technical / Scripting
- Topic: MultiDIM Array Quirks
- Replies: 7
- Views: 7393
Re: MultiDIM Array Quirks
One more quirk, BUT i found a workaround to Let>WW=2 Let>QINDX=55,66,77,88,99,11 Separate>QINDX,COMMA,THISARRAY_%WW%,integer This creates an array THISARRAY_%WW% instead of THISARRAY_2 , but the workaround below works Let>WW=2 Let>QINDX=55,66,77,88,99,11 Separate>QINDX,COMMA,TMPARRAY,integer ArrayCo...
- Mon May 24, 2021 4:26 am
- Forum: Technical / Scripting
- Topic: MultiDIM Array Quirks
- Replies: 7
- Views: 7393
MultiDIM Array Quirks
Hi again :D some time back I came across these quirks and hopefully can get a workaround or solution. The first is reDim'ing multidimensional arrays, the following code creates 2 separate arrays THISARRAY_2 and THISARRAY_%WW% , of course the second array is unexpected. Let>WW=2 //make array with 8 e...