gwjo Posted October 16, 2006 Posted October 16, 2006 Is there a way to format a numerical field in browse mode so that clickling a little up or down arrow key increments the value of the field by one integer? This happens automatically for the year value in the pop-up calendar facility in FMP8.0 and I am hoping there may be a way of doing this on other number fields without having to create and define script buttons. Many thanks for any suggestions, George
jteich Posted October 16, 2006 Posted October 16, 2006 Not directly as an formatting option but you can create your own buttons and connect them with set field( number ; number +/- 1 ) -jens
Raybaudi Posted October 16, 2006 Posted October 16, 2006 ...and you can even format your number field as a button with a one step script: Set field [number;number + Case ( Get ( ActiveModifierKeys ) ; -1 ; 1 )] So when you'll click the button the number will increase by one, but if you'll press a modifier key ( for example SHIFT ) it will decrease by one.
gwjo Posted October 17, 2006 Author Posted October 17, 2006 Many thanks for this - very helpful and an elegant solution! George
Recommended Posts
This topic is 6673 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