set the hilite of a button when the user press the shiftKey
Posted: Thu Mar 28, 2013 11:22 am
Hi All,
I search an way to set the hilite of a button when the user press the shiftKey on the keyboard.
I want avoid a pending message and I only found a dirty way by the mousemove
Best regards
Jean-Marc
I search an way to set the hilite of a button when the user press the shiftKey on the keyboard.
I want avoid a pending message and I only found a dirty way by the mousemove

Code: Select all
on mousemove
set the hilite of btn "bMultipleSelection" to (shiftKey() is down)
end mousemove
Jean-Marc