jimliston Posted August 10, 2010 Posted August 10, 2010 Yes, I have searched the database for an answer to this. Clearly, I didn't find one. I need to highlight the active record in a list by giving it a different color. Old people like me view this database and the small vertical bar at the left of the screen is difficult to see. How do I do this?
efen Posted August 10, 2010 Posted August 10, 2010 Create a global field of the same type - number or text - as your unique record IDs. Conditionally format [a] field on the list layout with a hilight colour and the formula newglobalfield = uniqueID Create a script with two steps: set the newglobalfield with the record's uniqueID commit records Assign this script to a trigger - OnObjectEnter - on [a] field on the list layout. On other layouts that navigate to the list layout run this as a subscript at the start of those scripts.
comment Posted August 10, 2010 Posted August 10, 2010 See if this helps: http://fmforums.com/forum/showtopic.php?tid/188674/
bruceR Posted August 10, 2010 Posted August 10, 2010 Just use an OnRecordLoad script trigger. Script: Freeze Window Set variable [ $$current; get( recordID)] Conditional format: Get(RecordID = $$current) HiliteCurrent.fp7.zip
Recommended Posts
This topic is 5218 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