Limit tabbing in a field

2003-01-09 Thread Mike Bleed
I have a two column field that I want to limit the user tabbing in. I want the user to be able to tab to navigate from the first column to the second column, but then not be able to tab to a third column. Is there a way to "lock" a field to only use two columns?Do you Yahoo!?
Yahoo! Mail Plus - Powerful. Affordable. Sign up now

Track which button a user clicks?

2002-12-24 Thread Mike Bleed

I have a design question. I am trying to implement an activity log or event tracking piece to my stack. I want the program to record in a file all of the user's interactions. It is simple to record each key a user types, but more difficult to record where a user clicks the mouse. In short, I need to know if there is a way to capture which button or field a user clicked on. So far, all I can do is get the control's control number which is not good enough because it is not unique throughout the program. Any ideas? My current scripts are below...
-- the following scripts are for the logging function of the Event Recorder, will record all user actions.
on keyUp pressedKey
put pressedKey amp; tab amp; the short system date amp; tab amp; the long system time amp; cr after fld "sessionLog" of wd "UserLogStack"
end keyUp
on mouseDown
answer the mouseControl
end mouseDownDo you Yahoo!?
Yahoo! Mail Plus - Powerful. Affordable. Sign up now