| View previous topic :: View next topic |
| Author |
Message |
vtol Valued Contributor


Joined: 05 Feb 2004 Posts: 656 Location: Eastern Indiana
|
Posted: Sat Feb 26, 2005 2:30 am Post subject: VDSOBJ mouseover question |
|
|
I realize this has no support, but thought maybe someone would know this off the top of there head.
I wonder what this means:
If MOUSEOVER is specified, the graphic control will generate a GRAPHIC#MOUSEOVER event, where # is the dialog object name's number. The event will continue to be triggered until the mouse has been moved off the control, so it is not advisable to be used with the other mouse button events.
Does it mean I cant use Left click, or does it mean I can't have other buttons using vds mouse over, or C, none of the above  |
|
| Back to top |
|
 |
Mac Professional Member

Joined: 08 Jul 2000 Posts: 1585 Location: Oklahoma USA
|
Posted: Sat Feb 26, 2005 4:02 am Post subject: |
|
|
I'd say it means you're not gonna get any other
events dependably, because it keeps sending the
GRAPHIC#MOUSEOVER event. And VDS can only
do one thing at a time since it doesn't multi-task.
However, ya might catch mouseclicks by using a
loop to check events and discard those events you
don't want.
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 |
|
 |
vtol Valued Contributor


Joined: 05 Feb 2004 Posts: 656 Location: Eastern Indiana
|
Posted: Mon Feb 28, 2005 4:00 am Post subject: |
|
|
Thanks Mac
Thats what I was afraid of, but anyways, thats what I allready did(the loop) Then I remembered how to get the tranparent BMP to work with VDS with out the external DLL - so everythings fine now...
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
VDS is an interpreted language, which means it reads line for line
and runs your program line for line. So we are not able to run two
or more things at once in our script.
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
Wouldn't it be great if v6 susprized us with v6stereo  |
|
| Back to top |
|
 |
|