Saubs Posted May 8, 2007 Posted May 8, 2007 Hello all-- I have a text field doing double duty as a button. Click or option-click the field (button) and a script executes. However, when in FIND mode, I would like the user to be able to click in the field, type some text, and perform a find--without the button interfering (and without seeing the 'hand cursor' which appears whenever a button is moused over). So my question is, is it possible to somehow disable or bypass a button's functionality when in Find mode? Many thanks--
mr_vodka Posted May 8, 2007 Posted May 8, 2007 You can have the script do a go to field if its in find mode. If [ Get(WindowMode) = 1 ] Go to Field [] Else What your current script does. End If Also to get rid of the hand cursor, you can turn it off as part of the specify button option. However it is either off or on, not on if you are in browse mode and off if in find mode.
Saubs Posted May 8, 2007 Author Posted May 8, 2007 Thanks very much for your reply. As I suspected, I will just have to live with the hand cursor appearing when my users click in the field while in find mode. It's certainly not a huge problem.
Vaughan Posted May 9, 2007 Posted May 9, 2007 What's wrong with scripting the Find process to change to a different layout? This is very easy to do with custom menus, and completely invisible to the user.
Recommended Posts
This topic is 6408 days old. Please don't post here. Open a new topic instead.
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now