| View previous topic :: View next topic |
| Author |
Message |
Mac Professional Member

Joined: 08 Jul 2000 Posts: 1585 Location: Oklahoma USA
|
Posted: Mon Dec 09, 2002 1:29 am Post subject: Would ya help us test this? |
|
|
-- VDS3 and VDS4 compatible --
This is a test for Garrett's idea (modified by me) to get title
height, menu height, status bar height, and left/right/bottom
border widths with various user appearance settings.
This test doesn't change any settings etc., but it does use
WINDOW CLICK on it's own child window, so DON'T move
the mouse while the test is running (it's fast). Other programs
running can also affect the results by stealing the focus, etc.
"GetWindowSpecs" (at the bottom) is what actually gets the
data, the rest is just test code. The vars retrieved are:
Title height - %%t_height
Menu height - %%m_height
Status Bar height - %%sb_height
Left Border - %%b_lside
Right Border - %%b_rside
Bottom Border - %%b_bottom
There's two buttons, one that does a standard VDS window,
and one that does a resizable window. If you get errors,
please try it again in case the mouse was moved.
There's more explanation at the top of the code.
The results are posted in the edit box, if you get errors,
please copy and paste the entire contents of the edit box
here. If not, let us know how it goes.
It'd be nice if some of ya could change your windows
appearance around and run both tests. I'll post an example
with it in the source code section if it works pretty well for
everyone. Thanks.
EDIT - Changed from 1x1 dot target to 25 dot cluster (5x5).
It also records which dot (if any) is clicked.
_______________________________________________________________________________________________________________________________________________________
| Code: |
rem -- "GetWindowSpecs" was Garrett's idea - modified by Mac --
rem -- Gets left/right/bottom border width and title/menu/status
rem -- bar height, then performs a series of tests.
rem -- How the test works: It uses the data above to locate and click
rem -- the dots (explained below), then checks to see if the proper
rem -- CLICK event is returned.
rem -- 1. Adds 3 dot clusters (25 dots - 5x5 clickable area)
rem -- upper left, lower right, and just above a status bar area.
rem -- 2. Attempts to click somewhere on all 3 dot clusters.
rem -- 3. Adds a status bar and attempts to click the third dot cluster.
rem -- 4. Removes the status bar, adds a menu and repeats 1 thru 3.
rem -- 5. Test results are logged to the edit box.
rem -- NOTE: OTHER PROGRAMS RUNNING MAY AFFECT THE TEST --
OPTION SCALE, 96
OPTION DECIMALSEP, "."
TITLE By Mac
DIALOG CREATE,"Specs Test",-1,0,300,200
%%main = @winexists("Specs Test")
DIALOG ADD,STYLE,MainStyle,MS Sans Serif,8,BC
DIALOG ADD,STYLE,MainStyle2,Courier New,9,B
DIALOG ADD,BUTTON,Standard,5,5,100,22,"Standard Test"
DIALOG ADD,BUTTON,Resizable,5,115,100,22,"Resizable Test"
DIALOG ADD,TEXT,MainT1,35,0,300,,"DO NOT Move mouse during test!",,MainStyle
DIALOG ADD,EDIT,E1,60,5,290,118,,,MULTI,READONLY,SCROLL,MainStyle2
DIALOG ADD,STATUS,Stat,"Ready...",MainStyle
DIALOG SHOW
:EVLOOP
%%resize = ""
GOSUB GetWindowSpecs
WINDOW POSITION,%%main,,,,@sum(180, %%sb_height, %%b_bottom, %%t_height)
WAIT EVENT
goto @event()
:StandardButton
goto START
:ResizableButton
%%resize = 1
goto START
:START
GOSUB GetWindowSpecs
%%test1 = 0
%%test2 = 0
%%test3 = 0
%%log = Screen - @sysinfo(SCREENWIDTH) x @sysinfo(SCREENHEIGHT)@chr(13)@chr(10)
%%child = "** Window Specs Test **"
if %%resize
DIALOG CREATE,%%child,-1,0,300,200,RESIZABLE
else
DIALOG CREATE,%%child,-1,0,300,200
end
DIALOG ADD,STYLE,S1,,,,BLACK
%%xx = 8
%x = 1
REPEAT
DIALOG ADD,TEXT,T1_%x,8,%%xx,1,1,,,S1,CLICK
DIALOG ADD,TEXT,T1_@sum(%x,5),9,%%xx,1,1,,,S1,CLICK
DIALOG ADD,TEXT,T1_@sum(%x,10),10,%%xx,1,1,,,S1,CLICK
DIALOG ADD,TEXT,T1_@sum(%x,15),11,%%xx,1,1,,,S1,CLICK
DIALOG ADD,TEXT,T1_@sum(%x,20),12,%%xx,1,1,,,S1,CLICK
%%xx = @succ(%%xx)
%x = @succ(%x)
UNTIL @greater(%x, 5)
%%xx = 287
%x = 1
REPEAT
DIALOG ADD,TEXT,T2_%x,187,%%xx,1,1,,,S1,CLICK
DIALOG ADD,TEXT,T2_@sum(%x,5),188,%%xx,1,1,,,S1,CLICK
DIALOG ADD,TEXT,T2_@sum(%x,10),189,%%xx,1,1,,,S1,CLICK
DIALOG ADD,TEXT,T2_@sum(%x,15),190,%%xx,1,1,,,S1,CLICK
DIALOG ADD,TEXT,T2_@sum(%x,20),191,%%xx,1,1,,,S1,CLICK
%%xx = @succ(%%xx)
%x = @succ(%x)
UNTIL @greater(%x, 5)
%%xx = 8
%x = 1
REPEAT
DIALOG ADD,TEXT,T3_%x,@diff(197,%%sb_height),%%xx,1,1,,,S1,CLICK
DIALOG ADD,TEXT,T3_@sum(%x,5),@diff(198,%%sb_height),%%xx,1,1,,,S1,CLICK
DIALOG ADD,TEXT,T3_@sum(%x,10),@diff(199,%%sb_height),%%xx,1,1,,,S1,CLICK
DIALOG ADD,TEXT,T3_@sum(%x,15),@diff(200,%%sb_height),%%xx,1,1,,,S1,CLICK
DIALOG ADD,TEXT,T3_@sum(%x,20),@diff(201,%%sb_height),%%xx,1,1,,,S1,CLICK
%%xx = @succ(%%xx)
%x = @succ(%x)
UNTIL @greater(%x, 5)
DIALOG ADD,TEXT,Msg,20,5
DIALOG SHOW
rem -- Click is at 10,10 --
%x = @sum(10, %%b_lside)
%y = @sum(10, %%t_height)
GOSUB TopLeftTest
rem -- Click is at 189,289 (199, 299 is max) --
%x = @diff(@winpos(%%child, W), @sum(10, %%b_rside))
%y = @diff(@winpos(%%child, H), @sum(10, %%b_bottom))
GOSUB BottomRightTest
rem -- Click is at [1 above status bar],10 --
%x = @sum(10, %%b_lside)
%y = @diff(@winpos(%%child, H), @sum(%%b_bottom, %%sb_height))
GOSUB StatusTest
DIALOG ADD,STATUS,StatTest
rem -- Click is at [1 above status bar],10 --
%x = @sum(10, %%b_lside)
%y = @diff(@winpos(%%child, H), @sum(%%b_bottom, %%sb_height))
GOSUB StatusTest
DIALOG REMOVE, StatTest
DIALOG ADD,MENU,Menu Test
rem -- Click is at 10,10 --
%x = @sum(10, %%b_lside)
%y = @sum(10, %%t_height, %%m_height)
GOSUB TopLeftTest
rem -- Click is at 189,289 (199, 299 is max) --
%x = @diff(@winpos(%%child, W), @sum(10, %%b_rside))
%y = @diff(@winpos(%%child, H), @sum(10, %%b_bottom))
GOSUB BottomRightTest
rem -- Click is at [1 above status bar],10 --
%x = @sum(10, %%b_lside)
%y = @diff(@winpos(%%child, H), @sum(%%b_bottom, %%sb_height))
GOSUB StatusTest
DIALOG ADD,STATUS,StatTest
rem -- Click is at [1 above status bar],10 --
%x = @sum(10, %%b_lside)
%y = @diff(@winpos(%%child, H), @sum(%%b_bottom, %%sb_height))
GOSUB StatusTest
DIALOG CLOSE
%e = @event()
%%log = %%log"-------------------------"@chr(13)@chr(10)
%%log = %%log"Title height - "%%t_height@chr(13)@chr(10)
%%log = %%log"Menu height - "%%m_height@chr(13)@chr(10)
%%log = %%log"Status Bar height - "%%sb_height@chr(13)@chr(10)
%%log = %%log"Left Border - "%%b_lside@chr(13)@chr(10)
%%log = %%log"Right Border - "%%b_rside@chr(13)@chr(10)
%%log = %%log"Bottom Border - "%%b_bottom@chr(13)@chr(10)
DIALOG SET, E1, %%log
DIALOG SET, Stat, "Finished... Scroll down for specs."
goto EVLOOP
:CLOSE
EXIT
rem -------- SUB ------------
:TopLeftTest
%%test1 = @succ(%%test1)
WINDOW CLICK,%%child,%x,%y
%e = @event()
rem -- T1 --
if @equal(@substr(%e, @diff(@len(%e), 4), @len(%e)), CLICK)
%%log = %%log"OK - Top left test "%%test1 - ClickX= %x ClickY= %y@chr(13)@chr(10)
%%log = %%log" MouseXY= "@mousepos()@chr(13)@chr(10)" WinLTWH= "@winpos(%%child,LTWH)@chr(13)@chr(10)
%%log = %%log" "%e@chr(13)@chr(10)
else
%%log = %%log"ERROR - Top Left test "%%test1 - ClickX= %x ClickY= %y@chr(13)@chr(10)
%%log = %%log" MouseXY= "@mousepos()@chr(13)@chr(10)" WinLTWH= "@winpos(%%child,LTWH)@chr(13)@chr(10)
end
DIALOG SET, Msg, @dlgtext(Msg) %%test1
exit
:BottomRightTest
%%test2 = @succ(%%test2)
WINDOW CLICK,%%child,%x,%y
%e = @event()
rem -- T2 --
if @equal(@substr(%e, @diff(@len(%e), 4), @len(%e)), CLICK)
%%log = %%log"OK - Bottom right test "%%test2 - ClickX= %x ClickY= %y@chr(13)@chr(10)
%%log = %%log" MouseXY= "@mousepos()@chr(13)@chr(10)" WinLTWH= "@winpos(%%child,LTWH)@chr(13)@chr(10)
%%log = %%log" "%e@chr(13)@chr(10)
else
%%log = %%log"ERROR - Bottom right "%%test2 - ClickX= %x ClickY= %y@chr(13)@chr(10)
%%log = %%log" MouseXY= "@mousepos()@chr(13)@chr(10)" WinLTWH= "@winpos(%%child,LTWH)@chr(13)@chr(10)
end
DIALOG SET, Msg, @dlgtext(Msg) %%test2
exit
:StatusTest
%%test3 = @succ(%%test3)
WINDOW CLICK,%%child,%x,%y
%e = @event()
rem -- T3 --
if @equal(@substr(%e, @diff(@len(%e), 4), @len(%e)), CLICK)
%%log = %%log"OK - Status test "%%test3 - ClickX= %x ClickY= %y@chr(13)@chr(10)
%%log = %%log" MouseXY= "@mousepos()@chr(13)@chr(10)" WinLTWH= "@winpos(%%child,LTWH)@chr(13)@chr(10)
%%log = %%log" "%e@chr(13)@chr(10)
else
%%log = %%log"ERROR - Status test "%%test3 - ClickX= %x ClickY= %y@chr(13)@chr(10)
%%log = %%log" MouseXY= "@mousepos()@chr(13)@chr(10)" WinLTWH= "@winpos(%%child,LTWH)@chr(13)@chr(10)
end
DIALOG SET, Msg, @dlgtext(Msg) %%test3
exit
:GetWindowSpecs
rem -- Titlebar/status bar/menu height and side/bottom border width --
%c = "TempWindowToGetWindowSpecs"
rem -- Normal and RESIZABLE have different title heights --
if %%resize
DIALOG CREATE, "GetWindowSpecs",-1,0,200,200,RESIZABLE,CLASS %c
else
DIALOG CREATE, "GetWindowSpecs",-1,0,200,200,CLASS %c
end
%%b_lside = @div(@diff(@winpos(#%c,W),200), 2)
%%b_rside = @pred(%%b_lside)
%%b_lside = @succ(%%b_lside)
%%b_bottom = %%b_rside
%%t_height = @diff(@diff(@winpos(#%c,H),200),%%b_bottom)
%%sb_height = @diff(%%t_height, @succ(%%b_bottom))
DIALOG ADD,MENU,MenuTest
%%m_height = @diff(@winpos(#%c,H),@sum(200,%%t_height,%%b_bottom))
DIALOG CLOSE
%c = @event()
%c = ""
exit
|
Cheers, Mac  _________________ VDSug.dll does file IO, check/disable menu items,
non-VDS dlls, draw functions and more...
Free download (30k dll size) at:
http://www.vdsworld.com/download.php?id=361

Last edited by Mac on Mon Dec 09, 2002 2:08 pm; edited 3 times in total |
|
| Back to top |
|
 |
marty Professional Member


Joined: 10 May 2001 Posts: 789
|
Posted: Mon Dec 09, 2002 2:45 am Post subject: |
|
|
Hi Mac,
I got this:
RROR - Top Left test 1
ERROR - Bottom right 1
ERROR - Status test 1
ERROR - Top Left test 2
ERROR - Bottom right 2
ERROR - Status test 2
-------------------------
Title height - 23
Menu height - 19
Status Bar height - 20
Left Border - 4
Right Border - 2
Bottom Border - 2
Running on Windows 98
Didnt touch the mouse either. |
|
| Back to top |
|
 |
Hortalonus Valued Contributor


Joined: 15 Mar 2002 Posts: 344 Location: Western USA
|
Posted: Mon Dec 09, 2002 3:15 am Post subject: |
|
|
Platform: XP Pro
Standard Test:
ERROR - Top Left test 1
ERROR - Bottom right 1
ERROR - Status test 1
ERROR - Top Left test 2
ERROR - Bottom right 2
ERROR - Status test 2
-------------------------
Title height - 30
Menu height - 20
Status Bar height - 27
Left Border - 4
Right Border - 2
Bottom Border - 2
Resizeable Test:
ERROR - Top Left test 1
ERROR - Bottom right 1
ERROR - Status test 1
ERROR - Top Left test 2
ERROR - Bottom right 2
ERROR - Status test 2
-------------------------
Title height - 31
Menu height - 20
Status Bar height - 27
Left Border - 5
Right Border - 3
Bottom Border - 3 |
|
| Back to top |
|
 |
Mac Professional Member

Joined: 08 Jul 2000 Posts: 1585 Location: Oklahoma USA
|
Posted: Mon Dec 09, 2002 4:51 am Post subject: |
|
|
What a bummer...
Apparently it's not gonna be precise enough to use
1x1 dots to test it. I'll try to change them to 3x3
dots and hopefully we can get an approximation
that works close enough. I may try to include more
specific info in the log as well...
Did anyone receive all "OKs"?
BTW, it works fine on my Win95 system...
Thanks, Mac  _________________ VDSug.dll does file IO, check/disable menu items,
non-VDS dlls, draw functions and more...
Free download (30k dll size) at:
http://www.vdsworld.com/download.php?id=361
 |
|
| Back to top |
|
 |
ShinobiSoft Professional Member


Joined: 06 Nov 2002 Posts: 790 Location: Knoxville, Tn
|
Posted: Mon Dec 09, 2002 6:22 am Post subject: |
|
|
Hey Mac,
Windows 98 SE:
Standard Test returned:
ERROR - Top Left test 1
ERROR - Bottom right 1
ERROR - Status test 1
ERROR - Top Left test 2
ERROR - Bottom right 2
ERROR - Status test 2
-------------------------
Title height - 23
Menu height - 19
Status Bar height - 20
Left Border - 4
Right Border - 2
Bottom Border - 2
Resizable Test returned:
ERROR - Top Left test 1
ERROR - Bottom right 1
ERROR - Status test 1
ERROR - Top Left test 2
ERROR - Bottom right 2
ERROR - Status test 2
-------------------------
Title height - 24
Menu height - 19
Status Bar height - 20
Left Border - 5
Right Border - 3
Bottom Border - 3
Bill _________________ Bill Weckel
ShinobiSoft Software
"The way is known to all, but not all know it." |
|
| Back to top |
|
 |
Garrett Moderator Team
Joined: 04 Oct 2001 Posts: 2149 Location: A House
|
Posted: Mon Dec 09, 2002 8:49 am Post subject: |
|
|
On WindowsME:
STANDARD:
ERROR - Top Left test 1
ERROR - Bottom right 1
ERROR - Status test 1
ERROR - Top Left test 2
ERROR - Bottom right 2
ERROR - Status test 2
-------------------------
Title height - 23
Menu height - 19
Status Bar height - 20
Left Border - 4
Right Border - 2
Bottom Border - 2
RESIZE:
ERROR - Top Left test 1
ERROR - Bottom right 1
ERROR - Status test 1
ERROR - Top Left test 2
ERROR - Bottom right 2
ERROR - Status test 2
-------------------------
Title height - 24
Menu height - 19
Status Bar height - 20
Left Border - 5
Right Border - 3
Bottom Border - 3
-Garrett |
|
| Back to top |
|
 |
Mac Professional Member

Joined: 08 Jul 2000 Posts: 1585 Location: Oklahoma USA
|
Posted: Mon Dec 09, 2002 1:44 pm Post subject: |
|
|
OK - I changed it from 1x1 dot targets to 25 dot clusters
(5x5). It also adds more info to the edit box log (does NOT
write to a file), and records which dot in each cluster that's
hit (if any). It aims for the center dot (#13).
So it's ready if ya wanna try it again and post the results.
Thanks, Mac  _________________ VDSug.dll does file IO, check/disable menu items,
non-VDS dlls, draw functions and more...
Free download (30k dll size) at:
http://www.vdsworld.com/download.php?id=361

Last edited by Mac on Mon Dec 09, 2002 2:09 pm; edited 1 time in total |
|
| Back to top |
|
 |
Mac Professional Member

Joined: 08 Jul 2000 Posts: 1585 Location: Oklahoma USA
|
Posted: Mon Dec 09, 2002 1:51 pm Post subject: |
|
|
OOPS - tiny glitch fixed...
LOL, and now changed some typos in the description.
5x5 is 25, not 20...  _________________ VDSug.dll does file IO, check/disable menu items,
non-VDS dlls, draw functions and more...
Free download (30k dll size) at:
http://www.vdsworld.com/download.php?id=361
 |
|
| Back to top |
|
 |
Hortalonus Valued Contributor


Joined: 15 Mar 2002 Posts: 344 Location: Western USA
|
Posted: Mon Dec 09, 2002 2:49 pm Post subject: |
|
|
Here's what I get with the new version...
Platform: XP Pro
Standard Test:
Screen - 1024 x 768
OK - Top left test 1 - ClickX= 14 ClickY= 40
MouseXY= 373|306
WinLTWH= 359|268|306|232
T1_9CLICK
OK - Bottom right test 1 - ClickX= 294 ClickY= 220
MouseXY= 653|486
WinLTWH= 359|268|306|232
T2_15CLICK
OK - Status test 1 - ClickX= 14 ClickY= 203
MouseXY= 373|469
WinLTWH= 359|268|306|232
T3_14CLICK
OK - Status test 2 - ClickX= 14 ClickY= 203
MouseXY= 373|469
WinLTWH= 359|268|306|232
T3_14CLICK
OK - Top left test 2 - ClickX= 14 ClickY= 60
MouseXY= 373|326
WinLTWH= 359|268|306|252
T1_9CLICK
OK - Bottom right test 2 - ClickX= 294 ClickY= 240
MouseXY= 653|506
WinLTWH= 359|268|306|252
T2_15CLICK
OK - Status test 3 - ClickX= 14 ClickY= 223
MouseXY= 373|489
WinLTWH= 359|268|306|252
T3_14CLICK
OK - Status test 4 - ClickX= 14 ClickY= 223
MouseXY= 373|489
WinLTWH= 359|268|306|252
T3_14CLICK
-------------------------
Title height - 30
Menu height - 20
Status Bar height - 27
Left Border - 4
Right Border - 2
Bottom Border - 2
Resizable Test:
Screen - 1024 x 768
OK - Top left test 1 - ClickX= 15 ClickY= 41
MouseXY= 373|306
WinLTWH= 358|267|308|234
T1_9CLICK
OK - Bottom right test 1 - ClickX= 295 ClickY= 221
MouseXY= 653|486
WinLTWH= 358|267|308|234
T2_15CLICK
OK - Status test 1 - ClickX= 15 ClickY= 204
MouseXY= 373|469
WinLTWH= 358|267|308|234
T3_14CLICK
OK - Status test 2 - ClickX= 15 ClickY= 204
MouseXY= 373|469
WinLTWH= 358|267|308|234
T3_14CLICK
OK - Top left test 2 - ClickX= 15 ClickY= 61
MouseXY= 373|326
WinLTWH= 358|267|308|254
T1_9CLICK
OK - Bottom right test 2 - ClickX= 295 ClickY= 241
MouseXY= 653|506
WinLTWH= 358|267|308|254
T2_15CLICK
OK - Status test 3 - ClickX= 15 ClickY= 224
MouseXY= 373|489
WinLTWH= 358|267|308|254
T3_14CLICK
OK - Status test 4 - ClickX= 15 ClickY= 224
MouseXY= 373|489
WinLTWH= 358|267|308|254
T3_14CLICK
-------------------------
Title height - 31
Menu height - 20
Status Bar height - 27
Left Border - 5
Right Border - 3
Bottom Border - 3 |
|
| Back to top |
|
 |
Mac Professional Member

Joined: 08 Jul 2000 Posts: 1585 Location: Oklahoma USA
|
Posted: Mon Dec 09, 2002 3:16 pm Post subject: |
|
|
That's great Hortalonus - Thanks.
Hopefully using the dot clusters will let us tweak it
for best over-all use if we get enough test results.
Cheers, Mac  _________________ VDSug.dll does file IO, check/disable menu items,
non-VDS dlls, draw functions and more...
Free download (30k dll size) at:
http://www.vdsworld.com/download.php?id=361
 |
|
| Back to top |
|
 |
Dr. Dread Professional Member


Joined: 03 Aug 2001 Posts: 1065 Location: Copenhagen, Denmark
|
Posted: Mon Dec 09, 2002 3:27 pm Post subject: |
|
|
On XP Home I get exactly the same output as Hortalanus
Greetz
Dread _________________ ~~ Alcohol and calculus don't mix... Don't drink and derive! ~~
String.DLL * advanced string processing |
|
| Back to top |
|
 |
MarkTrubo Contributor


Joined: 27 May 2001 Posts: 148 Location: Long Island, NY
|
Posted: Mon Dec 09, 2002 3:57 pm Post subject: |
|
|
On NT4:
============STANDARD===================
Screen - 1024 x 768
OK - Top left test 1 - ClickX= 14 ClickY= 33
MouseXY= 373|302
WinLTWH= 359|271|306|225
T1_9CLICK
OK - Bottom right test 1 - ClickX= 294 ClickY= 213
MouseXY= 653|482
WinLTWH= 359|271|306|225
T2_15CLICK
OK - Status test 1 - ClickX= 14 ClickY= 203
MouseXY= 373|472
WinLTWH= 359|271|306|225
T3_14CLICK
OK - Status test 2 - ClickX= 14 ClickY= 203
MouseXY= 373|472
WinLTWH= 359|271|306|225
T3_14CLICK
OK - Top left test 2 - ClickX= 14 ClickY= 52
MouseXY= 373|321
WinLTWH= 359|271|306|244
T1_9CLICK
OK - Bottom right test 2 - ClickX= 294 ClickY= 232
MouseXY= 653|501
WinLTWH= 359|271|306|244
T2_15CLICK
OK - Status test 3 - ClickX= 14 ClickY= 222
MouseXY= 373|491
WinLTWH= 359|271|306|244
T3_14CLICK
OK - Status test 4 - ClickX= 14 ClickY= 222
MouseXY= 373|491
WinLTWH= 359|271|306|244
T3_14CLICK
-------------------------
Title height - 23
Menu height - 19
Status Bar height - 20
Left Border - 4
Right Border - 2
Bottom Border - 2
============RESIZABLE===================
Screen - 1024 x 768
OK - Top left test 1 - ClickX= 15 ClickY= 34
MouseXY= 373|302
WinLTWH= 358|270|308|227
T1_9CLICK
OK - Bottom right test 1 - ClickX= 295 ClickY= 214
MouseXY= 653|482
WinLTWH= 358|270|308|227
T2_15CLICK
OK - Status test 1 - ClickX= 15 ClickY= 204
MouseXY= 373|472
WinLTWH= 358|270|308|227
T3_14CLICK
OK - Status test 2 - ClickX= 15 ClickY= 204
MouseXY= 373|472
WinLTWH= 358|270|308|227
T3_14CLICK
OK - Top left test 2 - ClickX= 15 ClickY= 53
MouseXY= 373|321
WinLTWH= 358|270|308|246
T1_9CLICK
OK - Bottom right test 2 - ClickX= 295 ClickY= 233
MouseXY= 653|501
WinLTWH= 358|270|308|246
T2_15CLICK
OK - Status test 3 - ClickX= 15 ClickY= 223
MouseXY= 373|491
WinLTWH= 358|270|308|246
T3_14CLICK
OK - Status test 4 - ClickX= 15 ClickY= 223
MouseXY= 373|491
WinLTWH= 358|270|308|246
T3_14CLICK
-------------------------
Title height - 24
Menu height - 19
Status Bar height - 20
Left Border - 5
Right Border - 3
Bottom Border - 3 |
|
| Back to top |
|
 |
Dr. Dread Professional Member


Joined: 03 Aug 2001 Posts: 1065 Location: Copenhagen, Denmark
|
Posted: Mon Dec 09, 2002 5:03 pm Post subject: |
|
|
And Win98 SE:
Greetz
Dread
###########STANDARD############
Screen - 1152 x 864
ERROR - Top Left test 1 - ClickX= 14 ClickY= 33
MouseXY= 430|348
WinLTWH= 423|319|306|225
ERROR - Bottom right 1 - ClickX= 294 ClickY= 213
MouseXY= 705|526
WinLTWH= 423|319|306|225
ERROR - Status test 1 - ClickX= 14 ClickY= 203
MouseXY= 430|516
WinLTWH= 423|319|306|225
ERROR - Status test 2 - ClickX= 14 ClickY= 203
MouseXY= 430|516
WinLTWH= 423|319|306|225
ERROR - Top Left test 2 - ClickX= 14 ClickY= 52
MouseXY= 430|366
WinLTWH= 423|319|306|244
ERROR - Bottom right 2 - ClickX= 294 ClickY= 232
MouseXY= 705|544
WinLTWH= 423|319|306|244
ERROR - Status test 3 - ClickX= 14 ClickY= 222
MouseXY= 430|534
WinLTWH= 423|319|306|244
ERROR - Status test 4 - ClickX= 14 ClickY= 222
MouseXY= 430|534
WinLTWH= 423|319|306|244
-------------------------
Title height - 23
Menu height - 19
Status Bar height - 20
Left Border - 4
Right Border - 2
Bottom Border - 2
###########RESIZABLE############
Screen - 1152 x 864
ERROR - Top Left test 1 - ClickX= 15 ClickY= 34
MouseXY= 430|348
WinLTWH= 422|318|308|227
ERROR - Bottom right 1 - ClickX= 295 ClickY= 214
MouseXY= 705|526
WinLTWH= 422|318|308|227
ERROR - Status test 1 - ClickX= 15 ClickY= 204
MouseXY= 430|516
WinLTWH= 422|318|308|227
ERROR - Status test 2 - ClickX= 15 ClickY= 204
MouseXY= 430|516
WinLTWH= 422|318|308|227
ERROR - Top Left test 2 - ClickX= 15 ClickY= 53
MouseXY= 430|366
WinLTWH= 422|318|308|246
ERROR - Bottom right 2 - ClickX= 295 ClickY= 233
MouseXY= 705|544
WinLTWH= 422|318|308|246
ERROR - Status test 3 - ClickX= 15 ClickY= 223
MouseXY= 430|534
WinLTWH= 422|318|308|246
ERROR - Status test 4 - ClickX= 15 ClickY= 223
MouseXY= 430|534
WinLTWH= 422|318|308|246
-------------------------
Title height - 24
Menu height - 19
Status Bar height - 20
Left Border - 5
Right Border - 3
Bottom Border - 3 _________________ ~~ Alcohol and calculus don't mix... Don't drink and derive! ~~
String.DLL * advanced string processing |
|
| Back to top |
|
 |
PGWARE Web Host

Joined: 29 Dec 2001 Posts: 1565
|
Posted: Mon Dec 09, 2002 6:02 pm Post subject: |
|
|
Windows XP Home: Service Pack 1
Standard Test:
Screen - 1024 x 768
OK - Top left test 1 - ClickX= 14 ClickY= 40
MouseXY= 373|306
WinLTWH= 359|268|306|232
T1_9CLICK
OK - Bottom right test 1 - ClickX= 294 ClickY= 220
MouseXY= 653|486
WinLTWH= 359|268|306|232
T2_15CLICK
OK - Status test 1 - ClickX= 14 ClickY= 203
MouseXY= 373|469
WinLTWH= 359|268|306|232
T3_14CLICK
OK - Status test 2 - ClickX= 14 ClickY= 203
MouseXY= 373|469
WinLTWH= 359|268|306|232
T3_14CLICK
OK - Top left test 2 - ClickX= 14 ClickY= 60
MouseXY= 373|326
WinLTWH= 359|268|306|252
T1_9CLICK
OK - Bottom right test 2 - ClickX= 294 ClickY= 240
MouseXY= 653|506
WinLTWH= 359|268|306|252
T2_15CLICK
OK - Status test 3 - ClickX= 14 ClickY= 223
MouseXY= 373|489
WinLTWH= 359|268|306|252
T3_14CLICK
OK - Status test 4 - ClickX= 14 ClickY= 223
MouseXY= 373|489
WinLTWH= 359|268|306|252
T3_14CLICK
-------------------------
Title height - 30
Menu height - 20
Status Bar height - 27
Left Border - 4
Right Border - 2
Bottom Border - 2
Resizable Test:
Screen - 1024 x 768
OK - Top left test 1 - ClickX= 15 ClickY= 41
MouseXY= 373|306
WinLTWH= 358|267|308|234
T1_9CLICK
OK - Bottom right test 1 - ClickX= 295 ClickY= 221
MouseXY= 653|486
WinLTWH= 358|267|308|234
T2_15CLICK
OK - Status test 1 - ClickX= 15 ClickY= 204
MouseXY= 373|469
WinLTWH= 358|267|308|234
T3_14CLICK
OK - Status test 2 - ClickX= 15 ClickY= 204
MouseXY= 373|469
WinLTWH= 358|267|308|234
T3_14CLICK
OK - Top left test 2 - ClickX= 15 ClickY= 61
MouseXY= 373|326
WinLTWH= 358|267|308|254
T1_9CLICK
OK - Bottom right test 2 - ClickX= 295 ClickY= 241
MouseXY= 653|506
WinLTWH= 358|267|308|254
T2_15CLICK
OK - Status test 3 - ClickX= 15 ClickY= 224
MouseXY= 373|489
WinLTWH= 358|267|308|254
T3_14CLICK
OK - Status test 4 - ClickX= 15 ClickY= 224
MouseXY= 373|489
WinLTWH= 358|267|308|254
T3_14CLICK
-------------------------
Title height - 31
Menu height - 20
Status Bar height - 27
Left Border - 5
Right Border - 3
Bottom Border - 3 |
|
| Back to top |
|
 |
FreezingFire Admin Team

Joined: 23 Jun 2002 Posts: 3508
|
Posted: Mon Dec 09, 2002 10:05 pm Post subject: |
|
|
Using XP Professional...
Standard Test:
| Quote: | Screen - 1024 x 768
OK - Top left test 1 - ClickX= 14 ClickY= 40
MouseXY= 373|306
WinLTWH= 359|268|306|232
T1_9CLICK
OK - Bottom right test 1 - ClickX= 294 ClickY= 220
MouseXY= 653|486
WinLTWH= 359|268|306|232
T2_15CLICK
OK - Status test 1 - ClickX= 14 ClickY= 203
MouseXY= 373|469
WinLTWH= 359|268|306|232
T3_14CLICK
OK - Status test 2 - ClickX= 14 ClickY= 203
MouseXY= 373|469
WinLTWH= 359|268|306|232
T3_14CLICK
OK - Top left test 2 - ClickX= 14 ClickY= 60
MouseXY= 373|326
WinLTWH= 359|268|306|252
T1_9CLICK
OK - Bottom right test 2 - ClickX= 294 ClickY= 240
MouseXY= 653|506
WinLTWH= 359|268|306|252
T2_15CLICK
OK - Status test 3 - ClickX= 14 ClickY= 223
MouseXY= 373|489
WinLTWH= 359|268|306|252
T3_14CLICK
OK - Status test 4 - ClickX= 14 ClickY= 223
MouseXY= 373|489
WinLTWH= 359|268|306|252
T3_14CLICK
-------------------------
Title height - 30
Menu height - 20
Status Bar height - 27
Left Border - 4
Right Border - 2
Bottom Border - 2 |
Resizable Test:
| Quote: | Screen - 1024 x 768
OK - Top left test 1 - ClickX= 15 ClickY= 41
MouseXY= 373|306
WinLTWH= 358|267|308|234
T1_9CLICK
OK - Bottom right test 1 - ClickX= 295 ClickY= 221
MouseXY= 653|486
WinLTWH= 358|267|308|234
T2_15CLICK
OK - Status test 1 - ClickX= 15 ClickY= 204
MouseXY= 373|469
WinLTWH= 358|267|308|234
T3_14CLICK
OK - Status test 2 - ClickX= 15 ClickY= 204
MouseXY= 373|469
WinLTWH= 358|267|308|234
T3_14CLICK
OK - Top left test 2 - ClickX= 15 ClickY= 61
MouseXY= 373|326
WinLTWH= 358|267|308|254
T1_9CLICK
OK - Bottom right test 2 - ClickX= 295 ClickY= 241
MouseXY= 653|506
WinLTWH= 358|267|308|254
T2_15CLICK
OK - Status test 3 - ClickX= 15 ClickY= 224
MouseXY= 373|489
WinLTWH= 358|267|308|254
T3_14CLICK
OK - Status test 4 - ClickX= 15 ClickY= 224
MouseXY= 373|489
WinLTWH= 358|267|308|254
T3_14CLICK
-------------------------
Title height - 31
Menu height - 20
Status Bar height - 27
Left Border - 5
Right Border - 3
Bottom Border - 3 |
_________________ FreezingFire
VDSWORLD.com
Site Admin Team |
|
| Back to top |
|
 |
|
|
You cannot post new topics in this forum You cannot reply to topics in this forum You cannot edit your posts in this forum You cannot delete your posts in this forum You cannot vote in polls in this forum You can attach files in this forum You can download files in this forum
|
|